From 8052ab21951cf160a675519c55b7b5a96d48c30c Mon Sep 17 00:00:00 2001 From: Jeff Murray Date: Tue, 3 Mar 2026 13:47:50 -0600 Subject: [PATCH 1/2] Update to latest spec --- api.ts | 249 ++++++++++++++++++++++++++++++++++++++++++++--- package.json | 2 +- spec.yml | 267 +++++++++++++++++++++++++++++++++++++++------------ yarn.lock | 132 ++++++++++++++++++++++--- 4 files changed, 558 insertions(+), 92 deletions(-) diff --git a/api.ts b/api.ts index e5f01c3..2759669 100644 --- a/api.ts +++ b/api.ts @@ -783,16 +783,16 @@ export interface CalloutItem { type: CalloutItemTypeEnum; /** * - * @type {Color3} + * @type {RGBA} * @memberof CalloutItem */ - primaryColor: Color3; + primaryColor: RGBA; /** * - * @type {Color3} + * @type {RGBA} * @memberof CalloutItem */ - accentColor: Color3; + accentColor: RGBA; /** * * @type {string} @@ -4529,10 +4529,10 @@ export type FileRelationshipDataTypeEnum = export interface FillStyle { /** * - * @type {Color3} + * @type {RGBA} * @memberof FillStyle */ - color: Color3; + color: RGBA; } /** * Describes how an attribute should be filtered. @@ -6286,16 +6286,16 @@ export interface PinItem2d { type: PinItem2dTypeEnum; /** * - * @type {Color3} + * @type {RGBA} * @memberof PinItem2d */ - primaryColor: Color3; + primaryColor: RGBA; /** * - * @type {Color3} + * @type {RGBA} * @memberof PinItem2d */ - accentColor: Color3; + accentColor: RGBA; /** * * @type {Vector3} @@ -7283,6 +7283,37 @@ export interface QueuedTranslationJobList { */ data: Array; } +/** + * a color with red, green, blue and alpha channels. + * @export + * @interface RGBA + */ +export interface RGBA { + /** + * Color value from 0 to 255. + * @type {number} + * @memberof RGBA + */ + r: number; + /** + * Color value from 0 to 255. + * @type {number} + * @memberof RGBA + */ + g: number; + /** + * Color value from 0 to 255. + * @type {number} + * @memberof RGBA + */ + b: number; + /** + * Color value from 0 to 255. + * @type {number} + * @memberof RGBA + */ + a: number; +} /** * * @export @@ -9448,10 +9479,10 @@ export interface StreamKeyList { export interface StrokeStyle { /** * - * @type {Color3} + * @type {RGBA} * @memberof StrokeStyle */ - color: Color3; + color: RGBA; /** * A numerical floating-point value. * @type {number} @@ -14940,6 +14971,77 @@ export const CollaborationContextsApiAxiosParamCreator = function ( options: localVarRequestOptions, }; }, + /** + * Search the users associated to a `collaboration-context`. + * @param {string} id The `collaboration-context` ID. + * @param {string} [filterQuery] Query users by e-mail or full name + * @param {string} [pageCursor] The cursor for the next page of items. + * @param {number} [pageSize] The number of items to return. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getUsersForCollaborationContext: async ( + id: string, + filterQuery?: string, + pageCursor?: string, + pageSize?: number, + options: AxiosRequestConfig = {} + ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('getUsersForCollaborationContext', 'id', id); + const localVarPath = `/collaboration-contexts/{id}/users`.replace( + `{${'id'}}`, + encodeURIComponent(String(id)) + ); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { + method: 'GET', + ...baseOptions, + ...options, + }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication OAuth2 required + // oauth required + await setOAuthToObject( + localVarHeaderParameter, + 'OAuth2', + [], + configuration + ); + + if (filterQuery !== undefined) { + localVarQueryParameter['filter[query]'] = filterQuery; + } + + if (pageCursor !== undefined) { + localVarQueryParameter['page[cursor]'] = pageCursor; + } + + if (pageSize !== undefined) { + localVarQueryParameter['page[size]'] = pageSize; + } + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions?.headers ?? {}; + localVarRequestOptions.headers = { + ...localVarHeaderParameter, + ...headersFromBaseOptions, + ...options.headers, + }; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * List `collaboration-context`s * @param {string} [pageCursor] The cursor for the next page of items. @@ -15110,6 +15212,39 @@ export const CollaborationContextsApiFp = function ( configuration ); }, + /** + * Search the users associated to a `collaboration-context`. + * @param {string} id The `collaboration-context` ID. + * @param {string} [filterQuery] Query users by e-mail or full name + * @param {string} [pageCursor] The cursor for the next page of items. + * @param {number} [pageSize] The number of items to return. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getUsersForCollaborationContext( + id: string, + filterQuery?: string, + pageCursor?: string, + pageSize?: number, + options?: AxiosRequestConfig + ): Promise< + (axios?: AxiosInstance, basePath?: string) => AxiosPromise + > { + const localVarAxiosArgs = + await localVarAxiosParamCreator.getUsersForCollaborationContext( + id, + filterQuery, + pageCursor, + pageSize, + options + ); + return createRequestFunction( + localVarAxiosArgs, + globalAxios, + BASE_PATH, + configuration + ); + }, /** * List `collaboration-context`s * @param {string} [pageCursor] The cursor for the next page of items. @@ -15209,6 +15344,32 @@ export const CollaborationContextsApiFactory = function ( .getCollaborationContext(id, options) .then((request) => request(axios, basePath)); }, + /** + * Search the users associated to a `collaboration-context`. + * @param {string} id The `collaboration-context` ID. + * @param {string} [filterQuery] Query users by e-mail or full name + * @param {string} [pageCursor] The cursor for the next page of items. + * @param {number} [pageSize] The number of items to return. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getUsersForCollaborationContext( + id: string, + filterQuery?: string, + pageCursor?: string, + pageSize?: number, + options?: any + ): AxiosPromise { + return localVarFp + .getUsersForCollaborationContext( + id, + filterQuery, + pageCursor, + pageSize, + options + ) + .then((request) => request(axios, basePath)); + }, /** * List `collaboration-context`s * @param {string} [pageCursor] The cursor for the next page of items. @@ -15291,6 +15452,41 @@ export interface CollaborationContextsApiGetCollaborationContextRequest { readonly id: string; } +/** + * Request parameters for getUsersForCollaborationContext operation in CollaborationContextsApi. + * @export + * @interface CollaborationContextsApiGetUsersForCollaborationContextRequest + */ +export interface CollaborationContextsApiGetUsersForCollaborationContextRequest { + /** + * The `collaboration-context` ID. + * @type {string} + * @memberof CollaborationContextsApiGetUsersForCollaborationContext + */ + readonly id: string; + + /** + * Query users by e-mail or full name + * @type {string} + * @memberof CollaborationContextsApiGetUsersForCollaborationContext + */ + readonly filterQuery?: string; + + /** + * The cursor for the next page of items. + * @type {string} + * @memberof CollaborationContextsApiGetUsersForCollaborationContext + */ + readonly pageCursor?: string; + + /** + * The number of items to return. + * @type {number} + * @memberof CollaborationContextsApiGetUsersForCollaborationContext + */ + readonly pageSize?: number; +} + /** * Request parameters for listCollaborationContexts operation in CollaborationContextsApi. * @export @@ -15390,6 +15586,28 @@ export class CollaborationContextsApi extends BaseAPI { .then((request) => request(this.axios, this.basePath)); } + /** + * Search the users associated to a `collaboration-context`. + * @param {CollaborationContextsApiGetUsersForCollaborationContextRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof CollaborationContextsApi + */ + public getUsersForCollaborationContext( + requestParameters: CollaborationContextsApiGetUsersForCollaborationContextRequest, + options?: AxiosRequestConfig + ) { + return CollaborationContextsApiFp(this.configuration) + .getUsersForCollaborationContext( + requestParameters.id, + requestParameters.filterQuery, + requestParameters.pageCursor, + requestParameters.pageSize, + options + ) + .then((request) => request(this.axios, this.basePath)); + } + /** * List `collaboration-context`s * @param {CollaborationContextsApiListCollaborationContextsRequest} requestParameters Request parameters. @@ -16526,7 +16744,10 @@ export const FileCollectionsApiFp = function (configuration?: Configuration) { updateFileCollectionRequest: UpdateFileCollectionRequest, options?: AxiosRequestConfig ): Promise< - (axios?: AxiosInstance, basePath?: string) => AxiosPromise + ( + axios?: AxiosInstance, + basePath?: string + ) => AxiosPromise > { const localVarAxiosArgs = await localVarAxiosParamCreator.updateFileCollection( @@ -16673,7 +16894,7 @@ export const FileCollectionsApiFactory = function ( id: string, updateFileCollectionRequest: UpdateFileCollectionRequest, options?: any - ): AxiosPromise { + ): AxiosPromise { return localVarFp .updateFileCollection(id, updateFileCollectionRequest, options) .then((request) => request(axios, basePath)); diff --git a/package.json b/package.json index 18d3fe5..6b19d7c 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "typescript" ], "dependencies": { - "axios": "^1.6.4", + "axios": "1.11.0", "p-limit": "^3" }, "devDependencies": { diff --git a/spec.yml b/spec.yml index b9d78b5..e28cbe4 100644 --- a/spec.yml +++ b/spec.yml @@ -1481,6 +1481,95 @@ paths: - OAuth2: [] tags: - collaboration-contexts + /collaboration-contexts/{id}/users: + get: + description: Search the users associated to a `collaboration-context`. + operationId: getUsersForCollaborationContext + parameters: + - description: The `collaboration-context` ID. + explode: false + in: path + name: id + required: true + schema: + $ref: '#/components/schemas/Uuid' + style: simple + - description: Query users by e-mail or full name + explode: true + in: query + name: filter[query] + required: false + schema: + example: John Doe + type: string + style: form + - description: The cursor for the next page of items. + explode: true + in: query + name: page[cursor] + required: false + schema: + example: cHJkMDVFR2RLag== + type: string + style: form + - description: The number of items to return. + explode: true + in: query + name: page[size] + required: false + schema: + example: 10 + format: int32 + maximum: 200 + minimum: 1 + type: integer + style: form + responses: + '200': + content: + application/vnd.api+json: + schema: + $ref: '#/components/schemas/UserList' + description: OK + '400': + content: + application/vnd.api+json: + example: + errors: + - status: '400' + code: BadRequest + title: Invalid, missing, or out-of-range request parameters. + schema: + $ref: '#/components/schemas/Failure' + description: Bad Request + '401': + content: + application/vnd.api+json: + example: + errors: + - status: '401' + code: Unauthorized + title: Invalid or missing credentials. + schema: + $ref: '#/components/schemas/Failure' + description: Unauthorized + '415': + content: + application/vnd.api+json: + example: + errors: + - status: '415' + code: UnsupportedMediaType + title: + The provided media type is not supported. Update the Content-Type + header to application/vnd.api+json and try again. + schema: + $ref: '#/components/schemas/Failure' + description: Unsupported Media Type + security: + - OAuth2: [] + tags: + - collaboration-contexts /collaboration-contexts/{id}/user-groups: post: description: Create a `collaboration-context`. @@ -2698,8 +2787,12 @@ paths: $ref: '#/components/schemas/UpdateFileCollectionRequest' required: true responses: - '204': - description: No Content + '200': + content: + application/vnd.api+json: + schema: + $ref: '#/components/schemas/FileCollectionMetadata' + description: OK '400': content: application/vnd.api+json: @@ -10929,6 +11022,16 @@ components: maxLength: 1024 type: string style: form + CollaborationContextUserSearchFilter: + description: Query users by e-mail or full name + explode: true + in: query + name: filter[query] + required: false + schema: + example: John Doe + type: string + style: form CompletedAtFilter: description: The completion date and time to filter on. explode: true @@ -11944,6 +12047,21 @@ components: required: - data type: object + UserList: + additionalProperties: false + properties: + data: + items: + $ref: '#/components/schemas/UserData' + type: array + links: + additionalProperties: + $ref: '#/components/schemas/Link' + type: object + required: + - data + - links + type: object UserGroupIdsList: additionalProperties: false properties: @@ -11986,21 +12104,6 @@ components: required: - data type: object - UserList: - additionalProperties: false - properties: - data: - items: - $ref: '#/components/schemas/UserData' - type: array - links: - additionalProperties: - $ref: '#/components/schemas/Link' - type: object - required: - - data - - links - type: object ThreadStatus: enum: - open @@ -13694,6 +13797,26 @@ components: - relationships - type type: object + UserData: + additionalProperties: false + properties: + id: + description: ID of the resource. + example: f79d4760-0b71-44e4-ad0b-22743fdd4ca3 + format: uuid + maxLength: 36 + type: string + attributes: + $ref: '#/components/schemas/UserData_attributes' + links: + additionalProperties: + $ref: '#/components/schemas/Link' + type: object + required: + - attributes + - id + - type + type: object UserGroupId: additionalProperties: false properties: @@ -13778,26 +13901,6 @@ components: - relationships - type type: object - UserData: - additionalProperties: false - properties: - id: - description: ID of the resource. - example: f79d4760-0b71-44e4-ad0b-22743fdd4ca3 - format: uuid - maxLength: 36 - type: string - attributes: - $ref: '#/components/schemas/UserData_attributes' - links: - additionalProperties: - $ref: '#/components/schemas/Link' - type: object - required: - - attributes - - id - - type - type: object FileMetadataData: additionalProperties: false properties: @@ -16557,9 +16660,9 @@ components: - callout-item type: string primaryColor: - $ref: '#/components/schemas/Color3' + $ref: '#/components/schemas/RGBA' accentColor: - $ref: '#/components/schemas/Color3' + $ref: '#/components/schemas/RGBA' text: example: some-string maxLength: 1024 @@ -16591,9 +16694,9 @@ components: - pin-item-2d type: string primaryColor: - $ref: '#/components/schemas/Color3' + $ref: '#/components/schemas/RGBA' accentColor: - $ref: '#/components/schemas/Color3' + $ref: '#/components/schemas/RGBA' position: $ref: '#/components/schemas/Vector3' sceneItemId: @@ -16763,7 +16866,7 @@ components: additionalProperties: false properties: color: - $ref: '#/components/schemas/Color3' + $ref: '#/components/schemas/RGBA' thickness: description: A numerical floating-point value. type: number @@ -16775,7 +16878,7 @@ components: additionalProperties: false properties: color: - $ref: '#/components/schemas/Color3' + $ref: '#/components/schemas/RGBA' required: - color type: object @@ -16847,6 +16950,44 @@ components: - type - width type: object + RGBA: + additionalProperties: false + description: a color with red, green, blue and alpha channels. + properties: + r: + description: Color value from 0 to 255. + example: 255 + format: int32 + maximum: 255 + minimum: 0 + type: integer + g: + description: Color value from 0 to 255. + example: 255 + format: int32 + maximum: 255 + minimum: 0 + type: integer + b: + description: Color value from 0 to 255. + example: 255 + format: int32 + maximum: 255 + minimum: 0 + type: integer + a: + description: Color value from 0 to 255. + example: 255 + format: int32 + maximum: 255 + minimum: 0 + type: integer + required: + - a + - b + - g + - r + type: object CreateAccountRequest_data_attributes: properties: name: @@ -18908,6 +19049,26 @@ components: required: - account type: object + UserData_attributes: + properties: + fullName: + type: string + email: + type: string + createdAt: + example: 2020-01-01T12:00:00Z + format: date-time + type: string + idpId: + example: some-string + maxLength: 1024 + minLength: 1 + type: string + required: + - createdAt + - email + - fullName + type: object ThreadData_attributes: properties: createdAt: @@ -18958,26 +19119,6 @@ components: - collaborationContext - user type: object - UserData_attributes: - properties: - fullName: - type: string - email: - type: string - createdAt: - example: 2020-01-01T12:00:00Z - format: date-time - type: string - idpId: - example: some-string - maxLength: 1024 - minLength: 1 - type: string - required: - - createdAt - - email - - fullName - type: object FileMetadataData_attributes: properties: name: diff --git a/yarn.lock b/yarn.lock index 0ca47b4..24d8673 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1167,13 +1167,13 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= -axios@^1.6.4: - version "1.6.5" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.5.tgz#2c090da14aeeab3770ad30c3a1461bc970fb0cd8" - integrity sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg== +axios@1.11.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.11.0.tgz#c2ec219e35e414c025b2095e8b8280278478fdb6" + integrity sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA== dependencies: - follow-redirects "^1.15.4" - form-data "^4.0.0" + follow-redirects "^1.15.6" + form-data "^4.0.4" proxy-from-env "^1.1.0" babel-jest@^29.7.0: @@ -1315,6 +1315,14 @@ bundle-name@^3.0.0: dependencies: run-applescript "^5.0.0" +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -1547,6 +1555,15 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + electron-to-chromium@^1.3.896: version "1.4.14" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.14.tgz#b0aa41fbfbf2eff8c2c6f7a871c03075250f8956" @@ -1574,6 +1591,33 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" +es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" + integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== + dependencies: + es-errors "^1.3.0" + get-intrinsic "^1.2.6" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -1866,18 +1910,20 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz#28d9969ea90661b5134259f312ab6aa7929ac5e2" integrity sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw== -follow-redirects@^1.15.4: - version "1.15.4" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf" - integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw== +follow-redirects@^1.15.6: + version "1.15.11" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.11.tgz#777d73d72a92f8ec4d2e410eb47352a56b8e8340" + integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ== -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== +form-data@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053" + integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" + es-set-tostringtag "^2.1.0" + hasown "^2.0.2" mime-types "^2.1.12" fromentries@^1.3.2: @@ -1900,6 +1946,11 @@ function-bind@^1.1.1: resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" @@ -1910,11 +1961,35 @@ get-caller-file@^2.0.5: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-intrinsic@^1.2.6: + version "1.3.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== +get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" @@ -1970,6 +2045,11 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" +gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" @@ -1990,6 +2070,18 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + +has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" @@ -1997,6 +2089,13 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" @@ -2712,6 +2811,11 @@ marked@^3.0.8: resolved "https://registry.yarnpkg.com/marked/-/marked-3.0.8.tgz#2785f0dc79cbdc6034be4bb4f0f0a396bd3f8aeb" integrity sha512-0gVrAjo5m0VZSJb4rpL59K1unJAMb/hm8HRXqasD8VeC8m91ytDPMritgFSlKonfdt+rRYYpP/JfLxgIX8yoSw== +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" From c7fbcc50afdf176b41aae663c232c6849a405124 Mon Sep 17 00:00:00 2001 From: Jeff Murray Date: Tue, 3 Mar 2026 13:49:25 -0600 Subject: [PATCH 2/2] v0.38.0 --- client/version.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/version.ts b/client/version.ts index 9cde9ef..9e18758 100644 --- a/client/version.ts +++ b/client/version.ts @@ -1 +1 @@ -export const version = '0.37.0'; +export const version = '0.38.0'; diff --git a/package.json b/package.json index 6b19d7c..c583474 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vertexvis/api-client-node", - "version": "0.37.0", + "version": "0.38.0", "description": "The Vertex REST API client for Node.js.", "license": "MIT", "author": "Vertex Developers (https://developer.vertexvis.com)",