tonightpass 0.0.198 → 0.0.200
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/index.d.mts +53 -7
- package/dist/index.d.ts +53 -7
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -23,17 +23,30 @@ declare const REGEX: {
|
|
|
23
23
|
IMAGE_URL: RegExp;
|
|
24
24
|
};
|
|
25
25
|
|
|
26
|
-
declare class AddParticipantDto {
|
|
27
|
-
username: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
26
|
type Endpoint<M extends Options["method"], Path extends string, Res, Body = undefined> = {
|
|
31
27
|
method: M;
|
|
32
28
|
path: Path;
|
|
33
29
|
res: Res;
|
|
34
30
|
body: Body;
|
|
35
31
|
};
|
|
36
|
-
type Endpoints = AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | ProfileEndpoints | UserEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
32
|
+
type Endpoints = ApiKeyEndpoints | AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | ProfileEndpoints | UserEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
33
|
+
|
|
34
|
+
declare enum ApiKeyTier {
|
|
35
|
+
PUBLIC = "public",
|
|
36
|
+
BUILD = "build",
|
|
37
|
+
PREMIUM = "premium",
|
|
38
|
+
INTERNAL = "internal"
|
|
39
|
+
}
|
|
40
|
+
type ApiKey = Base & {
|
|
41
|
+
key: string;
|
|
42
|
+
name: string;
|
|
43
|
+
tier: ApiKeyTier;
|
|
44
|
+
rateLimit: number;
|
|
45
|
+
user: UserProfile;
|
|
46
|
+
lastUsedAt?: Date;
|
|
47
|
+
isActive: boolean;
|
|
48
|
+
};
|
|
49
|
+
type ApiKeyEndpoints = Endpoint<"GET", "/api-keys", ArrayResult<ApiKey>> | Endpoint<"GET", "/api-keys/:apiKeyId", ApiKey> | Endpoint<"POST", "/api-keys", ApiKey, CreateApiKeyDto> | Endpoint<"PUT", "/api-keys/:apiKeyId", ApiKey, UpdateApiKeyDto> | Endpoint<"DELETE", "/api-keys/:apiKeyId", ApiKey>;
|
|
37
50
|
|
|
38
51
|
declare enum UserNotificationType {
|
|
39
52
|
Follow = "follow"
|
|
@@ -938,6 +951,21 @@ type ArrayResult<T> = {
|
|
|
938
951
|
limit: number;
|
|
939
952
|
};
|
|
940
953
|
|
|
954
|
+
type CreateApiKeyDto = {
|
|
955
|
+
name: string;
|
|
956
|
+
tier: ApiKeyTier;
|
|
957
|
+
};
|
|
958
|
+
|
|
959
|
+
type UpdateApiKeyDto = {
|
|
960
|
+
name?: string;
|
|
961
|
+
tier?: ApiKeyTier;
|
|
962
|
+
isActive?: boolean;
|
|
963
|
+
};
|
|
964
|
+
|
|
965
|
+
declare class AddParticipantDto {
|
|
966
|
+
username: string;
|
|
967
|
+
}
|
|
968
|
+
|
|
941
969
|
declare class CreateChannelDto {
|
|
942
970
|
type: ChannelType;
|
|
943
971
|
participantUsernames: string[];
|
|
@@ -1214,9 +1242,11 @@ declare class TonightPassAPIError<T> extends Error {
|
|
|
1214
1242
|
}
|
|
1215
1243
|
interface ClientOptions {
|
|
1216
1244
|
readonly baseURL: string;
|
|
1245
|
+
readonly apiKey?: string;
|
|
1217
1246
|
}
|
|
1218
1247
|
declare class Client {
|
|
1219
1248
|
private options;
|
|
1249
|
+
private apiKey?;
|
|
1220
1250
|
readonly url: (path: string, params: Record<string, ParamValue>) => string;
|
|
1221
1251
|
constructor(options: ClientOptions);
|
|
1222
1252
|
setOptions(options: ClientOptions): void;
|
|
@@ -1229,8 +1259,17 @@ declare class Client {
|
|
|
1229
1259
|
}
|
|
1230
1260
|
|
|
1231
1261
|
interface APIRequestOptions extends Options {
|
|
1262
|
+
apiKey?: string;
|
|
1232
1263
|
}
|
|
1233
|
-
declare const request: <T>(url: string, options?:
|
|
1264
|
+
declare const request: <T>(url: string, options?: APIRequestOptions) => Promise<Response$1<APIResponse<T>>>;
|
|
1265
|
+
|
|
1266
|
+
declare const apiKeys: (client: Client) => {
|
|
1267
|
+
getAll: () => Promise<ArrayResult<ApiKey>>;
|
|
1268
|
+
get: (apiKeyId: string) => Promise<ApiKey>;
|
|
1269
|
+
create: (data: CreateApiKeyDto) => Promise<ApiKey>;
|
|
1270
|
+
update: (apiKeyId: string, data: UpdateApiKeyDto) => Promise<ApiKey>;
|
|
1271
|
+
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
1272
|
+
};
|
|
1234
1273
|
|
|
1235
1274
|
declare const auth: (client: Client) => {
|
|
1236
1275
|
signIn: (data: SignInUserDto) => Promise<User>;
|
|
@@ -1466,6 +1505,13 @@ declare const notifications: (client: Client) => {
|
|
|
1466
1505
|
|
|
1467
1506
|
declare class TonightPass {
|
|
1468
1507
|
readonly client: Client;
|
|
1508
|
+
readonly apiKeys: {
|
|
1509
|
+
getAll: () => Promise<ArrayResult<ApiKey>>;
|
|
1510
|
+
get: (apiKeyId: string) => Promise<ApiKey>;
|
|
1511
|
+
create: (data: CreateApiKeyDto) => Promise<ApiKey>;
|
|
1512
|
+
update: (apiKeyId: string, data: UpdateApiKeyDto) => Promise<ApiKey>;
|
|
1513
|
+
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
1514
|
+
};
|
|
1469
1515
|
readonly auth: {
|
|
1470
1516
|
signIn: (data: SignInUserDto) => Promise<User>;
|
|
1471
1517
|
signUp: (data: CreateUserDto) => Promise<User>;
|
|
@@ -1847,4 +1893,4 @@ declare function channelsWS(options?: Partial<WebSocketClientOptions>): {
|
|
|
1847
1893
|
client: ChannelWebSocketClient;
|
|
1848
1894
|
};
|
|
1849
1895
|
|
|
1850
|
-
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AnalyticsOptions, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, type Body, type CareerEndpoints, type CareersCategory, type CareersEmploymentType, type CareersJob, type CareersOffice, type Channel, type ChannelDeleteEvent, type ChannelEndpoints, type ChannelMember, type ChannelMemberJoinEvent, type ChannelMemberLeaveEvent, ChannelMemberRole, type ChannelMessage, type ChannelMessageCreateEvent, type ChannelMessageDeleteEvent, type ChannelMessageEndpoints, type ChannelMessageReaction, type ChannelMessageReadByEntry, ChannelMessageReportReason, type ChannelMessageUpdateEvent, type ChannelParticipant, ChannelStatus, ChannelType, type ChannelUpdateEvent, ChannelWebSocketClient, type ChannelWebSocketEvent, Client, type ClientOptions, ContentOrAttachmentsConstraint, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, type ExchangeRates, type ExcludeBase, type FeedEndpoints, type FeedPost, FeedType, type GeoPoint, GeoPointDto, type GeoSearchAggregation, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventOrderEndpoints, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type QueryParams, REGEX, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, SignInUserDto, type StringifiedQuery, type StringifiedQueryValue, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TypingStartEvent, type TypingStopEvent, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, type UserToken, UserTokenType, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, auth, buildFileFormData, careers, channels, channelsWS, currencies, feed, health, isBrowser, notifications, orders, organizations, profiles, request, sdk, users };
|
|
1896
|
+
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AnalyticsOptions, type ApiKey, type ApiKeyEndpoints, ApiKeyTier, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, type Body, type CareerEndpoints, type CareersCategory, type CareersEmploymentType, type CareersJob, type CareersOffice, type Channel, type ChannelDeleteEvent, type ChannelEndpoints, type ChannelMember, type ChannelMemberJoinEvent, type ChannelMemberLeaveEvent, ChannelMemberRole, type ChannelMessage, type ChannelMessageCreateEvent, type ChannelMessageDeleteEvent, type ChannelMessageEndpoints, type ChannelMessageReaction, type ChannelMessageReadByEntry, ChannelMessageReportReason, type ChannelMessageUpdateEvent, type ChannelParticipant, ChannelStatus, ChannelType, type ChannelUpdateEvent, ChannelWebSocketClient, type ChannelWebSocketEvent, Client, type ClientOptions, ContentOrAttachmentsConstraint, type CreateApiKeyDto, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, type ExchangeRates, type ExcludeBase, type FeedEndpoints, type FeedPost, FeedType, type GeoPoint, GeoPointDto, type GeoSearchAggregation, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventOrderEndpoints, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type QueryParams, REGEX, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, SignInUserDto, type StringifiedQuery, type StringifiedQueryValue, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TypingStartEvent, type TypingStopEvent, type UpdateApiKeyDto, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, type UserToken, UserTokenType, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, apiKeys, auth, buildFileFormData, careers, channels, channelsWS, currencies, feed, health, isBrowser, notifications, orders, organizations, profiles, request, sdk, users };
|
package/dist/index.d.ts
CHANGED
|
@@ -23,17 +23,30 @@ declare const REGEX: {
|
|
|
23
23
|
IMAGE_URL: RegExp;
|
|
24
24
|
};
|
|
25
25
|
|
|
26
|
-
declare class AddParticipantDto {
|
|
27
|
-
username: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
26
|
type Endpoint<M extends Options["method"], Path extends string, Res, Body = undefined> = {
|
|
31
27
|
method: M;
|
|
32
28
|
path: Path;
|
|
33
29
|
res: Res;
|
|
34
30
|
body: Body;
|
|
35
31
|
};
|
|
36
|
-
type Endpoints = AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | ProfileEndpoints | UserEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
32
|
+
type Endpoints = ApiKeyEndpoints | AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | ProfileEndpoints | UserEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
33
|
+
|
|
34
|
+
declare enum ApiKeyTier {
|
|
35
|
+
PUBLIC = "public",
|
|
36
|
+
BUILD = "build",
|
|
37
|
+
PREMIUM = "premium",
|
|
38
|
+
INTERNAL = "internal"
|
|
39
|
+
}
|
|
40
|
+
type ApiKey = Base & {
|
|
41
|
+
key: string;
|
|
42
|
+
name: string;
|
|
43
|
+
tier: ApiKeyTier;
|
|
44
|
+
rateLimit: number;
|
|
45
|
+
user: UserProfile;
|
|
46
|
+
lastUsedAt?: Date;
|
|
47
|
+
isActive: boolean;
|
|
48
|
+
};
|
|
49
|
+
type ApiKeyEndpoints = Endpoint<"GET", "/api-keys", ArrayResult<ApiKey>> | Endpoint<"GET", "/api-keys/:apiKeyId", ApiKey> | Endpoint<"POST", "/api-keys", ApiKey, CreateApiKeyDto> | Endpoint<"PUT", "/api-keys/:apiKeyId", ApiKey, UpdateApiKeyDto> | Endpoint<"DELETE", "/api-keys/:apiKeyId", ApiKey>;
|
|
37
50
|
|
|
38
51
|
declare enum UserNotificationType {
|
|
39
52
|
Follow = "follow"
|
|
@@ -938,6 +951,21 @@ type ArrayResult<T> = {
|
|
|
938
951
|
limit: number;
|
|
939
952
|
};
|
|
940
953
|
|
|
954
|
+
type CreateApiKeyDto = {
|
|
955
|
+
name: string;
|
|
956
|
+
tier: ApiKeyTier;
|
|
957
|
+
};
|
|
958
|
+
|
|
959
|
+
type UpdateApiKeyDto = {
|
|
960
|
+
name?: string;
|
|
961
|
+
tier?: ApiKeyTier;
|
|
962
|
+
isActive?: boolean;
|
|
963
|
+
};
|
|
964
|
+
|
|
965
|
+
declare class AddParticipantDto {
|
|
966
|
+
username: string;
|
|
967
|
+
}
|
|
968
|
+
|
|
941
969
|
declare class CreateChannelDto {
|
|
942
970
|
type: ChannelType;
|
|
943
971
|
participantUsernames: string[];
|
|
@@ -1214,9 +1242,11 @@ declare class TonightPassAPIError<T> extends Error {
|
|
|
1214
1242
|
}
|
|
1215
1243
|
interface ClientOptions {
|
|
1216
1244
|
readonly baseURL: string;
|
|
1245
|
+
readonly apiKey?: string;
|
|
1217
1246
|
}
|
|
1218
1247
|
declare class Client {
|
|
1219
1248
|
private options;
|
|
1249
|
+
private apiKey?;
|
|
1220
1250
|
readonly url: (path: string, params: Record<string, ParamValue>) => string;
|
|
1221
1251
|
constructor(options: ClientOptions);
|
|
1222
1252
|
setOptions(options: ClientOptions): void;
|
|
@@ -1229,8 +1259,17 @@ declare class Client {
|
|
|
1229
1259
|
}
|
|
1230
1260
|
|
|
1231
1261
|
interface APIRequestOptions extends Options {
|
|
1262
|
+
apiKey?: string;
|
|
1232
1263
|
}
|
|
1233
|
-
declare const request: <T>(url: string, options?:
|
|
1264
|
+
declare const request: <T>(url: string, options?: APIRequestOptions) => Promise<Response$1<APIResponse<T>>>;
|
|
1265
|
+
|
|
1266
|
+
declare const apiKeys: (client: Client) => {
|
|
1267
|
+
getAll: () => Promise<ArrayResult<ApiKey>>;
|
|
1268
|
+
get: (apiKeyId: string) => Promise<ApiKey>;
|
|
1269
|
+
create: (data: CreateApiKeyDto) => Promise<ApiKey>;
|
|
1270
|
+
update: (apiKeyId: string, data: UpdateApiKeyDto) => Promise<ApiKey>;
|
|
1271
|
+
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
1272
|
+
};
|
|
1234
1273
|
|
|
1235
1274
|
declare const auth: (client: Client) => {
|
|
1236
1275
|
signIn: (data: SignInUserDto) => Promise<User>;
|
|
@@ -1466,6 +1505,13 @@ declare const notifications: (client: Client) => {
|
|
|
1466
1505
|
|
|
1467
1506
|
declare class TonightPass {
|
|
1468
1507
|
readonly client: Client;
|
|
1508
|
+
readonly apiKeys: {
|
|
1509
|
+
getAll: () => Promise<ArrayResult<ApiKey>>;
|
|
1510
|
+
get: (apiKeyId: string) => Promise<ApiKey>;
|
|
1511
|
+
create: (data: CreateApiKeyDto) => Promise<ApiKey>;
|
|
1512
|
+
update: (apiKeyId: string, data: UpdateApiKeyDto) => Promise<ApiKey>;
|
|
1513
|
+
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
1514
|
+
};
|
|
1469
1515
|
readonly auth: {
|
|
1470
1516
|
signIn: (data: SignInUserDto) => Promise<User>;
|
|
1471
1517
|
signUp: (data: CreateUserDto) => Promise<User>;
|
|
@@ -1847,4 +1893,4 @@ declare function channelsWS(options?: Partial<WebSocketClientOptions>): {
|
|
|
1847
1893
|
client: ChannelWebSocketClient;
|
|
1848
1894
|
};
|
|
1849
1895
|
|
|
1850
|
-
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AnalyticsOptions, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, type Body, type CareerEndpoints, type CareersCategory, type CareersEmploymentType, type CareersJob, type CareersOffice, type Channel, type ChannelDeleteEvent, type ChannelEndpoints, type ChannelMember, type ChannelMemberJoinEvent, type ChannelMemberLeaveEvent, ChannelMemberRole, type ChannelMessage, type ChannelMessageCreateEvent, type ChannelMessageDeleteEvent, type ChannelMessageEndpoints, type ChannelMessageReaction, type ChannelMessageReadByEntry, ChannelMessageReportReason, type ChannelMessageUpdateEvent, type ChannelParticipant, ChannelStatus, ChannelType, type ChannelUpdateEvent, ChannelWebSocketClient, type ChannelWebSocketEvent, Client, type ClientOptions, ContentOrAttachmentsConstraint, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, type ExchangeRates, type ExcludeBase, type FeedEndpoints, type FeedPost, FeedType, type GeoPoint, GeoPointDto, type GeoSearchAggregation, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventOrderEndpoints, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type QueryParams, REGEX, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, SignInUserDto, type StringifiedQuery, type StringifiedQueryValue, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TypingStartEvent, type TypingStopEvent, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, type UserToken, UserTokenType, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, auth, buildFileFormData, careers, channels, channelsWS, currencies, feed, health, isBrowser, notifications, orders, organizations, profiles, request, sdk, users };
|
|
1896
|
+
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AnalyticsOptions, type ApiKey, type ApiKeyEndpoints, ApiKeyTier, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, type Body, type CareerEndpoints, type CareersCategory, type CareersEmploymentType, type CareersJob, type CareersOffice, type Channel, type ChannelDeleteEvent, type ChannelEndpoints, type ChannelMember, type ChannelMemberJoinEvent, type ChannelMemberLeaveEvent, ChannelMemberRole, type ChannelMessage, type ChannelMessageCreateEvent, type ChannelMessageDeleteEvent, type ChannelMessageEndpoints, type ChannelMessageReaction, type ChannelMessageReadByEntry, ChannelMessageReportReason, type ChannelMessageUpdateEvent, type ChannelParticipant, ChannelStatus, ChannelType, type ChannelUpdateEvent, ChannelWebSocketClient, type ChannelWebSocketEvent, Client, type ClientOptions, ContentOrAttachmentsConstraint, type CreateApiKeyDto, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, type ExchangeRates, type ExcludeBase, type FeedEndpoints, type FeedPost, FeedType, type GeoPoint, GeoPointDto, type GeoSearchAggregation, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventOrderEndpoints, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type QueryParams, REGEX, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, SignInUserDto, type StringifiedQuery, type StringifiedQueryValue, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TypingStartEvent, type TypingStopEvent, type UpdateApiKeyDto, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, type UserToken, UserTokenType, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, apiKeys, auth, buildFileFormData, careers, channels, channelsWS, currencies, feed, health, isBrowser, notifications, orders, organizations, profiles, request, sdk, users };
|