tonightpass 0.0.260 → 0.0.261
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 +137 -19
- package/dist/index.d.ts +137 -19
- 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 +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2,15 +2,21 @@ import * as pathcat from 'pathcat';
|
|
|
2
2
|
import { Query, ParamValue } from 'pathcat';
|
|
3
3
|
export * from 'pathcat';
|
|
4
4
|
import { Options, Response as Response$1 } from 'redaxios';
|
|
5
|
+
import { ValidatorConstraintInterface, ValidationArguments, ValidationOptions } from 'class-validator';
|
|
5
6
|
import * as Stripe from 'stripe';
|
|
6
7
|
import Stripe__default from 'stripe';
|
|
7
|
-
import { ValidatorConstraintInterface, ValidationArguments, ValidationOptions } from 'class-validator';
|
|
8
8
|
import { HealthCheckResult, HealthIndicatorResult } from '@nestjs/terminus';
|
|
9
9
|
|
|
10
10
|
declare const DEFAULT_API_URL = "https://api.tonightpass.com";
|
|
11
11
|
|
|
12
12
|
declare const REGEX: {
|
|
13
13
|
EMAIL: RegExp;
|
|
14
|
+
INLINE: {
|
|
15
|
+
EMAIL: RegExp;
|
|
16
|
+
URL: RegExp;
|
|
17
|
+
USER_MENTION: RegExp;
|
|
18
|
+
ARTIST_MENTION: RegExp;
|
|
19
|
+
};
|
|
14
20
|
NAME: RegExp;
|
|
15
21
|
SLUG: RegExp;
|
|
16
22
|
USERNAME: RegExp;
|
|
@@ -34,6 +40,81 @@ declare const REGEX: {
|
|
|
34
40
|
USER_POST_MEDIA_URL: RegExp;
|
|
35
41
|
};
|
|
36
42
|
|
|
43
|
+
type ArtistSoundcloudBadges = {
|
|
44
|
+
pro: boolean;
|
|
45
|
+
proUnlimited: boolean;
|
|
46
|
+
verified: boolean;
|
|
47
|
+
};
|
|
48
|
+
type ArtistSoundcloudWebProfile = {
|
|
49
|
+
network: string;
|
|
50
|
+
url: string;
|
|
51
|
+
title?: string;
|
|
52
|
+
username?: string;
|
|
53
|
+
};
|
|
54
|
+
type ArtistTrack = {
|
|
55
|
+
id: string;
|
|
56
|
+
title: string;
|
|
57
|
+
permalinkUrl: string;
|
|
58
|
+
artworkUrl?: string;
|
|
59
|
+
duration: number;
|
|
60
|
+
playbackCount: number;
|
|
61
|
+
likesCount: number;
|
|
62
|
+
genre?: string;
|
|
63
|
+
createdAt: string;
|
|
64
|
+
};
|
|
65
|
+
type ArtistSoundcloudData = {
|
|
66
|
+
permalinkUrl: string;
|
|
67
|
+
followersCount: number;
|
|
68
|
+
followingsCount: number;
|
|
69
|
+
trackCount: number;
|
|
70
|
+
playlistCount: number;
|
|
71
|
+
likesCount: number;
|
|
72
|
+
badges: ArtistSoundcloudBadges;
|
|
73
|
+
webProfiles: ArtistSoundcloudWebProfile[];
|
|
74
|
+
};
|
|
75
|
+
type ArtistTonightPassData = {
|
|
76
|
+
followersCount: number;
|
|
77
|
+
isFollowing: boolean;
|
|
78
|
+
};
|
|
79
|
+
type Artist = {
|
|
80
|
+
id: string;
|
|
81
|
+
username: string;
|
|
82
|
+
permalink: string;
|
|
83
|
+
fullName?: string;
|
|
84
|
+
city?: string;
|
|
85
|
+
countryCode?: string;
|
|
86
|
+
description?: string;
|
|
87
|
+
avatarUrl: string;
|
|
88
|
+
bannerUrl?: string;
|
|
89
|
+
soundcloud: ArtistSoundcloudData;
|
|
90
|
+
tonightpass: ArtistTonightPassData;
|
|
91
|
+
};
|
|
92
|
+
type ArtistWithTracks = Omit<Artist, "soundcloud"> & {
|
|
93
|
+
soundcloud: ArtistSoundcloudData & {
|
|
94
|
+
tracks: ArtistTrack[];
|
|
95
|
+
topTracks: ArtistTrack[];
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
type EventArtistRef = {
|
|
99
|
+
id: string;
|
|
100
|
+
permalink: string;
|
|
101
|
+
username: string;
|
|
102
|
+
};
|
|
103
|
+
type SearchArtistsOptions = ArrayOptions<Artist> & {
|
|
104
|
+
q: string;
|
|
105
|
+
};
|
|
106
|
+
type GetArtistOptions = {
|
|
107
|
+
trackLimit?: number;
|
|
108
|
+
};
|
|
109
|
+
type ListArtistEventsOptions = ArrayOptions<OrganizationEvent> & {
|
|
110
|
+
upcoming?: boolean;
|
|
111
|
+
};
|
|
112
|
+
type ArtistEndpoints = Endpoint<"GET", "/artists/search", ArrayResult<Artist>, SearchArtistsOptions> | Endpoint<"GET", "/artists/:idOrPermalink", ArtistWithTracks, GetArtistOptions> | Endpoint<"POST", "/artists/:idOrPermalink/follow", {
|
|
113
|
+
isFollowing: boolean;
|
|
114
|
+
}> | Endpoint<"DELETE", "/artists/:idOrPermalink/follow", {
|
|
115
|
+
isFollowing: boolean;
|
|
116
|
+
}> | Endpoint<"GET", "/artists/:idOrPermalink/events", ArrayResult<OrganizationEvent>, ListArtistEventsOptions>;
|
|
117
|
+
|
|
37
118
|
declare enum UserNotificationType {
|
|
38
119
|
Follow = "follow"
|
|
39
120
|
}
|
|
@@ -969,6 +1050,7 @@ type OrganizationEvent = Base & {
|
|
|
969
1050
|
location: Location$1;
|
|
970
1051
|
tickets: OrganizationEventTicket[];
|
|
971
1052
|
styles: OrganizationEventStyle[];
|
|
1053
|
+
artists: EventArtistRef[];
|
|
972
1054
|
status: OrganizationEventStatus;
|
|
973
1055
|
viewsCount: number;
|
|
974
1056
|
sessionsCount: number;
|
|
@@ -1252,13 +1334,17 @@ type PlaceCity = Base & {
|
|
|
1252
1334
|
citySlug: string;
|
|
1253
1335
|
countrySlug: string;
|
|
1254
1336
|
};
|
|
1337
|
+
type ListPlaceCountriesOptions = ArrayOptions<PlaceCountry> & {
|
|
1338
|
+
code?: string;
|
|
1339
|
+
};
|
|
1255
1340
|
type SearchPlacesOptions = ArrayOptions<PlaceCity> & {
|
|
1256
1341
|
q: string;
|
|
1342
|
+
countryCode?: string;
|
|
1257
1343
|
};
|
|
1258
1344
|
type NearbyCitiesOptions = ArrayOptions<PlaceCity> & {
|
|
1259
1345
|
radius?: number;
|
|
1260
1346
|
};
|
|
1261
|
-
type PlaceEndpoints = Endpoint<"GET", "/places/countries", ArrayResult<PlaceCountry>,
|
|
1347
|
+
type PlaceEndpoints = Endpoint<"GET", "/places/countries", ArrayResult<PlaceCountry>, ListPlaceCountriesOptions> | Endpoint<"GET", "/places/countries/:countrySlug", PlaceCountry> | Endpoint<"GET", "/places/countries/:countrySlug/cities", ArrayResult<PlaceCity>, ArrayOptions<PlaceCity>> | Endpoint<"GET", "/places/countries/:countrySlug/cities/:citySlug", PlaceCity | ExcludeBase<PlaceCity>> | Endpoint<"GET", "/places/countries/:countrySlug/cities/:citySlug/nearby", ArrayResult<Distance<PlaceCity>>, NearbyCitiesOptions> | Endpoint<"GET", "/places/cities", ArrayResult<PlaceCity>, ArrayOptions<PlaceCity>> | Endpoint<"GET", "/places/cities/search", ArrayResult<PlaceCity>, SearchPlacesOptions>;
|
|
1262
1348
|
|
|
1263
1349
|
type ProxyMediaOptions = {
|
|
1264
1350
|
token: string;
|
|
@@ -1405,7 +1491,7 @@ type SSEEndpoints = Extract<Endpoints, {
|
|
|
1405
1491
|
res: ReadableStream<infer _>;
|
|
1406
1492
|
path: infer P;
|
|
1407
1493
|
} ? P : never : never;
|
|
1408
|
-
type Endpoints = ApiKeyEndpoints | AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | PlaceEndpoints | ProfileEndpoints | ProxyEndpoints | RoadmapEndpoints | SitemapEndpoints | UserEndpoints | WeatherEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
1494
|
+
type Endpoints = ApiKeyEndpoints | ArtistEndpoints | AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | PlaceEndpoints | ProfileEndpoints | ProxyEndpoints | RoadmapEndpoints | SitemapEndpoints | UserEndpoints | WeatherEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
1409
1495
|
|
|
1410
1496
|
declare enum ApiKeyTier {
|
|
1411
1497
|
PUBLIC = "public",
|
|
@@ -1539,6 +1625,12 @@ declare class CreateOrganizationIdentityDto {
|
|
|
1539
1625
|
links?: string[];
|
|
1540
1626
|
}
|
|
1541
1627
|
|
|
1628
|
+
declare class EventArtistDto implements EventArtistRef {
|
|
1629
|
+
id: string;
|
|
1630
|
+
permalink: string;
|
|
1631
|
+
username: string;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1542
1634
|
type CreateOrganizationEventTicketInput = Omit<ExcludeBase<OrganizationEventTicket>, "price" | "product" | "event" | "fee"> & {
|
|
1543
1635
|
price: number;
|
|
1544
1636
|
};
|
|
@@ -1574,10 +1666,11 @@ declare class AtLeastOneMediaConstraint implements ValidatorConstraintInterface
|
|
|
1574
1666
|
defaultMessage(): string;
|
|
1575
1667
|
}
|
|
1576
1668
|
declare function AtLeastOneMedia(validationOptions?: ValidationOptions): (object: object, propertyName: string) => void;
|
|
1577
|
-
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "status" | "viewsCount" | "sessionsCount" | "totalViewsCount" | "averageViewsPerSessionCount" | "hypeCount" | "minPrice"> & {
|
|
1669
|
+
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "artists" | "organization" | "status" | "viewsCount" | "sessionsCount" | "totalViewsCount" | "averageViewsPerSessionCount" | "hypeCount" | "minPrice"> & {
|
|
1578
1670
|
slug?: string;
|
|
1579
1671
|
styles: string[];
|
|
1580
1672
|
tickets: CreateOrganizationEventTicketInput[];
|
|
1673
|
+
artists?: EventArtistDto[];
|
|
1581
1674
|
};
|
|
1582
1675
|
declare class BaseOrganizationEventDto {
|
|
1583
1676
|
title: string;
|
|
@@ -1590,6 +1683,7 @@ declare class BaseOrganizationEventDto {
|
|
|
1590
1683
|
trailers: string[];
|
|
1591
1684
|
location: CreateLocationDto;
|
|
1592
1685
|
styles: string[];
|
|
1686
|
+
artists?: EventArtistDto[];
|
|
1593
1687
|
startAt: Date;
|
|
1594
1688
|
endAt: Date;
|
|
1595
1689
|
}
|
|
@@ -1640,6 +1734,7 @@ declare class UpdateOrganizationEventDto implements DeepPartial<CreateOrganizati
|
|
|
1640
1734
|
location?: UpdateLocationDto;
|
|
1641
1735
|
tickets?: UpdateOrganizationEventTicketDto[];
|
|
1642
1736
|
styles?: string[];
|
|
1737
|
+
artists?: EventArtistDto[];
|
|
1643
1738
|
startAt?: Date;
|
|
1644
1739
|
endAt?: Date;
|
|
1645
1740
|
}
|
|
@@ -1899,6 +1994,18 @@ declare const apiKeys: (client: Client) => {
|
|
|
1899
1994
|
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
1900
1995
|
};
|
|
1901
1996
|
|
|
1997
|
+
declare const artists: (client: Client) => {
|
|
1998
|
+
search: (query: Query<"/artists/search">) => Promise<ArrayResult<Artist>>;
|
|
1999
|
+
get: (query: Query<"/artists/:idOrPermalink">) => Promise<ArtistWithTracks>;
|
|
2000
|
+
follow: (query: Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2001
|
+
isFollowing: boolean;
|
|
2002
|
+
}>;
|
|
2003
|
+
unfollow: (query: Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2004
|
+
isFollowing: boolean;
|
|
2005
|
+
}>;
|
|
2006
|
+
events: (query: Query<"/artists/:idOrPermalink/events">) => Promise<ArrayResult<OrganizationEvent>>;
|
|
2007
|
+
};
|
|
2008
|
+
|
|
1902
2009
|
declare const auth: (client: Client) => {
|
|
1903
2010
|
signIn: (data: SignInUserDto) => Promise<AuthResponse>;
|
|
1904
2011
|
signUp: (data: CreateUserDto) => Promise<AuthResponse>;
|
|
@@ -2224,17 +2331,17 @@ declare const organizations: (client: Client) => {
|
|
|
2224
2331
|
|
|
2225
2332
|
declare const places: (client: Client) => {
|
|
2226
2333
|
countries: {
|
|
2227
|
-
getAll: (
|
|
2228
|
-
get: (
|
|
2334
|
+
getAll: (query?: Query<"/places/countries">) => Promise<ArrayResult<PlaceCountry>>;
|
|
2335
|
+
get: (query: Query<"/places/countries/:countrySlug">) => Promise<PlaceCountry>;
|
|
2229
2336
|
cities: {
|
|
2230
|
-
getAll: (
|
|
2231
|
-
get: (
|
|
2232
|
-
nearby: (
|
|
2337
|
+
getAll: (query: Query<"/places/countries/:countrySlug/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2338
|
+
get: (query: Query<"/places/countries/:countrySlug/cities/:citySlug">) => Promise<PlaceCity | ExcludeBase<PlaceCity>>;
|
|
2339
|
+
nearby: (query: Query<"/places/countries/:countrySlug/cities/:citySlug/nearby">) => Promise<ArrayResult<Distance<PlaceCity>>>;
|
|
2233
2340
|
};
|
|
2234
2341
|
};
|
|
2235
2342
|
cities: {
|
|
2236
|
-
getAll: (
|
|
2237
|
-
search: (query:
|
|
2343
|
+
getAll: (query?: Query<"/places/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2344
|
+
search: (query: Query<"/places/cities/search">) => Promise<ArrayResult<PlaceCity>>;
|
|
2238
2345
|
};
|
|
2239
2346
|
};
|
|
2240
2347
|
|
|
@@ -2323,6 +2430,17 @@ declare class TonightPass {
|
|
|
2323
2430
|
update: (apiKeyId: string, data: UpdateApiKeyDto) => Promise<ApiKey>;
|
|
2324
2431
|
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
2325
2432
|
};
|
|
2433
|
+
readonly artists: {
|
|
2434
|
+
search: (query: pathcat.Query<"/artists/search">) => Promise<ArrayResult<Artist>>;
|
|
2435
|
+
get: (query: pathcat.Query<"/artists/:idOrPermalink">) => Promise<ArtistWithTracks>;
|
|
2436
|
+
follow: (query: pathcat.Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2437
|
+
isFollowing: boolean;
|
|
2438
|
+
}>;
|
|
2439
|
+
unfollow: (query: pathcat.Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2440
|
+
isFollowing: boolean;
|
|
2441
|
+
}>;
|
|
2442
|
+
events: (query: pathcat.Query<"/artists/:idOrPermalink/events">) => Promise<ArrayResult<OrganizationEvent>>;
|
|
2443
|
+
};
|
|
2326
2444
|
readonly auth: {
|
|
2327
2445
|
signIn: (data: SignInUserDto) => Promise<AuthResponse>;
|
|
2328
2446
|
signUp: (data: CreateUserDto) => Promise<AuthResponse>;
|
|
@@ -2503,17 +2621,17 @@ declare class TonightPass {
|
|
|
2503
2621
|
};
|
|
2504
2622
|
readonly places: {
|
|
2505
2623
|
countries: {
|
|
2506
|
-
getAll: (
|
|
2507
|
-
get: (
|
|
2624
|
+
getAll: (query?: pathcat.Query<"/places/countries">) => Promise<ArrayResult<PlaceCountry>>;
|
|
2625
|
+
get: (query: pathcat.Query<"/places/countries/:countrySlug">) => Promise<PlaceCountry>;
|
|
2508
2626
|
cities: {
|
|
2509
|
-
getAll: (
|
|
2510
|
-
get: (
|
|
2511
|
-
nearby: (
|
|
2627
|
+
getAll: (query: pathcat.Query<"/places/countries/:countrySlug/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2628
|
+
get: (query: pathcat.Query<"/places/countries/:countrySlug/cities/:citySlug">) => Promise<PlaceCity | ExcludeBase<PlaceCity>>;
|
|
2629
|
+
nearby: (query: pathcat.Query<"/places/countries/:countrySlug/cities/:citySlug/nearby">) => Promise<ArrayResult<Distance<PlaceCity>>>;
|
|
2512
2630
|
};
|
|
2513
2631
|
};
|
|
2514
2632
|
cities: {
|
|
2515
|
-
getAll: (
|
|
2516
|
-
search: (query:
|
|
2633
|
+
getAll: (query?: pathcat.Query<"/places/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2634
|
+
search: (query: pathcat.Query<"/places/cities/search">) => Promise<ArrayResult<PlaceCity>>;
|
|
2517
2635
|
};
|
|
2518
2636
|
};
|
|
2519
2637
|
readonly profiles: {
|
|
@@ -2750,4 +2868,4 @@ declare function channelsWS(options?: Partial<WebSocketClientOptions>): {
|
|
|
2750
2868
|
client: ChannelWebSocketClient;
|
|
2751
2869
|
};
|
|
2752
2870
|
|
|
2753
|
-
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AddRoadmapReactionBody, type AnalyticsOptions, type ApiKey, type ApiKeyEndpoints, ApiKeyTier, ApiKeyType, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, AuthFlow, type AuthMethod, type AuthResponse, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, BillingLocality, type BillingParameters, type Body, type CacheEntry, CacheManager, type CacheOptions, type CacheStore, type CareerEndpoints, type CareersCategoriesOptions, type CareersCategory, type CareersEmploymentType, type CareersEmploymentTypesOptions, type CareersJob, CareersJobStatus, type CareersJobsOptions, type CareersOffice, type CareersOfficesOptions, CareersRemoteType, CareersWorkplaceType, type CartTicket, 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, CreateApiKeyDto, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventPromoCodeDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, DEFAULT_BILLING_PARAMETERS, DEFAULT_STRIPE_FEES, DEFAULT_TONIGHTPASS_FEES, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, type ExchangeRates, type ExcludeBase, type ExternalContact, type ExternalOffer, type ExternalSource, type FeedEndpoints, type FeedPost, FeedType, type FileObject, type GeoPoint, GeoPointDto, type GeoSearchAggregation, GoogleOneTapDto, type Health, type HealthEndpoints, type HealthMemory, Language, type Location$1 as Location, MINIMUM_CHARGEABLE_AMOUNT, MINIMUM_CHARGE_AMOUNTS, MINIMUM_COMMISSION, MemoryCacheStore, type MemorySnapshot, type NearbyCitiesOptions, type NotificationEndpoints, OAuth2Provider, type Order, type OrderDiscount, type OrderEndpoints, type OrderItem, type OrderTotals, OrderTransferStatus, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationBillingBalance, type OrganizationBillingPendingRevenue, type OrganizationCustomer, type OrganizationCustomerMetadata, type OrganizationCustomersEndpoints, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventCalendar, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventNearbyOptions, type OrganizationEventOrderEndpoints, type OrganizationEventPromoCode, type OrganizationEventPromoCodeEndpoints, OrganizationEventPromoCodeType, type OrganizationEventPromoCodeValidation, type OrganizationEventRequestResponse, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, type OrganizationEventViewEndpoints, type OrganizationEventViewOptions, type OrganizationEventViewResult, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberRolePower, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationNotification, type OrganizationNotificationBase, type OrganizationNotificationEndpoints, OrganizationNotificationType, type OrganizationNotificationWithActor, type OrganizationOrder, type OrganizationOrdersEndpoints, OrganizationPayoutStatus, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type PlaceCity, type PlaceCountry, type PlaceEndpoints, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type ProxyEndpoints, type ProxyMediaOptions, type ProxyMediaResponse, type QueryParams, REGEX, ROADMAP_REACTIONS, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, type RoadmapEndpoints, type RoadmapFeature, RoadmapFeatureStatus, type RoadmapReaction, type RoadmapReactionCounts, type SSEEndpoints, type SearchOrganizationEventsOptions, type SearchPlacesOptions, type SearchProfilesOptions, SignInUserDto, type SitemapCounts, type SitemapEndpoints, type StringifiedQuery, type StringifiedQueryValue, type StripeFees, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TonightPassFees, type TypingStartEvent, type TypingStopEvent, UpdateApiKeyDto, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventPromoCodeDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingTicketEndpoints, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserCustomer, type UserCustomerMetadata, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserOAuthProvider, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, type UserPostViewOptions, type UserPostViewResult, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, UserRolePower, type UserToken, UserTokenType, VerifyEmailConfirmDto, type VerifyEmailResponse, type WeatherEndpoints, type WeatherForecast, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, ZERO_DECIMAL_CURRENCIES, apiKeys, applyMinimumChargeableAmount, auth, buildFileFormData, calculateOrderTotal, calculateTicketFee, calculateTicketFeeWithCurrency, careers, channels, channelsWS, currencies, feed, fromSmallestUnit, getMinimumChargeableAmount, health, isBrowser, isMemberRoleAtLeast, isZeroDecimalCurrency, normalizeAddress, notifications, orders, organizations, places, profiles, request, roadmap, sdk, sitemaps, toSmallestUnit, users };
|
|
2871
|
+
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AddRoadmapReactionBody, type AnalyticsOptions, type ApiKey, type ApiKeyEndpoints, ApiKeyTier, ApiKeyType, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, type Artist, type ArtistEndpoints, type ArtistSoundcloudBadges, type ArtistSoundcloudData, type ArtistSoundcloudWebProfile, type ArtistTonightPassData, type ArtistTrack, type ArtistWithTracks, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, AuthFlow, type AuthMethod, type AuthResponse, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, BillingLocality, type BillingParameters, type Body, type CacheEntry, CacheManager, type CacheOptions, type CacheStore, type CareerEndpoints, type CareersCategoriesOptions, type CareersCategory, type CareersEmploymentType, type CareersEmploymentTypesOptions, type CareersJob, CareersJobStatus, type CareersJobsOptions, type CareersOffice, type CareersOfficesOptions, CareersRemoteType, CareersWorkplaceType, type CartTicket, 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, CreateApiKeyDto, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventPromoCodeDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, DEFAULT_BILLING_PARAMETERS, DEFAULT_STRIPE_FEES, DEFAULT_TONIGHTPASS_FEES, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, EventArtistDto, type EventArtistRef, type ExchangeRates, type ExcludeBase, type ExternalContact, type ExternalOffer, type ExternalSource, type FeedEndpoints, type FeedPost, FeedType, type FileObject, type GeoPoint, GeoPointDto, type GeoSearchAggregation, type GetArtistOptions, GoogleOneTapDto, type Health, type HealthEndpoints, type HealthMemory, Language, type ListArtistEventsOptions, type ListPlaceCountriesOptions, type Location$1 as Location, MINIMUM_CHARGEABLE_AMOUNT, MINIMUM_CHARGE_AMOUNTS, MINIMUM_COMMISSION, MemoryCacheStore, type MemorySnapshot, type NearbyCitiesOptions, type NotificationEndpoints, OAuth2Provider, type Order, type OrderDiscount, type OrderEndpoints, type OrderItem, type OrderTotals, OrderTransferStatus, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationBillingBalance, type OrganizationBillingPendingRevenue, type OrganizationCustomer, type OrganizationCustomerMetadata, type OrganizationCustomersEndpoints, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventCalendar, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventNearbyOptions, type OrganizationEventOrderEndpoints, type OrganizationEventPromoCode, type OrganizationEventPromoCodeEndpoints, OrganizationEventPromoCodeType, type OrganizationEventPromoCodeValidation, type OrganizationEventRequestResponse, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, type OrganizationEventViewEndpoints, type OrganizationEventViewOptions, type OrganizationEventViewResult, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberRolePower, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationNotification, type OrganizationNotificationBase, type OrganizationNotificationEndpoints, OrganizationNotificationType, type OrganizationNotificationWithActor, type OrganizationOrder, type OrganizationOrdersEndpoints, OrganizationPayoutStatus, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type PlaceCity, type PlaceCountry, type PlaceEndpoints, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type ProxyEndpoints, type ProxyMediaOptions, type ProxyMediaResponse, type QueryParams, REGEX, ROADMAP_REACTIONS, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, type RoadmapEndpoints, type RoadmapFeature, RoadmapFeatureStatus, type RoadmapReaction, type RoadmapReactionCounts, type SSEEndpoints, type SearchArtistsOptions, type SearchOrganizationEventsOptions, type SearchPlacesOptions, type SearchProfilesOptions, SignInUserDto, type SitemapCounts, type SitemapEndpoints, type StringifiedQuery, type StringifiedQueryValue, type StripeFees, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TonightPassFees, type TypingStartEvent, type TypingStopEvent, UpdateApiKeyDto, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventPromoCodeDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingTicketEndpoints, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserCustomer, type UserCustomerMetadata, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserOAuthProvider, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, type UserPostViewOptions, type UserPostViewResult, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, UserRolePower, type UserToken, UserTokenType, VerifyEmailConfirmDto, type VerifyEmailResponse, type WeatherEndpoints, type WeatherForecast, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, ZERO_DECIMAL_CURRENCIES, apiKeys, applyMinimumChargeableAmount, artists, auth, buildFileFormData, calculateOrderTotal, calculateTicketFee, calculateTicketFeeWithCurrency, careers, channels, channelsWS, currencies, feed, fromSmallestUnit, getMinimumChargeableAmount, health, isBrowser, isMemberRoleAtLeast, isZeroDecimalCurrency, normalizeAddress, notifications, orders, organizations, places, profiles, request, roadmap, sdk, sitemaps, toSmallestUnit, users };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,15 +2,21 @@ import * as pathcat from 'pathcat';
|
|
|
2
2
|
import { Query, ParamValue } from 'pathcat';
|
|
3
3
|
export * from 'pathcat';
|
|
4
4
|
import { Options, Response as Response$1 } from 'redaxios';
|
|
5
|
+
import { ValidatorConstraintInterface, ValidationArguments, ValidationOptions } from 'class-validator';
|
|
5
6
|
import * as Stripe from 'stripe';
|
|
6
7
|
import Stripe__default from 'stripe';
|
|
7
|
-
import { ValidatorConstraintInterface, ValidationArguments, ValidationOptions } from 'class-validator';
|
|
8
8
|
import { HealthCheckResult, HealthIndicatorResult } from '@nestjs/terminus';
|
|
9
9
|
|
|
10
10
|
declare const DEFAULT_API_URL = "https://api.tonightpass.com";
|
|
11
11
|
|
|
12
12
|
declare const REGEX: {
|
|
13
13
|
EMAIL: RegExp;
|
|
14
|
+
INLINE: {
|
|
15
|
+
EMAIL: RegExp;
|
|
16
|
+
URL: RegExp;
|
|
17
|
+
USER_MENTION: RegExp;
|
|
18
|
+
ARTIST_MENTION: RegExp;
|
|
19
|
+
};
|
|
14
20
|
NAME: RegExp;
|
|
15
21
|
SLUG: RegExp;
|
|
16
22
|
USERNAME: RegExp;
|
|
@@ -34,6 +40,81 @@ declare const REGEX: {
|
|
|
34
40
|
USER_POST_MEDIA_URL: RegExp;
|
|
35
41
|
};
|
|
36
42
|
|
|
43
|
+
type ArtistSoundcloudBadges = {
|
|
44
|
+
pro: boolean;
|
|
45
|
+
proUnlimited: boolean;
|
|
46
|
+
verified: boolean;
|
|
47
|
+
};
|
|
48
|
+
type ArtistSoundcloudWebProfile = {
|
|
49
|
+
network: string;
|
|
50
|
+
url: string;
|
|
51
|
+
title?: string;
|
|
52
|
+
username?: string;
|
|
53
|
+
};
|
|
54
|
+
type ArtistTrack = {
|
|
55
|
+
id: string;
|
|
56
|
+
title: string;
|
|
57
|
+
permalinkUrl: string;
|
|
58
|
+
artworkUrl?: string;
|
|
59
|
+
duration: number;
|
|
60
|
+
playbackCount: number;
|
|
61
|
+
likesCount: number;
|
|
62
|
+
genre?: string;
|
|
63
|
+
createdAt: string;
|
|
64
|
+
};
|
|
65
|
+
type ArtistSoundcloudData = {
|
|
66
|
+
permalinkUrl: string;
|
|
67
|
+
followersCount: number;
|
|
68
|
+
followingsCount: number;
|
|
69
|
+
trackCount: number;
|
|
70
|
+
playlistCount: number;
|
|
71
|
+
likesCount: number;
|
|
72
|
+
badges: ArtistSoundcloudBadges;
|
|
73
|
+
webProfiles: ArtistSoundcloudWebProfile[];
|
|
74
|
+
};
|
|
75
|
+
type ArtistTonightPassData = {
|
|
76
|
+
followersCount: number;
|
|
77
|
+
isFollowing: boolean;
|
|
78
|
+
};
|
|
79
|
+
type Artist = {
|
|
80
|
+
id: string;
|
|
81
|
+
username: string;
|
|
82
|
+
permalink: string;
|
|
83
|
+
fullName?: string;
|
|
84
|
+
city?: string;
|
|
85
|
+
countryCode?: string;
|
|
86
|
+
description?: string;
|
|
87
|
+
avatarUrl: string;
|
|
88
|
+
bannerUrl?: string;
|
|
89
|
+
soundcloud: ArtistSoundcloudData;
|
|
90
|
+
tonightpass: ArtistTonightPassData;
|
|
91
|
+
};
|
|
92
|
+
type ArtistWithTracks = Omit<Artist, "soundcloud"> & {
|
|
93
|
+
soundcloud: ArtistSoundcloudData & {
|
|
94
|
+
tracks: ArtistTrack[];
|
|
95
|
+
topTracks: ArtistTrack[];
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
type EventArtistRef = {
|
|
99
|
+
id: string;
|
|
100
|
+
permalink: string;
|
|
101
|
+
username: string;
|
|
102
|
+
};
|
|
103
|
+
type SearchArtistsOptions = ArrayOptions<Artist> & {
|
|
104
|
+
q: string;
|
|
105
|
+
};
|
|
106
|
+
type GetArtistOptions = {
|
|
107
|
+
trackLimit?: number;
|
|
108
|
+
};
|
|
109
|
+
type ListArtistEventsOptions = ArrayOptions<OrganizationEvent> & {
|
|
110
|
+
upcoming?: boolean;
|
|
111
|
+
};
|
|
112
|
+
type ArtistEndpoints = Endpoint<"GET", "/artists/search", ArrayResult<Artist>, SearchArtistsOptions> | Endpoint<"GET", "/artists/:idOrPermalink", ArtistWithTracks, GetArtistOptions> | Endpoint<"POST", "/artists/:idOrPermalink/follow", {
|
|
113
|
+
isFollowing: boolean;
|
|
114
|
+
}> | Endpoint<"DELETE", "/artists/:idOrPermalink/follow", {
|
|
115
|
+
isFollowing: boolean;
|
|
116
|
+
}> | Endpoint<"GET", "/artists/:idOrPermalink/events", ArrayResult<OrganizationEvent>, ListArtistEventsOptions>;
|
|
117
|
+
|
|
37
118
|
declare enum UserNotificationType {
|
|
38
119
|
Follow = "follow"
|
|
39
120
|
}
|
|
@@ -969,6 +1050,7 @@ type OrganizationEvent = Base & {
|
|
|
969
1050
|
location: Location$1;
|
|
970
1051
|
tickets: OrganizationEventTicket[];
|
|
971
1052
|
styles: OrganizationEventStyle[];
|
|
1053
|
+
artists: EventArtistRef[];
|
|
972
1054
|
status: OrganizationEventStatus;
|
|
973
1055
|
viewsCount: number;
|
|
974
1056
|
sessionsCount: number;
|
|
@@ -1252,13 +1334,17 @@ type PlaceCity = Base & {
|
|
|
1252
1334
|
citySlug: string;
|
|
1253
1335
|
countrySlug: string;
|
|
1254
1336
|
};
|
|
1337
|
+
type ListPlaceCountriesOptions = ArrayOptions<PlaceCountry> & {
|
|
1338
|
+
code?: string;
|
|
1339
|
+
};
|
|
1255
1340
|
type SearchPlacesOptions = ArrayOptions<PlaceCity> & {
|
|
1256
1341
|
q: string;
|
|
1342
|
+
countryCode?: string;
|
|
1257
1343
|
};
|
|
1258
1344
|
type NearbyCitiesOptions = ArrayOptions<PlaceCity> & {
|
|
1259
1345
|
radius?: number;
|
|
1260
1346
|
};
|
|
1261
|
-
type PlaceEndpoints = Endpoint<"GET", "/places/countries", ArrayResult<PlaceCountry>,
|
|
1347
|
+
type PlaceEndpoints = Endpoint<"GET", "/places/countries", ArrayResult<PlaceCountry>, ListPlaceCountriesOptions> | Endpoint<"GET", "/places/countries/:countrySlug", PlaceCountry> | Endpoint<"GET", "/places/countries/:countrySlug/cities", ArrayResult<PlaceCity>, ArrayOptions<PlaceCity>> | Endpoint<"GET", "/places/countries/:countrySlug/cities/:citySlug", PlaceCity | ExcludeBase<PlaceCity>> | Endpoint<"GET", "/places/countries/:countrySlug/cities/:citySlug/nearby", ArrayResult<Distance<PlaceCity>>, NearbyCitiesOptions> | Endpoint<"GET", "/places/cities", ArrayResult<PlaceCity>, ArrayOptions<PlaceCity>> | Endpoint<"GET", "/places/cities/search", ArrayResult<PlaceCity>, SearchPlacesOptions>;
|
|
1262
1348
|
|
|
1263
1349
|
type ProxyMediaOptions = {
|
|
1264
1350
|
token: string;
|
|
@@ -1405,7 +1491,7 @@ type SSEEndpoints = Extract<Endpoints, {
|
|
|
1405
1491
|
res: ReadableStream<infer _>;
|
|
1406
1492
|
path: infer P;
|
|
1407
1493
|
} ? P : never : never;
|
|
1408
|
-
type Endpoints = ApiKeyEndpoints | AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | PlaceEndpoints | ProfileEndpoints | ProxyEndpoints | RoadmapEndpoints | SitemapEndpoints | UserEndpoints | WeatherEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
1494
|
+
type Endpoints = ApiKeyEndpoints | ArtistEndpoints | AuthEndpoints | CareerEndpoints | ChannelEndpoints | ChannelMessageEndpoints | CurrenciesEndpoints | FeedEndpoints | HealthEndpoints | OrderEndpoints | OrganizationEndpoints | PlaceEndpoints | ProfileEndpoints | ProxyEndpoints | RoadmapEndpoints | SitemapEndpoints | UserEndpoints | WeatherEndpoints | WebhookEndpoints | NotificationEndpoints;
|
|
1409
1495
|
|
|
1410
1496
|
declare enum ApiKeyTier {
|
|
1411
1497
|
PUBLIC = "public",
|
|
@@ -1539,6 +1625,12 @@ declare class CreateOrganizationIdentityDto {
|
|
|
1539
1625
|
links?: string[];
|
|
1540
1626
|
}
|
|
1541
1627
|
|
|
1628
|
+
declare class EventArtistDto implements EventArtistRef {
|
|
1629
|
+
id: string;
|
|
1630
|
+
permalink: string;
|
|
1631
|
+
username: string;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1542
1634
|
type CreateOrganizationEventTicketInput = Omit<ExcludeBase<OrganizationEventTicket>, "price" | "product" | "event" | "fee"> & {
|
|
1543
1635
|
price: number;
|
|
1544
1636
|
};
|
|
@@ -1574,10 +1666,11 @@ declare class AtLeastOneMediaConstraint implements ValidatorConstraintInterface
|
|
|
1574
1666
|
defaultMessage(): string;
|
|
1575
1667
|
}
|
|
1576
1668
|
declare function AtLeastOneMedia(validationOptions?: ValidationOptions): (object: object, propertyName: string) => void;
|
|
1577
|
-
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "organization" | "status" | "viewsCount" | "sessionsCount" | "totalViewsCount" | "averageViewsPerSessionCount" | "hypeCount" | "minPrice"> & {
|
|
1669
|
+
type CreateOrganizationEventInput = Omit<ExcludeBase<OrganizationEvent>, "slug" | "styles" | "tickets" | "artists" | "organization" | "status" | "viewsCount" | "sessionsCount" | "totalViewsCount" | "averageViewsPerSessionCount" | "hypeCount" | "minPrice"> & {
|
|
1578
1670
|
slug?: string;
|
|
1579
1671
|
styles: string[];
|
|
1580
1672
|
tickets: CreateOrganizationEventTicketInput[];
|
|
1673
|
+
artists?: EventArtistDto[];
|
|
1581
1674
|
};
|
|
1582
1675
|
declare class BaseOrganizationEventDto {
|
|
1583
1676
|
title: string;
|
|
@@ -1590,6 +1683,7 @@ declare class BaseOrganizationEventDto {
|
|
|
1590
1683
|
trailers: string[];
|
|
1591
1684
|
location: CreateLocationDto;
|
|
1592
1685
|
styles: string[];
|
|
1686
|
+
artists?: EventArtistDto[];
|
|
1593
1687
|
startAt: Date;
|
|
1594
1688
|
endAt: Date;
|
|
1595
1689
|
}
|
|
@@ -1640,6 +1734,7 @@ declare class UpdateOrganizationEventDto implements DeepPartial<CreateOrganizati
|
|
|
1640
1734
|
location?: UpdateLocationDto;
|
|
1641
1735
|
tickets?: UpdateOrganizationEventTicketDto[];
|
|
1642
1736
|
styles?: string[];
|
|
1737
|
+
artists?: EventArtistDto[];
|
|
1643
1738
|
startAt?: Date;
|
|
1644
1739
|
endAt?: Date;
|
|
1645
1740
|
}
|
|
@@ -1899,6 +1994,18 @@ declare const apiKeys: (client: Client) => {
|
|
|
1899
1994
|
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
1900
1995
|
};
|
|
1901
1996
|
|
|
1997
|
+
declare const artists: (client: Client) => {
|
|
1998
|
+
search: (query: Query<"/artists/search">) => Promise<ArrayResult<Artist>>;
|
|
1999
|
+
get: (query: Query<"/artists/:idOrPermalink">) => Promise<ArtistWithTracks>;
|
|
2000
|
+
follow: (query: Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2001
|
+
isFollowing: boolean;
|
|
2002
|
+
}>;
|
|
2003
|
+
unfollow: (query: Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2004
|
+
isFollowing: boolean;
|
|
2005
|
+
}>;
|
|
2006
|
+
events: (query: Query<"/artists/:idOrPermalink/events">) => Promise<ArrayResult<OrganizationEvent>>;
|
|
2007
|
+
};
|
|
2008
|
+
|
|
1902
2009
|
declare const auth: (client: Client) => {
|
|
1903
2010
|
signIn: (data: SignInUserDto) => Promise<AuthResponse>;
|
|
1904
2011
|
signUp: (data: CreateUserDto) => Promise<AuthResponse>;
|
|
@@ -2224,17 +2331,17 @@ declare const organizations: (client: Client) => {
|
|
|
2224
2331
|
|
|
2225
2332
|
declare const places: (client: Client) => {
|
|
2226
2333
|
countries: {
|
|
2227
|
-
getAll: (
|
|
2228
|
-
get: (
|
|
2334
|
+
getAll: (query?: Query<"/places/countries">) => Promise<ArrayResult<PlaceCountry>>;
|
|
2335
|
+
get: (query: Query<"/places/countries/:countrySlug">) => Promise<PlaceCountry>;
|
|
2229
2336
|
cities: {
|
|
2230
|
-
getAll: (
|
|
2231
|
-
get: (
|
|
2232
|
-
nearby: (
|
|
2337
|
+
getAll: (query: Query<"/places/countries/:countrySlug/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2338
|
+
get: (query: Query<"/places/countries/:countrySlug/cities/:citySlug">) => Promise<PlaceCity | ExcludeBase<PlaceCity>>;
|
|
2339
|
+
nearby: (query: Query<"/places/countries/:countrySlug/cities/:citySlug/nearby">) => Promise<ArrayResult<Distance<PlaceCity>>>;
|
|
2233
2340
|
};
|
|
2234
2341
|
};
|
|
2235
2342
|
cities: {
|
|
2236
|
-
getAll: (
|
|
2237
|
-
search: (query:
|
|
2343
|
+
getAll: (query?: Query<"/places/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2344
|
+
search: (query: Query<"/places/cities/search">) => Promise<ArrayResult<PlaceCity>>;
|
|
2238
2345
|
};
|
|
2239
2346
|
};
|
|
2240
2347
|
|
|
@@ -2323,6 +2430,17 @@ declare class TonightPass {
|
|
|
2323
2430
|
update: (apiKeyId: string, data: UpdateApiKeyDto) => Promise<ApiKey>;
|
|
2324
2431
|
delete: (apiKeyId: string) => Promise<ApiKey>;
|
|
2325
2432
|
};
|
|
2433
|
+
readonly artists: {
|
|
2434
|
+
search: (query: pathcat.Query<"/artists/search">) => Promise<ArrayResult<Artist>>;
|
|
2435
|
+
get: (query: pathcat.Query<"/artists/:idOrPermalink">) => Promise<ArtistWithTracks>;
|
|
2436
|
+
follow: (query: pathcat.Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2437
|
+
isFollowing: boolean;
|
|
2438
|
+
}>;
|
|
2439
|
+
unfollow: (query: pathcat.Query<"/artists/:idOrPermalink/follow">) => Promise<{
|
|
2440
|
+
isFollowing: boolean;
|
|
2441
|
+
}>;
|
|
2442
|
+
events: (query: pathcat.Query<"/artists/:idOrPermalink/events">) => Promise<ArrayResult<OrganizationEvent>>;
|
|
2443
|
+
};
|
|
2326
2444
|
readonly auth: {
|
|
2327
2445
|
signIn: (data: SignInUserDto) => Promise<AuthResponse>;
|
|
2328
2446
|
signUp: (data: CreateUserDto) => Promise<AuthResponse>;
|
|
@@ -2503,17 +2621,17 @@ declare class TonightPass {
|
|
|
2503
2621
|
};
|
|
2504
2622
|
readonly places: {
|
|
2505
2623
|
countries: {
|
|
2506
|
-
getAll: (
|
|
2507
|
-
get: (
|
|
2624
|
+
getAll: (query?: pathcat.Query<"/places/countries">) => Promise<ArrayResult<PlaceCountry>>;
|
|
2625
|
+
get: (query: pathcat.Query<"/places/countries/:countrySlug">) => Promise<PlaceCountry>;
|
|
2508
2626
|
cities: {
|
|
2509
|
-
getAll: (
|
|
2510
|
-
get: (
|
|
2511
|
-
nearby: (
|
|
2627
|
+
getAll: (query: pathcat.Query<"/places/countries/:countrySlug/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2628
|
+
get: (query: pathcat.Query<"/places/countries/:countrySlug/cities/:citySlug">) => Promise<PlaceCity | ExcludeBase<PlaceCity>>;
|
|
2629
|
+
nearby: (query: pathcat.Query<"/places/countries/:countrySlug/cities/:citySlug/nearby">) => Promise<ArrayResult<Distance<PlaceCity>>>;
|
|
2512
2630
|
};
|
|
2513
2631
|
};
|
|
2514
2632
|
cities: {
|
|
2515
|
-
getAll: (
|
|
2516
|
-
search: (query:
|
|
2633
|
+
getAll: (query?: pathcat.Query<"/places/cities">) => Promise<ArrayResult<PlaceCity>>;
|
|
2634
|
+
search: (query: pathcat.Query<"/places/cities/search">) => Promise<ArrayResult<PlaceCity>>;
|
|
2517
2635
|
};
|
|
2518
2636
|
};
|
|
2519
2637
|
readonly profiles: {
|
|
@@ -2750,4 +2868,4 @@ declare function channelsWS(options?: Partial<WebSocketClientOptions>): {
|
|
|
2750
2868
|
client: ChannelWebSocketClient;
|
|
2751
2869
|
};
|
|
2752
2870
|
|
|
2753
|
-
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AddRoadmapReactionBody, type AnalyticsOptions, type ApiKey, type ApiKeyEndpoints, ApiKeyTier, ApiKeyType, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, AuthFlow, type AuthMethod, type AuthResponse, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, BillingLocality, type BillingParameters, type Body, type CacheEntry, CacheManager, type CacheOptions, type CacheStore, type CareerEndpoints, type CareersCategoriesOptions, type CareersCategory, type CareersEmploymentType, type CareersEmploymentTypesOptions, type CareersJob, CareersJobStatus, type CareersJobsOptions, type CareersOffice, type CareersOfficesOptions, CareersRemoteType, CareersWorkplaceType, type CartTicket, 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, CreateApiKeyDto, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventPromoCodeDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, DEFAULT_BILLING_PARAMETERS, DEFAULT_STRIPE_FEES, DEFAULT_TONIGHTPASS_FEES, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, type ExchangeRates, type ExcludeBase, type ExternalContact, type ExternalOffer, type ExternalSource, type FeedEndpoints, type FeedPost, FeedType, type FileObject, type GeoPoint, GeoPointDto, type GeoSearchAggregation, GoogleOneTapDto, type Health, type HealthEndpoints, type HealthMemory, Language, type Location$1 as Location, MINIMUM_CHARGEABLE_AMOUNT, MINIMUM_CHARGE_AMOUNTS, MINIMUM_COMMISSION, MemoryCacheStore, type MemorySnapshot, type NearbyCitiesOptions, type NotificationEndpoints, OAuth2Provider, type Order, type OrderDiscount, type OrderEndpoints, type OrderItem, type OrderTotals, OrderTransferStatus, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationBillingBalance, type OrganizationBillingPendingRevenue, type OrganizationCustomer, type OrganizationCustomerMetadata, type OrganizationCustomersEndpoints, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventCalendar, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventNearbyOptions, type OrganizationEventOrderEndpoints, type OrganizationEventPromoCode, type OrganizationEventPromoCodeEndpoints, OrganizationEventPromoCodeType, type OrganizationEventPromoCodeValidation, type OrganizationEventRequestResponse, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, type OrganizationEventViewEndpoints, type OrganizationEventViewOptions, type OrganizationEventViewResult, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberRolePower, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationNotification, type OrganizationNotificationBase, type OrganizationNotificationEndpoints, OrganizationNotificationType, type OrganizationNotificationWithActor, type OrganizationOrder, type OrganizationOrdersEndpoints, OrganizationPayoutStatus, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type PlaceCity, type PlaceCountry, type PlaceEndpoints, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type ProxyEndpoints, type ProxyMediaOptions, type ProxyMediaResponse, type QueryParams, REGEX, ROADMAP_REACTIONS, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, type RoadmapEndpoints, type RoadmapFeature, RoadmapFeatureStatus, type RoadmapReaction, type RoadmapReactionCounts, type SSEEndpoints, type SearchOrganizationEventsOptions, type SearchPlacesOptions, type SearchProfilesOptions, SignInUserDto, type SitemapCounts, type SitemapEndpoints, type StringifiedQuery, type StringifiedQueryValue, type StripeFees, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TonightPassFees, type TypingStartEvent, type TypingStopEvent, UpdateApiKeyDto, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventPromoCodeDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingTicketEndpoints, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserCustomer, type UserCustomerMetadata, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserOAuthProvider, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, type UserPostViewOptions, type UserPostViewResult, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, UserRolePower, type UserToken, UserTokenType, VerifyEmailConfirmDto, type VerifyEmailResponse, type WeatherEndpoints, type WeatherForecast, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, ZERO_DECIMAL_CURRENCIES, apiKeys, applyMinimumChargeableAmount, auth, buildFileFormData, calculateOrderTotal, calculateTicketFee, calculateTicketFeeWithCurrency, careers, channels, channelsWS, currencies, feed, fromSmallestUnit, getMinimumChargeableAmount, health, isBrowser, isMemberRoleAtLeast, isZeroDecimalCurrency, normalizeAddress, notifications, orders, organizations, places, profiles, request, roadmap, sdk, sitemaps, toSmallestUnit, users };
|
|
2871
|
+
export { type APIRequestOptions, type APIResponse, AcceptOrganizationMemberInvitationDto, AddParticipantDto, AddReactionDto, type AddRoadmapReactionBody, type AnalyticsOptions, type ApiKey, type ApiKeyEndpoints, ApiKeyTier, ApiKeyType, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, type Artist, type ArtistEndpoints, type ArtistSoundcloudBadges, type ArtistSoundcloudData, type ArtistSoundcloudWebProfile, type ArtistTonightPassData, type ArtistTrack, type ArtistWithTracks, AtLeastOneMedia, AtLeastOneMediaConstraint, AtLeastOneMediaOnUpdate, AtLeastOneMediaOnUpdateConstraint, type AuthEndpoints, AuthFlow, type AuthMethod, type AuthResponse, type Base, BaseOrganizationEventDto, type BaseProfile, type BaseProfileMetadata, BillingLocality, type BillingParameters, type Body, type CacheEntry, CacheManager, type CacheOptions, type CacheStore, type CareerEndpoints, type CareersCategoriesOptions, type CareersCategory, type CareersEmploymentType, type CareersEmploymentTypesOptions, type CareersJob, CareersJobStatus, type CareersJobsOptions, type CareersOffice, type CareersOfficesOptions, CareersRemoteType, CareersWorkplaceType, type CartTicket, 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, CreateApiKeyDto, CreateChannelDto, CreateChannelMessageDto, CreateLocationDto, CreateOrganizationDto, CreateOrganizationEventDto, type CreateOrganizationEventInput, CreateOrganizationEventOrderDto, CreateOrganizationEventPromoCodeDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, type CreateOrganizationEventTicketInput, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateOrganizationMemberInvitationLinkDto, CreateUserDto, CreateUserIdentityDto, CreateUserPostCommentDto, CreateUserPostDto, CreateUserPostRepostDto, type CurrenciesEndpoints, Currency, type CurrencyConversion, type CurrencyConversionResult, DEFAULT_API_URL, DEFAULT_BILLING_PARAMETERS, DEFAULT_STRIPE_FEES, DEFAULT_TONIGHTPASS_FEES, type DeepPartial, type Distance, type Endpoint, type Endpoints, ErrorType, type ErroredAPIResponse, type EventAnalyticsOptions, EventArtistDto, type EventArtistRef, type ExchangeRates, type ExcludeBase, type ExternalContact, type ExternalOffer, type ExternalSource, type FeedEndpoints, type FeedPost, FeedType, type FileObject, type GeoPoint, GeoPointDto, type GeoSearchAggregation, type GetArtistOptions, GoogleOneTapDto, type Health, type HealthEndpoints, type HealthMemory, Language, type ListArtistEventsOptions, type ListPlaceCountriesOptions, type Location$1 as Location, MINIMUM_CHARGEABLE_AMOUNT, MINIMUM_CHARGE_AMOUNTS, MINIMUM_COMMISSION, MemoryCacheStore, type MemorySnapshot, type NearbyCitiesOptions, type NotificationEndpoints, OAuth2Provider, type Order, type OrderDiscount, type OrderEndpoints, type OrderItem, type OrderTotals, OrderTransferStatus, type Organization, type OrganizationAnalyticsEndpoints, type OrganizationAnalyticsOverview, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationBillingBalance, type OrganizationBillingPendingRevenue, type OrganizationCustomer, type OrganizationCustomerMetadata, type OrganizationCustomersEndpoints, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventAnalytics, type OrganizationEventArrayOptions, type OrganizationEventCalendar, type OrganizationEventEndpoints, OrganizationEventFileType, type OrganizationEventNearbyOptions, type OrganizationEventOrderEndpoints, type OrganizationEventPromoCode, type OrganizationEventPromoCodeEndpoints, OrganizationEventPromoCodeType, type OrganizationEventPromoCodeValidation, type OrganizationEventRequestResponse, OrganizationEventStatus, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, type OrganizationEventViewEndpoints, type OrganizationEventViewOptions, type OrganizationEventViewResult, OrganizationEventVisibilityType, OrganizationFileType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberRolePower, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationNotification, type OrganizationNotificationBase, type OrganizationNotificationEndpoints, OrganizationNotificationType, type OrganizationNotificationWithActor, type OrganizationOrder, type OrganizationOrdersEndpoints, OrganizationPayoutStatus, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationToken, OrganizationTokenType, type PathsFor, type PlaceCity, type PlaceCountry, type PlaceEndpoints, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, type PromisedResponse, type ProxyEndpoints, type ProxyMediaOptions, type ProxyMediaResponse, type QueryParams, REGEX, ROADMAP_REACTIONS, RecoveryDto, RecoveryResetDto, type RecoveryResponse, ReportChannelMessageDto, type Response, type ResponseFor, type RoadmapEndpoints, type RoadmapFeature, RoadmapFeatureStatus, type RoadmapReaction, type RoadmapReactionCounts, type SSEEndpoints, type SearchArtistsOptions, type SearchOrganizationEventsOptions, type SearchPlacesOptions, type SearchProfilesOptions, SignInUserDto, type SitemapCounts, type SitemapEndpoints, type StringifiedQuery, type StringifiedQueryValue, type StripeFees, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, type TonightPassFees, type TypingStartEvent, type TypingStopEvent, UpdateApiKeyDto, UpdateChannelDto, UpdateChannelMessageDto, UpdateLocationDto, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventPromoCodeDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, UpdateUserPostCommentDto, UpdateUserPostDto, type User, type UserBooking, type UserBookingEndpoints, type UserBookingTicket, type UserBookingTicketEndpoints, type UserBookingWithoutTickets, type UserChannelCountOptions, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserCustomer, type UserCustomerMetadata, type UserEndpoints, UserFileType, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserNotification, type UserNotificationBase, type UserNotificationEndpoints, type UserNotificationFollow, UserNotificationType, type UserOAuthProvider, type UserPost, type UserPostComment, type UserPostCommentEndpoints, type UserPostEndpoints, type UserPostMedia, type UserPostMediaEndpoints, UserPostMediaType, type UserPostRepost, type UserPostRepostEndpoints, type UserPostViewEndpoints, type UserPostViewOptions, type UserPostViewResult, UserPostVisibility, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, UserRolePower, type UserToken, UserTokenType, VerifyEmailConfirmDto, type VerifyEmailResponse, type WeatherEndpoints, type WeatherForecast, WebSocketClient, type WebSocketClientOptions, type WebSocketConnectOptions, type WebSocketEndpoint, type WebSocketEndpoints, type WebSocketEvent, type WebSocketEventHandler, type WebSocketOptionsFor, type WebSocketPath, type WebSocketPaths, type WebSocketPathsFor, type WebhookEndpoints, ZERO_DECIMAL_CURRENCIES, apiKeys, applyMinimumChargeableAmount, artists, auth, buildFileFormData, calculateOrderTotal, calculateTicketFee, calculateTicketFeeWithCurrency, careers, channels, channelsWS, currencies, feed, fromSmallestUnit, getMinimumChargeableAmount, health, isBrowser, isMemberRoleAtLeast, isZeroDecimalCurrency, normalizeAddress, notifications, orders, organizations, places, profiles, request, roadmap, sdk, sitemaps, toSmallestUnit, users };
|