diff --git a/package.json b/package.json index 8a391eb..521eca1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@trycourier/courier", - "version": "v6.1.1", + "version": "v6.1.2", "private": false, "repository": "https://github.com/trycourier/courier-node", "main": "./index.js", diff --git a/src/Client.ts b/src/Client.ts index d98f35f..7e9a38a 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -36,7 +36,7 @@ export declare namespace CourierClient { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -60,12 +60,10 @@ export class CourierClient { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, diff --git a/src/api/resources/audiences/client/Client.ts b/src/api/resources/audiences/client/Client.ts index f017a98..96523d4 100644 --- a/src/api/resources/audiences/client/Client.ts +++ b/src/api/resources/audiences/client/Client.ts @@ -38,7 +38,7 @@ export class Audiences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -88,7 +88,7 @@ export class Audiences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -135,7 +135,7 @@ export class Audiences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -192,7 +192,7 @@ export class Audiences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -254,7 +254,7 @@ export class Audiences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, diff --git a/src/api/resources/auditEvents/client/Client.ts b/src/api/resources/auditEvents/client/Client.ts index 8479ef5..8e3fa3b 100644 --- a/src/api/resources/auditEvents/client/Client.ts +++ b/src/api/resources/auditEvents/client/Client.ts @@ -47,7 +47,7 @@ export class AuditEvents { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -94,7 +94,7 @@ export class AuditEvents { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/src/api/resources/authTokens/client/Client.ts b/src/api/resources/authTokens/client/Client.ts index eea9240..e993cea 100644 --- a/src/api/resources/authTokens/client/Client.ts +++ b/src/api/resources/authTokens/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace AuthTokens { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -46,12 +46,10 @@ export class AuthTokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, diff --git a/src/api/resources/automations/client/Client.ts b/src/api/resources/automations/client/Client.ts index 16d3d07..5ab1180 100644 --- a/src/api/resources/automations/client/Client.ts +++ b/src/api/resources/automations/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace Automations { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -47,12 +47,10 @@ export class Automations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -117,12 +115,10 @@ export class Automations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, diff --git a/src/api/resources/brands/client/Client.ts b/src/api/resources/brands/client/Client.ts index 4a49073..8bbf3c1 100644 --- a/src/api/resources/brands/client/Client.ts +++ b/src/api/resources/brands/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace Brands { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -48,12 +48,10 @@ export class Brands { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -109,7 +107,7 @@ export class Brands { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -164,7 +162,7 @@ export class Brands { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -212,7 +210,7 @@ export class Brands { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -267,7 +265,7 @@ export class Brands { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, diff --git a/src/api/resources/bulk/client/Client.ts b/src/api/resources/bulk/client/Client.ts index 81de3b4..ad8a405 100644 --- a/src/api/resources/bulk/client/Client.ts +++ b/src/api/resources/bulk/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace Bulk { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -46,12 +46,10 @@ export class Bulk { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -107,12 +105,10 @@ export class Bulk { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -160,12 +156,10 @@ export class Bulk { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -217,7 +211,7 @@ export class Bulk { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -272,7 +266,7 @@ export class Bulk { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/src/api/resources/commons/types/UserTenantAssociation.ts b/src/api/resources/commons/types/UserTenantAssociation.ts index 83110e8..8ad679d 100644 --- a/src/api/resources/commons/types/UserTenantAssociation.ts +++ b/src/api/resources/commons/types/UserTenantAssociation.ts @@ -4,9 +4,10 @@ export interface UserTenantAssociation { /** User ID for the assocation between tenant and user */ - user_id: string; - type: "user"; + user_id?: string; + type?: "user"; /** Tenant ID for the assocation between tenant and user */ tenant_id: string; - profile: Record; + /** Additional metadata to be applied to a user profile when used in a tenant context */ + profile?: Record; } diff --git a/src/api/resources/lists/client/Client.ts b/src/api/resources/lists/client/Client.ts index a4c5f3c..d8f77c0 100644 --- a/src/api/resources/lists/client/Client.ts +++ b/src/api/resources/lists/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace Lists { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -57,7 +57,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -110,7 +110,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -165,7 +165,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -212,7 +212,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -258,7 +258,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -315,7 +315,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -372,7 +372,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -429,12 +429,10 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -491,7 +489,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -539,7 +537,7 @@ export class Lists { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/src/api/resources/messages/client/Client.ts b/src/api/resources/messages/client/Client.ts index c55fde9..ddc4180 100644 --- a/src/api/resources/messages/client/Client.ts +++ b/src/api/resources/messages/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace Messages { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -41,8 +41,7 @@ export class Messages { cursor, event, list, - message_id: messageId, - messageId: messageId_, + messageId, notification, provider, recipient, @@ -51,8 +50,7 @@ export class Messages { tags, tenant_id: tenantId, enqueued_after: enqueuedAfter, - trace_id: traceId, - traceId: traceId_, + traceId, } = request; const _queryParams: Record = {}; if (archived != null) { @@ -71,12 +69,8 @@ export class Messages { _queryParams["list"] = list; } - if (messageId_ != null) { - _queryParams["message_id"] = messageId_; - } - - if (messageId_ != null) { - _queryParams["messageId"] = messageId_; + if (messageId != null) { + _queryParams["messageId"] = messageId; } if (notification != null) { @@ -123,12 +117,8 @@ export class Messages { _queryParams["enqueued_after"] = enqueuedAfter; } - if (traceId_ != null) { - _queryParams["trace_id"] = traceId_; - } - - if (traceId_ != null) { - _queryParams["traceId"] = traceId_; + if (traceId != null) { + _queryParams["traceId"] = traceId; } const _response = await (this._options.fetcher ?? core.fetcher)({ @@ -141,7 +131,7 @@ export class Messages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -190,7 +180,7 @@ export class Messages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -246,12 +236,10 @@ export class Messages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -309,7 +297,7 @@ export class Messages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -367,7 +355,7 @@ export class Messages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -417,7 +405,7 @@ export class Messages { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/src/api/resources/messages/client/requests/ListMessagesRequest.ts b/src/api/resources/messages/client/requests/ListMessagesRequest.ts index 78d2d6a..4b5e50f 100644 --- a/src/api/resources/messages/client/requests/ListMessagesRequest.ts +++ b/src/api/resources/messages/client/requests/ListMessagesRequest.ts @@ -19,10 +19,6 @@ export interface ListMessagesRequest { * A unique identifier representing the list the message was sent to. */ list?: string; - /** - * A unique identifier representing the message_id returned from either /send or /send/list. - */ - message_id?: string; /** * A unique identifier representing the message_id returned from either /send or /send/list. */ @@ -59,10 +55,6 @@ export interface ListMessagesRequest { * The enqueued datetime of a message to filter out messages received before. */ enqueued_after?: string; - /** - * The unique identifier used to trace the requests - */ - trace_id?: string; /** * The unique identifier used to trace the requests */ diff --git a/src/api/resources/notifications/client/Client.ts b/src/api/resources/notifications/client/Client.ts index fe32086..2e9fe03 100644 --- a/src/api/resources/notifications/client/Client.ts +++ b/src/api/resources/notifications/client/Client.ts @@ -44,7 +44,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -91,7 +91,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -137,7 +137,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -184,7 +184,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -232,7 +232,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -280,7 +280,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -328,7 +328,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -376,7 +376,7 @@ export class Notifications { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/src/api/resources/profiles/client/Client.ts b/src/api/resources/profiles/client/Client.ts index 2a1427c..0f7132d 100644 --- a/src/api/resources/profiles/client/Client.ts +++ b/src/api/resources/profiles/client/Client.ts @@ -22,7 +22,7 @@ export declare namespace Profiles { interface IdempotentRequestOptions extends RequestOptions { idempotencyKey?: string | undefined; - idempotencyExpiry?: number | undefined; + idempotencyExpiry?: string | undefined; } } @@ -44,7 +44,7 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -100,12 +100,10 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -165,7 +163,7 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -218,7 +216,7 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -280,7 +278,7 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -337,12 +335,10 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", "Idempotency-Key": requestOptions?.idempotencyKey != null ? requestOptions?.idempotencyKey : undefined, "X-Idempotency-Expiration": - requestOptions?.idempotencyExpiry != null - ? requestOptions?.idempotencyExpiry.toString() - : undefined, + requestOptions?.idempotencyExpiry != null ? requestOptions?.idempotencyExpiry : undefined, }, contentType: "application/json", body: request, @@ -398,7 +394,7 @@ export class Profiles { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/src/api/resources/templates/client/Client.ts b/src/api/resources/templates/client/Client.ts index 61a3a45..bcfbb26 100644 --- a/src/api/resources/templates/client/Client.ts +++ b/src/api/resources/templates/client/Client.ts @@ -47,7 +47,7 @@ export class Templates { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, diff --git a/src/api/resources/tenants/client/Client.ts b/src/api/resources/tenants/client/Client.ts index 5ee7668..39c2213 100644 --- a/src/api/resources/tenants/client/Client.ts +++ b/src/api/resources/tenants/client/Client.ts @@ -42,7 +42,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -94,7 +94,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -155,7 +155,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, @@ -199,7 +199,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -259,7 +259,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, diff --git a/src/api/resources/translations/client/Client.ts b/src/api/resources/translations/client/Client.ts index bccc65b..6a0a0a2 100644 --- a/src/api/resources/translations/client/Client.ts +++ b/src/api/resources/translations/client/Client.ts @@ -39,7 +39,7 @@ export class Translations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -96,7 +96,7 @@ export class Translations { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, diff --git a/src/api/resources/users/resources/preferences/client/Client.ts b/src/api/resources/users/resources/preferences/client/Client.ts index 18aac54..f8f5897 100644 --- a/src/api/resources/users/resources/preferences/client/Client.ts +++ b/src/api/resources/users/resources/preferences/client/Client.ts @@ -42,7 +42,7 @@ export class Preferences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -98,7 +98,7 @@ export class Preferences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -164,7 +164,7 @@ export class Preferences { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, diff --git a/src/api/resources/users/resources/tenants/client/Client.ts b/src/api/resources/users/resources/tenants/client/Client.ts index 2c6bc49..d558c05 100644 --- a/src/api/resources/users/resources/tenants/client/Client.ts +++ b/src/api/resources/users/resources/tenants/client/Client.ts @@ -46,7 +46,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -89,7 +89,7 @@ export class Tenants { public async add( userId: string, tenantId: string, - request: Courier.users.AddUserToSingleTenantsParams, + request: Courier.users.AddUserToSingleTenantsParams = {}, requestOptions?: Tenants.RequestOptions ): Promise { const _response = await (this._options.fetcher ?? core.fetcher)({ @@ -102,7 +102,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -149,7 +149,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -195,7 +195,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -255,7 +255,7 @@ export class Tenants { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", queryParameters: _queryParams, diff --git a/src/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.ts b/src/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.ts index b8ee513..ae69e58 100644 --- a/src/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.ts +++ b/src/api/resources/users/resources/tenants/client/requests/AddUserToSingleTenantsParams.ts @@ -2,8 +2,6 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Courier from "../../../../../.."; - export interface AddUserToSingleTenantsParams { - profile: Courier.users.AddUserToSingleTenantsParamsProfile; + profile?: Record; } diff --git a/src/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.ts b/src/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.ts index 9d83120..8f10510 100644 --- a/src/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.ts +++ b/src/api/resources/users/resources/tenants/types/AddUserToSingleTenantsParamsProfile.ts @@ -2,6 +2,9 @@ * This file was auto-generated by Fern from our API Definition. */ +/** + * AddUserToSingleTenantsParamsProfile is no longer used for Add a User to a Single Tenant + */ export interface AddUserToSingleTenantsParamsProfile { title: string; /** Email Address */ diff --git a/src/api/resources/users/resources/tokens/client/Client.ts b/src/api/resources/users/resources/tokens/client/Client.ts index a258950..1c3c214 100644 --- a/src/api/resources/users/resources/tokens/client/Client.ts +++ b/src/api/resources/users/resources/tokens/client/Client.ts @@ -39,7 +39,7 @@ export class Tokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -96,7 +96,7 @@ export class Tokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -154,7 +154,7 @@ export class Tokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", body: request, @@ -211,7 +211,7 @@ export class Tokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, @@ -266,7 +266,7 @@ export class Tokens { Authorization: await this._getAuthorizationHeader(), "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@trycourier/courier", - "X-Fern-SDK-Version": "v6.1.1", + "X-Fern-SDK-Version": "v6.1.2", }, contentType: "application/json", timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, diff --git a/yarn.lock b/yarn.lock index c021849..516995e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -633,9 +633,9 @@ form-data "^4.0.0" "@types/node@*": - version "20.12.4" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.4.tgz#af5921bd75ccdf3a3d8b3fa75bf3d3359268cd11" - integrity sha512-E+Fa9z3wSQpzgYQdYmme5X3OTuejnnTx88A6p6vkkJosR3KBz+HpE3kqNm98VE6cfLFcISx7zW7MsJkH6KwbTw== + version "20.12.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.7.tgz#04080362fa3dd6c5822061aa3124f5c152cff384" + integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== dependencies: undici-types "~5.26.4" @@ -858,9 +858,9 @@ camelcase@^6.2.0: integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001587: - version "1.0.30001606" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001606.tgz#b4d5f67ab0746a3b8b5b6d1f06e39c51beb39a9e" - integrity sha512-LPbwnW4vfpJId225pwjZJOgX1m9sGfbw/RKJvw/t0QhYOOaTXHvkjVGFGPpvwEzufrjvTlsULnVTxdy4/6cqkg== + version "1.0.30001612" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz#d34248b4ec1f117b70b24ad9ee04c90e0b8a14ae" + integrity sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g== chalk@^2.4.2: version "2.4.2" @@ -984,9 +984,9 @@ debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: ms "2.1.2" dedent@^1.0.0: - version "1.5.1" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.1.tgz#4f3fc94c8b711e9bb2800d185cd6ad20f2a90aff" - integrity sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg== + version "1.5.3" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" + integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== deepmerge@^4.2.2: version "4.3.1" @@ -1018,9 +1018,9 @@ diff-sequences@^29.6.3: integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== electron-to-chromium@^1.4.668: - version "1.4.729" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.729.tgz#8477d21e2a50993781950885b2731d92ad532c00" - integrity sha512-bx7+5Saea/qu14kmPTDHQxkp2UnziG3iajUQu3BxFvCOnpAJdDbMV4rSl+EqFDkkpNNVUFlR1kDfpL59xfy1HA== + version "1.4.750" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.750.tgz#d278a619af727ed069de1317115187282b1131ee" + integrity sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA== emittery@^0.13.1: version "0.13.1" @@ -2032,9 +2032,9 @@ qs@6.11.2: side-channel "^1.0.4" react-is@^18.0.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== require-directory@^2.1.1: version "2.1.1"