tonightpass 0.0.70 → 0.0.72
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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +33 -18
- package/dist/index.d.ts +33 -18
- package/dist/index.js +16 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/rest/types/organizations/index.ts +2 -8
- package/src/rest/types/profiles/index.ts +37 -5
- package/src/rest/types/users/index.ts +2 -15
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
|
|
2
|
-
> tonightpass@0.0.
|
|
2
|
+
> tonightpass@0.0.72 build /home/runner/work/tonightpass/tonightpass/packages/node
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
-
[34mCLI[39m tsup v8.
|
|
7
|
+
[34mCLI[39m tsup v8.3.0
|
|
8
8
|
[34mCLI[39m Using tsup config: /home/runner/work/tonightpass/tonightpass/packages/node/tsup.config.ts
|
|
9
9
|
[34mCLI[39m Target: esnext
|
|
10
10
|
[34mCJS[39m Build start
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
21
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
13
|
+
[32mCJS[39m [1mdist/index.js [22m[32m26.89 KB[39m
|
|
14
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m83.79 KB[39m
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 573ms
|
|
16
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m22.94 KB[39m
|
|
17
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m83.61 KB[39m
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 574ms
|
|
19
|
+
[32mDTS[39m ⚡️ Build success in 3928ms
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m43.20 KB[39m
|
|
21
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m43.20 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# tonightpass
|
|
2
2
|
|
|
3
|
+
## 0.0.72
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`09d99c6`](https://github.com/tonightpass/tonightpass/commit/09d99c6e7d56323559c9750607c5f55baee9b7da) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update profile metadata types
|
|
8
|
+
|
|
9
|
+
## 0.0.71
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`fc82c2e`](https://github.com/tonightpass/tonightpass/commit/fc82c2ed21e563cd60b0e3f6e5c550eac2a865a0) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Update profile metadata types
|
|
14
|
+
|
|
3
15
|
## 0.0.70
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -58,17 +58,12 @@ type UserIdentifier = {
|
|
|
58
58
|
username: string;
|
|
59
59
|
[key: string]: string | undefined;
|
|
60
60
|
};
|
|
61
|
-
type UserIdentity =
|
|
61
|
+
type UserIdentity = UserProfile & {
|
|
62
62
|
firstName: string;
|
|
63
63
|
lastName: string;
|
|
64
64
|
fullName: string;
|
|
65
65
|
gender: UserIdentityGender;
|
|
66
66
|
birthDate: Date;
|
|
67
|
-
metadata: ProfileMetadata & {
|
|
68
|
-
followingCount: number;
|
|
69
|
-
hasPassPlus: boolean;
|
|
70
|
-
idValid: boolean;
|
|
71
|
-
};
|
|
72
67
|
};
|
|
73
68
|
declare enum UserRole {
|
|
74
69
|
User = "user",
|
|
@@ -366,13 +361,8 @@ type OrganizationBilling = {
|
|
|
366
361
|
account: string;
|
|
367
362
|
};
|
|
368
363
|
type OrganizationBillingAccount = Stripe__default.Account;
|
|
369
|
-
type OrganizationIdentity =
|
|
364
|
+
type OrganizationIdentity = OrganizationProfile & {
|
|
370
365
|
socialLinks: OrganizationSocialLink[];
|
|
371
|
-
metadata: ProfileMetadata & {
|
|
372
|
-
eventsCount: number;
|
|
373
|
-
viewsCount: number;
|
|
374
|
-
membersCount: number;
|
|
375
|
-
};
|
|
376
366
|
};
|
|
377
367
|
type OrganizationSocialLink = {
|
|
378
368
|
type: OrganizationSocialType;
|
|
@@ -388,8 +378,11 @@ declare enum OrganizationSocialType {
|
|
|
388
378
|
}
|
|
389
379
|
type OrganizationEndpoints = Endpoint<"GET", "/organizations", Organization[]> | Endpoint<"GET", "/organizations/:organizationSlug", Organization> | Endpoint<"POST", "/organizations", Organization, CreateOrganizationDto> | Endpoint<"PUT", "/organizations/:organizationSlug", Organization, UpdateOrganizationDto> | Endpoint<"DELETE", "/organizations/:organizationSlug", Organization, null> | Endpoint<"GET", "/organizations/:organizationSlug/billing/account", OrganizationBillingAccount> | Endpoint<"GET", "/organizations/:organizationSlug/billing/link", void> | Endpoint<"GET", "/organizations/:organizationSlug/billing/dashboard", void> | OrganizationEventEndpoints | OrganizationMembersEndpoints;
|
|
390
380
|
|
|
391
|
-
|
|
392
|
-
|
|
381
|
+
declare enum ProfileType {
|
|
382
|
+
User = "user",
|
|
383
|
+
Organization = "organization"
|
|
384
|
+
}
|
|
385
|
+
type BaseProfile = {
|
|
393
386
|
type: ProfileType;
|
|
394
387
|
displayName: string;
|
|
395
388
|
description?: string;
|
|
@@ -397,13 +390,35 @@ interface Profile {
|
|
|
397
390
|
bannerUrl?: string;
|
|
398
391
|
metadata: ProfileMetadata;
|
|
399
392
|
createdAt: Date;
|
|
400
|
-
}
|
|
401
|
-
|
|
393
|
+
};
|
|
394
|
+
type UserProfile = BaseProfile & {
|
|
395
|
+
type: ProfileType.User;
|
|
396
|
+
metadata: UserProfileMetadata;
|
|
397
|
+
};
|
|
398
|
+
type OrganizationProfile = BaseProfile & {
|
|
399
|
+
type: ProfileType.Organization;
|
|
400
|
+
metadata: OrganizationProfileMetadata;
|
|
401
|
+
};
|
|
402
|
+
type Profile = UserProfile | OrganizationProfile;
|
|
403
|
+
type BaseProfileMetadata = {
|
|
402
404
|
followersCount: number;
|
|
405
|
+
followingsCount: number;
|
|
406
|
+
isFollower: boolean;
|
|
407
|
+
isFollowing: boolean;
|
|
403
408
|
isBlocked: boolean;
|
|
404
409
|
hasBlocked: boolean;
|
|
405
410
|
canDM: boolean;
|
|
406
|
-
}
|
|
411
|
+
};
|
|
412
|
+
type UserProfileMetadata = BaseProfileMetadata & {
|
|
413
|
+
hasPassPlus: boolean;
|
|
414
|
+
idValid: boolean;
|
|
415
|
+
};
|
|
416
|
+
type OrganizationProfileMetadata = BaseProfileMetadata & {
|
|
417
|
+
eventsCount: number;
|
|
418
|
+
viewsCount: number;
|
|
419
|
+
membersCount: number;
|
|
420
|
+
};
|
|
421
|
+
type ProfileMetadata = UserProfileMetadata | OrganizationProfileMetadata;
|
|
407
422
|
type ProfileEndpoints = Endpoint<"GET", "/profiles/:username", UserIdentity | OrganizationIdentity> | Endpoint<"POST", "/profiles/:username/relationships/follow", void, null> | Endpoint<"POST", "/profiles/:username/relationships/unfollow", void, null>;
|
|
408
423
|
|
|
409
424
|
type WebhookEndpoints = Endpoint<"POST", "/webhooks/stripe", boolean, Stripe__default.Event>;
|
|
@@ -1112,4 +1127,4 @@ declare class TonightPass {
|
|
|
1112
1127
|
|
|
1113
1128
|
declare const isBrowser: boolean;
|
|
1114
1129
|
|
|
1115
|
-
export { type APIRequestOptions, type APIResponse, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, type AuthEndpoints, type Base, type CareersCategory, type CareersEmploymentType, type CareersEndpoints, type CareersJob, type CareersOffice, Client, type ClientOptions, CreateOrganizationDto, CreateOrganizationEventDto, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateUserDto, CreateUserIdentityDto, Currency, DEFAULT_API_URL, type Endpoint, type Endpoints, type ErroredAPIResponse, type ExcludeBase, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationsEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventEndpoints, type OrganizationEventOrderEndpoints, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationSocialLink, OrganizationSocialType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata,
|
|
1130
|
+
export { type APIRequestOptions, type APIResponse, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, type AuthEndpoints, type Base, type BaseProfile, type BaseProfileMetadata, type CareersCategory, type CareersEmploymentType, type CareersEndpoints, type CareersJob, type CareersOffice, Client, type ClientOptions, CreateOrganizationDto, CreateOrganizationEventDto, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateUserDto, CreateUserIdentityDto, Currency, DEFAULT_API_URL, type Endpoint, type Endpoints, type ErroredAPIResponse, type ExcludeBase, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationsEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventEndpoints, type OrganizationEventOrderEndpoints, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationSocialLink, OrganizationSocialType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, REGEX, SignInUserDto, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, type User, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserEndpoints, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, type UserToken, UserTokenType, type WebhookEndpoints, auth, careers, health, isBrowser, notifications, orders, organizations, profiles, request, sdk, users };
|
package/dist/index.d.ts
CHANGED
|
@@ -58,17 +58,12 @@ type UserIdentifier = {
|
|
|
58
58
|
username: string;
|
|
59
59
|
[key: string]: string | undefined;
|
|
60
60
|
};
|
|
61
|
-
type UserIdentity =
|
|
61
|
+
type UserIdentity = UserProfile & {
|
|
62
62
|
firstName: string;
|
|
63
63
|
lastName: string;
|
|
64
64
|
fullName: string;
|
|
65
65
|
gender: UserIdentityGender;
|
|
66
66
|
birthDate: Date;
|
|
67
|
-
metadata: ProfileMetadata & {
|
|
68
|
-
followingCount: number;
|
|
69
|
-
hasPassPlus: boolean;
|
|
70
|
-
idValid: boolean;
|
|
71
|
-
};
|
|
72
67
|
};
|
|
73
68
|
declare enum UserRole {
|
|
74
69
|
User = "user",
|
|
@@ -366,13 +361,8 @@ type OrganizationBilling = {
|
|
|
366
361
|
account: string;
|
|
367
362
|
};
|
|
368
363
|
type OrganizationBillingAccount = Stripe__default.Account;
|
|
369
|
-
type OrganizationIdentity =
|
|
364
|
+
type OrganizationIdentity = OrganizationProfile & {
|
|
370
365
|
socialLinks: OrganizationSocialLink[];
|
|
371
|
-
metadata: ProfileMetadata & {
|
|
372
|
-
eventsCount: number;
|
|
373
|
-
viewsCount: number;
|
|
374
|
-
membersCount: number;
|
|
375
|
-
};
|
|
376
366
|
};
|
|
377
367
|
type OrganizationSocialLink = {
|
|
378
368
|
type: OrganizationSocialType;
|
|
@@ -388,8 +378,11 @@ declare enum OrganizationSocialType {
|
|
|
388
378
|
}
|
|
389
379
|
type OrganizationEndpoints = Endpoint<"GET", "/organizations", Organization[]> | Endpoint<"GET", "/organizations/:organizationSlug", Organization> | Endpoint<"POST", "/organizations", Organization, CreateOrganizationDto> | Endpoint<"PUT", "/organizations/:organizationSlug", Organization, UpdateOrganizationDto> | Endpoint<"DELETE", "/organizations/:organizationSlug", Organization, null> | Endpoint<"GET", "/organizations/:organizationSlug/billing/account", OrganizationBillingAccount> | Endpoint<"GET", "/organizations/:organizationSlug/billing/link", void> | Endpoint<"GET", "/organizations/:organizationSlug/billing/dashboard", void> | OrganizationEventEndpoints | OrganizationMembersEndpoints;
|
|
390
380
|
|
|
391
|
-
|
|
392
|
-
|
|
381
|
+
declare enum ProfileType {
|
|
382
|
+
User = "user",
|
|
383
|
+
Organization = "organization"
|
|
384
|
+
}
|
|
385
|
+
type BaseProfile = {
|
|
393
386
|
type: ProfileType;
|
|
394
387
|
displayName: string;
|
|
395
388
|
description?: string;
|
|
@@ -397,13 +390,35 @@ interface Profile {
|
|
|
397
390
|
bannerUrl?: string;
|
|
398
391
|
metadata: ProfileMetadata;
|
|
399
392
|
createdAt: Date;
|
|
400
|
-
}
|
|
401
|
-
|
|
393
|
+
};
|
|
394
|
+
type UserProfile = BaseProfile & {
|
|
395
|
+
type: ProfileType.User;
|
|
396
|
+
metadata: UserProfileMetadata;
|
|
397
|
+
};
|
|
398
|
+
type OrganizationProfile = BaseProfile & {
|
|
399
|
+
type: ProfileType.Organization;
|
|
400
|
+
metadata: OrganizationProfileMetadata;
|
|
401
|
+
};
|
|
402
|
+
type Profile = UserProfile | OrganizationProfile;
|
|
403
|
+
type BaseProfileMetadata = {
|
|
402
404
|
followersCount: number;
|
|
405
|
+
followingsCount: number;
|
|
406
|
+
isFollower: boolean;
|
|
407
|
+
isFollowing: boolean;
|
|
403
408
|
isBlocked: boolean;
|
|
404
409
|
hasBlocked: boolean;
|
|
405
410
|
canDM: boolean;
|
|
406
|
-
}
|
|
411
|
+
};
|
|
412
|
+
type UserProfileMetadata = BaseProfileMetadata & {
|
|
413
|
+
hasPassPlus: boolean;
|
|
414
|
+
idValid: boolean;
|
|
415
|
+
};
|
|
416
|
+
type OrganizationProfileMetadata = BaseProfileMetadata & {
|
|
417
|
+
eventsCount: number;
|
|
418
|
+
viewsCount: number;
|
|
419
|
+
membersCount: number;
|
|
420
|
+
};
|
|
421
|
+
type ProfileMetadata = UserProfileMetadata | OrganizationProfileMetadata;
|
|
407
422
|
type ProfileEndpoints = Endpoint<"GET", "/profiles/:username", UserIdentity | OrganizationIdentity> | Endpoint<"POST", "/profiles/:username/relationships/follow", void, null> | Endpoint<"POST", "/profiles/:username/relationships/unfollow", void, null>;
|
|
408
423
|
|
|
409
424
|
type WebhookEndpoints = Endpoint<"POST", "/webhooks/stripe", boolean, Stripe__default.Event>;
|
|
@@ -1112,4 +1127,4 @@ declare class TonightPass {
|
|
|
1112
1127
|
|
|
1113
1128
|
declare const isBrowser: boolean;
|
|
1114
1129
|
|
|
1115
|
-
export { type APIRequestOptions, type APIResponse, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, type AuthEndpoints, type Base, type CareersCategory, type CareersEmploymentType, type CareersEndpoints, type CareersJob, type CareersOffice, Client, type ClientOptions, CreateOrganizationDto, CreateOrganizationEventDto, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateUserDto, CreateUserIdentityDto, Currency, DEFAULT_API_URL, type Endpoint, type Endpoints, type ErroredAPIResponse, type ExcludeBase, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationsEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventEndpoints, type OrganizationEventOrderEndpoints, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationSocialLink, OrganizationSocialType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata,
|
|
1130
|
+
export { type APIRequestOptions, type APIResponse, type ArrayFilterOptions, type ArrayOptions, type ArrayPaginationOptions, type ArrayResult, type ArraySortOptions, type AuthEndpoints, type Base, type BaseProfile, type BaseProfileMetadata, type CareersCategory, type CareersEmploymentType, type CareersEndpoints, type CareersJob, type CareersOffice, Client, type ClientOptions, CreateOrganizationDto, CreateOrganizationEventDto, CreateOrganizationEventOrderDto, CreateOrganizationEventStyleDto, CreateOrganizationEventTicketDto, CreateOrganizationIdentityDto, CreateOrganizationMemberDto, CreateUserDto, CreateUserIdentityDto, Currency, DEFAULT_API_URL, type Endpoint, type Endpoints, type ErroredAPIResponse, type ExcludeBase, type Health, type HealthEndpoints, Language, type Location$1 as Location, type NotificationsEndpoints, type Order, type OrderEndpoints, type Organization, type OrganizationBilling, type OrganizationBillingAccount, type OrganizationEndpoints, type OrganizationEvent, type OrganizationEventEndpoints, type OrganizationEventOrderEndpoints, type OrganizationEventStyle, type OrganizationEventStyleEndpoints, OrganizationEventStyleType, type OrganizationEventTicket, OrganizationEventTicketCategory, type OrganizationEventTicketEndpoints, OrganizationEventTicketType, OrganizationEventType, OrganizationEventVisibilityType, type OrganizationIdentity, type OrganizationMember, OrganizationMemberRole, OrganizationMemberStatus, type OrganizationMembersEndpoints, type OrganizationProfile, type OrganizationProfileMetadata, type OrganizationSocialLink, OrganizationSocialType, type PathsFor, type Profile, type ProfileEndpoints, type ProfileMetadata, ProfileType, type PromisedAPIResponse, REGEX, SignInUserDto, type SuccessfulAPIResponse, TonightPass, TonightPassAPIError, UpdateOrganizationDto, UpdateOrganizationEventDto, UpdateOrganizationEventStyleDto, UpdateOrganizationEventTicketDto, UpdateOrganizationIdentityDto, UpdateOrganizationMemberDto, UpdateUserDto, type User, type UserConnection, type UserConnectionClient, type UserConnectionDevice, type UserConnectionOS, type UserEndpoints, type UserIdentifier, type UserIdentity, UserIdentityGender, type UserPreferences, type UserProfile, type UserProfileMetadata, UserRole, type UserToken, UserTokenType, type WebhookEndpoints, auth, careers, health, isBrowser, notifications, orders, organizations, profiles, request, sdk, users };
|
package/dist/index.js
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
require('reflect-metadata');
|
|
4
4
|
var classValidator = require('class-validator');
|
|
5
5
|
var classTransformer = require('class-transformer');
|
|
6
|
-
var
|
|
6
|
+
var Gt = require('redaxios');
|
|
7
7
|
var pathcat = require('pathcat');
|
|
8
8
|
|
|
9
9
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var Gt__default = /*#__PURE__*/_interopDefault(Gt);
|
|
12
12
|
|
|
13
|
-
var ft=Object.defineProperty;var o=(e,t)=>ft(e,"name",{value:t,configurable:!0});var de="https://api.tonightpass.com";var m={EMAIL:/^[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$/i,NAME:/^[a-zA-Z0-9 ]+$/,SLUG:/^[a-z0-9_.]+$/,USERNAME:/^(?!\.)(?!.*\.\.)(?!.*\.$)[a-z0-9_.]{3,48}$/,PHONE:/^\+(?:[0-9] ?){6,14}[0-9]$/,PASSWORD:/^(?=.*[A-Z])(?=.*[a-z])(?=.*[\d\W]).{8,}$/,PASSWORD_MIN_LENGTH:/^.{8,}$/,PASSWORD_UPPERCASE:/^(?=.*[A-Z])/,PASSWORD_LOWERCASE:/^(?=.*[a-z])/,PASSWORD_NUMBER_SPECIAL:/^(?=.*[\d\W])/,IMAGE_URL:/^(https:\/\/|http:\/\/)(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-z]{2,6}([-a-zA-Z0-9@:%_\+.~#?&//=]*)\.(jpg|jpeg|gif|png|bmp|tiff|tga|svg)$/i};function w(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(w,"_ts_decorate");function R(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(R,"_ts_metadata");var M=class{static{o(this,"CreateOrganizationDto");}organizationSlug;identity;members;location};w([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(1,48),R("design:type",String)],M.prototype,"organizationSlug",void 0);w([classValidator.IsObject(),R("design:type",typeof S>"u"?Object:S)],M.prototype,"identity",void 0);w([classValidator.IsArray(),R("design:type",Array)],M.prototype,"members",void 0);w([classValidator.IsOptional(),classValidator.IsObject(),R("design:type",typeof Location>"u"?Object:Location)],M.prototype,"location",void 0);var S=class{static{o(this,"CreateOrganizationIdentityDto");}displayName;description;avatarUrl;bannerUrl;socialLinks};w([classValidator.IsString(),classValidator.IsNotEmpty(),classValidator.Length(1,32),R("design:type",String)],S.prototype,"displayName",void 0);w([classValidator.IsString(),classValidator.Length(16,1024),classValidator.IsOptional(),R("design:type",String)],S.prototype,"description",void 0);w([classValidator.IsUrl({protocols:["http","https"]}),R("design:type",String)],S.prototype,"avatarUrl",void 0);w([classValidator.IsOptional(),classValidator.IsUrl({protocols:["http","https"]}),R("design:type",String)],S.prototype,"bannerUrl",void 0);w([classValidator.IsOptional(),classValidator.IsArray(),R("design:type",Array)],S.prototype,"socialLinks",void 0);function A(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(A,"_ts_decorate");function I(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(I,"_ts_metadata");var B=class{static{o(this,"UpdateOrganizationDto");}slug;identity;members;location};A([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.USERNAME),I("design:type",String)],B.prototype,"slug",void 0);A([classValidator.IsObject(),classValidator.IsOptional(),I("design:type",typeof j>"u"?Object:j)],B.prototype,"identity",void 0);A([classValidator.IsOptional(),classValidator.IsArray(),I("design:type",Array)],B.prototype,"members",void 0);A([classValidator.IsOptional(),classValidator.IsObject(),I("design:type",typeof Location>"u"?Object:Location)],B.prototype,"location",void 0);var j=class{static{o(this,"UpdateOrganizationIdentityDto");}displayName;description;avatarUrl;bannerUrl;socialLinks};A([classValidator.IsString(),classValidator.IsNotEmpty(),classValidator.Length(1,32),classValidator.IsOptional(),I("design:type",String)],j.prototype,"displayName",void 0);A([classValidator.IsString(),classValidator.Length(16,1024),classValidator.IsOptional(),I("design:type",String)],j.prototype,"description",void 0);A([classValidator.IsUrl({protocols:["http","https"]}),classValidator.IsOptional(),I("design:type",String)],j.prototype,"avatarUrl",void 0);A([classValidator.IsOptional(),classValidator.IsUrl({protocols:["http","https"]}),I("design:type",String)],j.prototype,"bannerUrl",void 0);A([classValidator.IsOptional(),classValidator.IsArray(),I("design:type",Array)],j.prototype,"socialLinks",void 0);var ve=class{static{o(this,"CreateOrganizationEventOrderDto");}cart};var C=class{static{o(this,"CreateOrganizationEventStyleDto");}type;emoji;name};var xe=class extends C{static{o(this,"UpdateOrganizationEventStyleDto");}};exports.OrganizationEventTicketType = void 0;(function(e){e.ETicket="e-ticket",e.Other="other";})(exports.OrganizationEventTicketType||(exports.OrganizationEventTicketType={}));exports.OrganizationEventTicketCategory = void 0;(function(e){e.Entry="entry",e.Package="package",e.Meal="meal",e.Drink="drink",e.Parking="parking",e.Accommodation="accommodation",e.Camping="camping",e.Locker="locker",e.Shuttle="shuttle",e.Other="other";})(exports.OrganizationEventTicketCategory||(exports.OrganizationEventTicketCategory={}));exports.OrganizationEventStyleType = void 0;(function(e){e.Music="music",e.Dress="dress",e.Sport="sport",e.Food="food",e.Art="art";})(exports.OrganizationEventStyleType||(exports.OrganizationEventStyleType={}));exports.OrganizationEventType = void 0;(function(e){e.Clubbing="clubbing",e.Concert="concert",e.Afterwork="afterwork",e.DancingLunch="dancing_lunch",e.Diner="diner",e.Garden="garden",e.AfterBeach="after_beach",e.Festival="festival",e.Spectacle="spectacle",e.Cruise="cruise",e.OutsideAnimation="outside_animation",e.Sport="sport",e.Match="match",e.Seminar="seminar",e.Conference="conference",e.WellnessDay="wellness_day",e.Workshop="workshop",e.TradeFair="trade_fair",e.ConsumerShow="consumer_show",e.Membership="membership";})(exports.OrganizationEventType||(exports.OrganizationEventType={}));exports.OrganizationEventVisibilityType = void 0;(function(e){e.Public="public",e.Unlisted="unlisted",e.Private="private";})(exports.OrganizationEventVisibilityType||(exports.OrganizationEventVisibilityType={}));exports.OrganizationMemberStatus = void 0;(function(e){e.Pending="pending",e.Accepted="accepted",e.Rejected="rejected";})(exports.OrganizationMemberStatus||(exports.OrganizationMemberStatus={}));exports.OrganizationMemberRole = void 0;(function(e){e.Member="member",e.Manager="manager",e.Admin="admin",e.Owner="owner";})(exports.OrganizationMemberRole||(exports.OrganizationMemberRole={}));exports.OrganizationSocialType = void 0;(function(e){e.Facebook="facebook",e.Twitter="twitter",e.Instagram="instagram",e.Linkedin="linkedin",e.Youtube="youtube",e.Website="website";})(exports.OrganizationSocialType||(exports.OrganizationSocialType={}));exports.UserTokenType = void 0;(function(e){e.Authentication="authentication",e.OrganizationInvite="organization_invite",e.PasswordRecovery="password_recovery",e.EmailValidation="email_validation",e.PhoneValidation="phone_validation";})(exports.UserTokenType||(exports.UserTokenType={}));exports.UserRole = void 0;(function(e){e.User="user",e.Developer="developer",e.Admin="admin";})(exports.UserRole||(exports.UserRole={}));exports.UserIdentityGender = void 0;(function(e){e.Male="male",e.Female="female",e.NonBinary="non-binary";})(exports.UserIdentityGender||(exports.UserIdentityGender={}));exports.Currency = void 0;(function(e){e.EUR="EUR",e.USD="USD",e.GBP="GBP";})(exports.Currency||(exports.Currency={}));exports.Language = void 0;(function(e){e.FR="fr",e.EN="en";})(exports.Language||(exports.Language={}));function u(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(u,"_ts_decorate");function g(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(g,"_ts_metadata");var f=class{static{o(this,"CreateOrganizationEventTicketDto");}name;description;price;quantity;type;category;currency;isVisible;isFeesIncluded;startAt;endAt};u([classValidator.IsString(),classValidator.Length(1,128),g("design:type",String)],f.prototype,"name",void 0);u([classValidator.IsString(),classValidator.Length(1,1024),g("design:type",String)],f.prototype,"description",void 0);u([classValidator.IsNumber(),classValidator.Min(0),g("design:type",Number)],f.prototype,"price",void 0);u([classValidator.IsNumber(),classValidator.Min(0),g("design:type",Number)],f.prototype,"quantity",void 0);u([classValidator.IsEnum(exports.OrganizationEventTicketType),g("design:type",typeof exports.OrganizationEventTicketType>"u"?Object:exports.OrganizationEventTicketType)],f.prototype,"type",void 0);u([classValidator.IsEnum(exports.OrganizationEventTicketCategory),g("design:type",typeof exports.OrganizationEventTicketCategory>"u"?Object:exports.OrganizationEventTicketCategory)],f.prototype,"category",void 0);u([classValidator.IsEnum(exports.Currency),g("design:type",typeof exports.Currency>"u"?Object:exports.Currency)],f.prototype,"currency",void 0);u([classValidator.IsBoolean(),g("design:type",Boolean)],f.prototype,"isVisible",void 0);u([classValidator.IsBoolean(),g("design:type",Boolean)],f.prototype,"isFeesIncluded",void 0);u([classValidator.IsDateString(),classValidator.IsOptional(),g("design:type",typeof Date>"u"?Object:Date)],f.prototype,"startAt",void 0);u([classValidator.IsDateString(),classValidator.IsOptional(),g("design:type",typeof Date>"u"?Object:Date)],f.prototype,"endAt",void 0);var Oe=class extends f{static{o(this,"UpdateOrganizationEventTicketDto");}};function U(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(U,"_ts_decorate");function D(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(D,"_ts_metadata");var y=class{static{o(this,"CreateOrganizationEventDto");}title;slug;description;type;visibility;flyers;trailers;location;tickets;styles;startAt;endAt};U([classValidator.IsString(),classValidator.Length(1,64),D("design:type",String)],y.prototype,"title",void 0);U([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.SLUG),D("design:type",String)],y.prototype,"slug",void 0);U([classValidator.IsString(),classValidator.Length(16,2048),D("design:type",String)],y.prototype,"description",void 0);U([classValidator.IsEnum(exports.OrganizationEventType),D("design:type",typeof exports.OrganizationEventType>"u"?Object:exports.OrganizationEventType)],y.prototype,"type",void 0);U([classValidator.IsEnum(exports.OrganizationEventVisibilityType),D("design:type",typeof exports.OrganizationEventVisibilityType>"u"?Object:exports.OrganizationEventVisibilityType)],y.prototype,"visibility",void 0);U([classValidator.IsDateString(),D("design:type",typeof Date>"u"?Object:Date)],y.prototype,"startAt",void 0);U([classValidator.IsDateString(),D("design:type",typeof Date>"u"?Object:Date)],y.prototype,"endAt",void 0);var Be=class extends y{static{o(this,"UpdateOrganizationEventDto");}};function Ge(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(Ge,"_ts_decorate");function Fe(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(Fe,"_ts_metadata");var J=class{static{o(this,"CreateOrganizationMemberDto");}user;role};Ge([classValidator.IsString(),classValidator.IsNotEmpty(),Fe("design:type",String)],J.prototype,"user",void 0);Ge([classValidator.IsEnum(exports.OrganizationMemberRole),classValidator.IsNotEmpty(),Fe("design:type",typeof exports.OrganizationMemberRole>"u"?Object:exports.OrganizationMemberRole)],J.prototype,"role",void 0);function xt(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(xt,"_ts_decorate");function St(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(St,"_ts_metadata");var ie=class{static{o(this,"UpdateOrganizationMemberDto");}role};xt([classValidator.IsEnum(exports.OrganizationMemberRole),classValidator.IsNotEmpty(),St("design:type",typeof exports.OrganizationMemberRole>"u"?Object:exports.OrganizationMemberRole)],ie.prototype,"role",void 0);function N(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(N,"_ts_decorate");function E(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(E,"_ts_metadata");var pe=class{static{o(this,"CreateUserDto");}identifier;identity;password};N([classValidator.IsString(),classValidator.Matches(m.PASSWORD,{message:"Password must be secure."}),E("design:type",String)],pe.prototype,"password",void 0);var fe=class{static{o(this,"CreateUserIdentifierDto");}email;phoneNumber;username};N([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsEmail(),E("design:type",String)],fe.prototype,"email",void 0);N([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsPhoneNumber(),E("design:type",String)],fe.prototype,"phoneNumber",void 0);N([classValidator.IsString(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.USERNAME),E("design:type",String)],fe.prototype,"username",void 0);var z=class{static{o(this,"CreateUserIdentityDto");}firstName;lastName;gender;avatarUrl;birthDate};N([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"First name must be composed of letters only"}),E("design:type",String)],z.prototype,"firstName",void 0);N([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"Last name must be composed of letters only"}),E("design:type",String)],z.prototype,"lastName",void 0);N([classValidator.IsEnum(exports.UserIdentityGender),E("design:type",typeof exports.UserIdentityGender>"u"?Object:exports.UserIdentityGender)],z.prototype,"gender",void 0);N([classValidator.IsOptional(),classValidator.IsUrl({protocols:["http","https"]}),E("design:type",String)],z.prototype,"avatarUrl",void 0);N([classValidator.IsOptional(),classValidator.IsDateString(),E("design:type",typeof Date>"u"?Object:Date)],z.prototype,"birthDate",void 0);var qe=class{static{o(this,"SignInUserDto");}identifier;password};function c(e,t,r,n){var i=arguments.length,s=i<3?t:n===null?n=Object.getOwnPropertyDescriptor(t,r):n,p;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")s=Reflect.decorate(e,t,r,n);else for(var a=e.length-1;a>=0;a--)(p=e[a])&&(s=(i<3?p(s):i>3?p(t,r,s):p(t,r))||s);return i>3&&s&&Object.defineProperty(t,r,s),s}o(c,"_ts_decorate");function l(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(l,"_ts_metadata");var Z=class{static{o(this,"UpdateUserDto");}identifier;identity;password};c([classValidator.IsOptional(),classValidator.IsObject(),classValidator.ValidateNested(),classTransformer.Type(()=>V),l("design:type",typeof V>"u"?Object:V)],Z.prototype,"identifier",void 0);c([classValidator.IsOptional(),classValidator.IsObject(),classValidator.ValidateNested(),classTransformer.Type(()=>h),l("design:type",typeof h>"u"?Object:h)],Z.prototype,"identity",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.MinLength(8),classValidator.MaxLength(128),l("design:type",String)],Z.prototype,"password",void 0);var V=class{static{o(this,"UpdateUserIdentifierDto");}email;phoneNumber;username};c([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsEmail(),l("design:type",String)],V.prototype,"email",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsPhoneNumber(),l("design:type",String)],V.prototype,"phoneNumber",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.USERNAME),l("design:type",String)],V.prototype,"username",void 0);var h=class{static{o(this,"UpdateUserIdentityDto");}firstName;lastName;displayName;description;avatarUrl;bannerUrl;gender;birthDate};c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"First name must be composed of letters only"}),l("design:type",String)],h.prototype,"firstName",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"Last name must be composed of letters only"}),l("design:type",String)],h.prototype,"lastName",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(1,32),l("design:type",String)],h.prototype,"displayName",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(1,128),l("design:type",String)],h.prototype,"description",void 0);c([classValidator.IsOptional(),classValidator.IsUrl(),l("design:type",Object)],h.prototype,"avatarUrl",void 0);c([classValidator.IsOptional(),classValidator.IsUrl(),l("design:type",Object)],h.prototype,"bannerUrl",void 0);c([classValidator.IsOptional(),classValidator.IsEnum(exports.UserIdentityGender),l("design:type",typeof exports.UserIdentityGender>"u"?Object:exports.UserIdentityGender)],h.prototype,"gender",void 0);c([classValidator.IsOptional(),classValidator.IsDateString(),l("design:type",typeof Date>"u"?Object:Date)],h.prototype,"birthDate",void 0);var x=typeof window<"u";var Gt=Bt__default.default.create({headers:{"Content-Type":"application/json",Accept:"application/json",...!x&&{"User-Agent":"tonightpass-api-client"}},responseType:"json",transformRequest:[function(e){return JSON.stringify(e)}],withCredentials:x}),Ze=o(async(e,t)=>Gt(e,{...t}).then(n=>n).catch(n=>{throw n.data||console.error(n),n.data}),"request");var le=class extends Error{static{o(this,"TonightPassAPIError");}response;data;status;constructor(t,r){super(r.message),this.response=t,this.data=r,this.status=t.status;}},K=class{static{o(this,"Client");}options;url;constructor(t){this.options=t,this.url=(r,n)=>{let i=this.options.baseURL||de;return pathcat.pathcat(i,r,n)};}setOptions(t){this.options=t;}async get(t,r,n){return this.requester("GET",t,void 0,r,n)}async post(t,r,n,i){return this.requester("POST",t,r,n,i)}async put(t,r,n,i){return this.requester("PUT",t,r,n,i)}async patch(t,r,n,i){return this.requester("PATCH",t,r,n,i)}async delete(t,r,n,i){return this.requester("DELETE",t,r,n,i)}async requester(t,r,n,i={},s={}){let p=this.url(r,i);if(n!==void 0&&t==="GET")throw new Error("Cannot send a GET request with a body");let a=await Ze(p,{method:t,data:n,...s}),Q=a.data;if(!Q.success)throw new le(a,Q);return Q.data}};function L(e){return e}o(L,"sdk");var He=e=>({signIn:o(async t=>e.post("/auth/sign-in",t),"signIn"),signUp:o(async t=>e.post("/auth/sign-up",t),"signUp"),signOut:o(async()=>e.post("/auth/sign-out",null),"signOut"),refreshToken:o(async()=>e.post("/auth/refresh-token",null),"refreshToken"),oauth2:{google:{connect:o(t=>{if(x)window.location.href=e.url("/oauth2/google",t||{});else throw new Error("Google OAuth2 is only available in the browser")},"connect")},twitter:{connect:o(t=>{if(x)window.location.href=e.url("/oauth2/twitter",t||{});else throw new Error("Twitter OAuth2 is only available in the browser")},"connect")},facebook:{connect:o(t=>{if(x)window.location.href=e.url("/oauth2/facebook",t||{});else throw new Error("Facebook OAuth2 is only available in the browser")},"connect")}}});var Ce=e=>({categories:{getAll:o(async t=>e.get("/careers/categories",t),"getAll")},employmentTypes:{getAll:o(async t=>e.get("/careers/employmentTypes",t),"getAll")},jobs:{getAll:o(async t=>e.get("/careers/jobs",t),"getAll"),get:o(async t=>e.get("/careers/jobs/:jobId",{jobId:t}),"get")},offices:{getAll:o(async t=>e.get("/careers/offices",t),"getAll")}});var Je=e=>({getAll:o(async()=>e.get("/health"),"getAll"),database:o(async()=>e.get("/health/database"),"database"),http:o(async()=>e.get("/health/http"),"http")});var Ye=e=>({getAll:o(async t=>e.get("/orders",t),"getAll"),get:o(async t=>e.get("/orders/:orderId",{orderId:t}),"get")});var Ke=o(e=>({account:o(async t=>e.get("/organizations/:organizationSlug/billing/account",{organizationSlug:t}),"account"),link:o(t=>{if(x)window.location.href=e.url("/organizations/:organizationSlug/billing/link",{organizationSlug:t});else throw new Error("Billing link is only available in the browser")},"link"),dashboard:o(t=>{if(x)window.location.href=e.url("/organizations/:organizationSlug/billing/dashboard",{organizationSlug:t});else throw new Error("Billing dashboard is only available in the browser")},"dashboard")}),"organizationsBilling");var Qe=o(e=>({create:o(async(t,r,n)=>e.post("/organizations/:organizationSlug/events/:eventSlug/orders",n,{organizationSlug:t,eventSlug:r}),"create")}),"organizationsEventsOrders");var Te=o(e=>({getAll:o(async()=>e.get("/organizations/events/styles"),"getAll"),get:o(async t=>e.get("/organizations/events/styles/:styleSlug",{styleSlug:t}),"get"),create:o(async t=>e.post("/organizations/events/styles",t),"create"),update:o(async(t,r)=>e.put("/organizations/events/styles/:styleSlug",r,{styleSlug:t}),"update"),delete:o(async t=>e.delete("/organizations/events/styles/:styleSlug",null,{styleSlug:t}),"delete")}),"organizationsEventsStyles");var et=o(e=>({getAll:o(async(t,r)=>e.get("/organizations/:organizationSlug/events/:eventSlug/tickets",{organizationSlug:t,eventSlug:r}),"getAll"),get:o(async(t,r,n)=>e.get("/organizations/:organizationSlug/events/:eventSlug/tickets/:ticketId",{organizationSlug:t,eventSlug:r,ticketId:n}),"get"),create:o(async(t,r,n)=>e.post("/organizations/:organizationSlug/events/:eventSlug/tickets",n,{organizationSlug:t,eventSlug:r}),"create"),update:o(async(t,r,n,i)=>e.put("/organizations/:organizationSlug/events/:eventSlug/tickets/:ticketId",i,{organizationSlug:t,eventSlug:r,ticketId:n}),"update"),delete:o(async(t,r,n)=>e.delete("/organizations/:organizationSlug/events/:eventSlug/tickets/:ticketId",null,{organizationSlug:t,eventSlug:r,ticketId:n}),"delete")}),"organizationsEventsTickets");var tt=o(e=>({getAll:o(async(t,r)=>t?e.get("/organizations/:organizationSlug/events",{organizationSlug:t,...r}):e.get("/organizations/events",r),"getAll"),getSuggestions:o(async t=>e.get("/organizations/events/suggestions",t),"getSuggestions"),getNearby:o(async t=>e.get("/organizations/events/nearby",t),"getNearby"),get:o(async(t,r)=>e.get("/organizations/:organizationSlug/events/:eventSlug",{organizationSlug:t,eventSlug:r}),"get"),create:o(async(t,r)=>e.post("/organizations/:organizationSlug/events",r,{organizationSlug:t}),"create"),update:o(async(t,r,n)=>e.put("/organizations/:organizationSlug/events/:eventSlug",n,{organizationSlug:t,eventSlug:r}),"update"),delete:o(async(t,r)=>e.delete("/organizations/:organizationSlug/events/:eventSlug",null,{organizationSlug:t,eventSlug:r}),"delete"),orders:Qe(e),styles:Te(e),tickets:et(e)}),"organizationsEvents");var ot=o(e=>({getAll:o(async()=>e.get("/organizations/members"),"getAll"),delete:o(async t=>e.delete("/organizations/members/:memberId",null,{memberId:t}),"delete")}),"organizationsMembers");var rt=e=>({getAll:o(async()=>e.get("/organizations"),"getAll"),get:o(async t=>e.get("/organizations/:organizationSlug",{organizationSlug:t}),"get"),create:o(async t=>e.post("/organizations",t),"create"),update:o(async(t,r)=>e.put("/organizations/:organizationSlug",r,{organizationSlug:t}),"update"),delete:o(async t=>e.delete("/organizations/:organizationSlug",null,{organizationSlug:t}),"delete"),billing:Ke(e),events:tt(e),members:ot(e)});var st=e=>({follow:o(async t=>e.post("/profiles/:username/relationships/follow",null,{username:t}),"follow"),unfollow:o(async t=>e.post("/profiles/:username/relationships/unfollow",null,{username:t}),"unfollow")});var nt=e=>({get:o(async t=>e.get("/profiles/:username",{username:t}),"get"),relationships:st(e)});var it=e=>({getAll:o(async()=>e.get("/users"),"getAll"),get:o(async t=>e.get("/users",{id:t}),"get"),me:o(async()=>e.get("/users/me"),"me"),check:o(async(t,r)=>e.get("/users/check/:identifier",{identifier:t,suggestions:r}),"check"),update:o(async(t,r)=>e.put("/users/:userId",r,{userId:t}),"update")});var pt=e=>({registerToBeta:o(async()=>e.get("/notifications/subscribe/beta"),"registerToBeta")});var at=class{static{o(this,"TonightPass");}client;auth;careers;health;orders;organizations;profiles;users;notifications;constructor(t){this.client=new K(t),this.auth=He(this.client),this.careers=Ce(this.client),this.health=Je(this.client),this.orders=Ye(this.client),this.organizations=rt(this.client),this.profiles=nt(this.client),this.users=it(this.client),this.notifications=pt(this.client);}};
|
|
13
|
+
var ct=Object.defineProperty;var o=(e,t)=>ct(e,"name",{value:t,configurable:!0});var de="https://api.tonightpass.com";var m={EMAIL:/^[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$/i,NAME:/^[a-zA-Z0-9 ]+$/,SLUG:/^[a-z0-9_.]+$/,USERNAME:/^(?!\.)(?!.*\.\.)(?!.*\.$)[a-z0-9_.]{3,48}$/,PHONE:/^\+(?:[0-9] ?){6,14}[0-9]$/,PASSWORD:/^(?=.*[A-Z])(?=.*[a-z])(?=.*[\d\W]).{8,}$/,PASSWORD_MIN_LENGTH:/^.{8,}$/,PASSWORD_UPPERCASE:/^(?=.*[A-Z])/,PASSWORD_LOWERCASE:/^(?=.*[a-z])/,PASSWORD_NUMBER_SPECIAL:/^(?=.*[\d\W])/,IMAGE_URL:/^(https:\/\/|http:\/\/)(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-z]{2,6}([-a-zA-Z0-9@:%_\+.~#?&//=]*)\.(jpg|jpeg|gif|png|bmp|tiff|tga|svg)$/i};function w(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(w,"_ts_decorate");function R(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(R,"_ts_metadata");var M=class{static{o(this,"CreateOrganizationDto");}organizationSlug;identity;members;location};w([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(1,48),R("design:type",String)],M.prototype,"organizationSlug",void 0);w([classValidator.IsObject(),R("design:type",typeof S>"u"?Object:S)],M.prototype,"identity",void 0);w([classValidator.IsArray(),R("design:type",Array)],M.prototype,"members",void 0);w([classValidator.IsOptional(),classValidator.IsObject(),R("design:type",typeof Location>"u"?Object:Location)],M.prototype,"location",void 0);var S=class{static{o(this,"CreateOrganizationIdentityDto");}displayName;description;avatarUrl;bannerUrl;socialLinks};w([classValidator.IsString(),classValidator.IsNotEmpty(),classValidator.Length(1,32),R("design:type",String)],S.prototype,"displayName",void 0);w([classValidator.IsString(),classValidator.Length(16,1024),classValidator.IsOptional(),R("design:type",String)],S.prototype,"description",void 0);w([classValidator.IsUrl({protocols:["http","https"]}),R("design:type",String)],S.prototype,"avatarUrl",void 0);w([classValidator.IsOptional(),classValidator.IsUrl({protocols:["http","https"]}),R("design:type",String)],S.prototype,"bannerUrl",void 0);w([classValidator.IsOptional(),classValidator.IsArray(),R("design:type",Array)],S.prototype,"socialLinks",void 0);function A(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(A,"_ts_decorate");function I(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(I,"_ts_metadata");var B=class{static{o(this,"UpdateOrganizationDto");}slug;identity;members;location};A([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.USERNAME),I("design:type",String)],B.prototype,"slug",void 0);A([classValidator.IsObject(),classValidator.IsOptional(),I("design:type",typeof j>"u"?Object:j)],B.prototype,"identity",void 0);A([classValidator.IsOptional(),classValidator.IsArray(),I("design:type",Array)],B.prototype,"members",void 0);A([classValidator.IsOptional(),classValidator.IsObject(),I("design:type",typeof Location>"u"?Object:Location)],B.prototype,"location",void 0);var j=class{static{o(this,"UpdateOrganizationIdentityDto");}displayName;description;avatarUrl;bannerUrl;socialLinks};A([classValidator.IsString(),classValidator.IsNotEmpty(),classValidator.Length(1,32),classValidator.IsOptional(),I("design:type",String)],j.prototype,"displayName",void 0);A([classValidator.IsString(),classValidator.Length(16,1024),classValidator.IsOptional(),I("design:type",String)],j.prototype,"description",void 0);A([classValidator.IsUrl({protocols:["http","https"]}),classValidator.IsOptional(),I("design:type",String)],j.prototype,"avatarUrl",void 0);A([classValidator.IsOptional(),classValidator.IsUrl({protocols:["http","https"]}),I("design:type",String)],j.prototype,"bannerUrl",void 0);A([classValidator.IsOptional(),classValidator.IsArray(),I("design:type",Array)],j.prototype,"socialLinks",void 0);var ve=class{static{o(this,"CreateOrganizationEventOrderDto");}cart};var C=class{static{o(this,"CreateOrganizationEventStyleDto");}type;emoji;name};var xe=class extends C{static{o(this,"UpdateOrganizationEventStyleDto");}};exports.OrganizationEventTicketType = void 0;(function(e){e.ETicket="e-ticket",e.Other="other";})(exports.OrganizationEventTicketType||(exports.OrganizationEventTicketType={}));exports.OrganizationEventTicketCategory = void 0;(function(e){e.Entry="entry",e.Package="package",e.Meal="meal",e.Drink="drink",e.Parking="parking",e.Accommodation="accommodation",e.Camping="camping",e.Locker="locker",e.Shuttle="shuttle",e.Other="other";})(exports.OrganizationEventTicketCategory||(exports.OrganizationEventTicketCategory={}));exports.OrganizationEventStyleType = void 0;(function(e){e.Music="music",e.Dress="dress",e.Sport="sport",e.Food="food",e.Art="art";})(exports.OrganizationEventStyleType||(exports.OrganizationEventStyleType={}));exports.OrganizationEventType = void 0;(function(e){e.Clubbing="clubbing",e.Concert="concert",e.Afterwork="afterwork",e.DancingLunch="dancing_lunch",e.Diner="diner",e.Garden="garden",e.AfterBeach="after_beach",e.Festival="festival",e.Spectacle="spectacle",e.Cruise="cruise",e.OutsideAnimation="outside_animation",e.Sport="sport",e.Match="match",e.Seminar="seminar",e.Conference="conference",e.WellnessDay="wellness_day",e.Workshop="workshop",e.TradeFair="trade_fair",e.ConsumerShow="consumer_show",e.Membership="membership";})(exports.OrganizationEventType||(exports.OrganizationEventType={}));exports.OrganizationEventVisibilityType = void 0;(function(e){e.Public="public",e.Unlisted="unlisted",e.Private="private";})(exports.OrganizationEventVisibilityType||(exports.OrganizationEventVisibilityType={}));exports.OrganizationMemberStatus = void 0;(function(e){e.Pending="pending",e.Accepted="accepted",e.Rejected="rejected";})(exports.OrganizationMemberStatus||(exports.OrganizationMemberStatus={}));exports.OrganizationMemberRole = void 0;(function(e){e.Member="member",e.Manager="manager",e.Admin="admin",e.Owner="owner";})(exports.OrganizationMemberRole||(exports.OrganizationMemberRole={}));exports.OrganizationSocialType = void 0;(function(e){e.Facebook="facebook",e.Twitter="twitter",e.Instagram="instagram",e.Linkedin="linkedin",e.Youtube="youtube",e.Website="website";})(exports.OrganizationSocialType||(exports.OrganizationSocialType={}));exports.UserTokenType = void 0;(function(e){e.Authentication="authentication",e.OrganizationInvite="organization_invite",e.PasswordRecovery="password_recovery",e.EmailValidation="email_validation",e.PhoneValidation="phone_validation";})(exports.UserTokenType||(exports.UserTokenType={}));exports.UserRole = void 0;(function(e){e.User="user",e.Developer="developer",e.Admin="admin";})(exports.UserRole||(exports.UserRole={}));exports.UserIdentityGender = void 0;(function(e){e.Male="male",e.Female="female",e.NonBinary="non-binary";})(exports.UserIdentityGender||(exports.UserIdentityGender={}));exports.ProfileType = void 0;(function(e){e.User="user",e.Organization="organization";})(exports.ProfileType||(exports.ProfileType={}));exports.Currency = void 0;(function(e){e.EUR="EUR",e.USD="USD",e.GBP="GBP";})(exports.Currency||(exports.Currency={}));exports.Language = void 0;(function(e){e.FR="fr",e.EN="en";})(exports.Language||(exports.Language={}));function u(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(u,"_ts_decorate");function g(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(g,"_ts_metadata");var f=class{static{o(this,"CreateOrganizationEventTicketDto");}name;description;price;quantity;type;category;currency;isVisible;isFeesIncluded;startAt;endAt};u([classValidator.IsString(),classValidator.Length(1,128),g("design:type",String)],f.prototype,"name",void 0);u([classValidator.IsString(),classValidator.Length(1,1024),g("design:type",String)],f.prototype,"description",void 0);u([classValidator.IsNumber(),classValidator.Min(0),g("design:type",Number)],f.prototype,"price",void 0);u([classValidator.IsNumber(),classValidator.Min(0),g("design:type",Number)],f.prototype,"quantity",void 0);u([classValidator.IsEnum(exports.OrganizationEventTicketType),g("design:type",typeof exports.OrganizationEventTicketType>"u"?Object:exports.OrganizationEventTicketType)],f.prototype,"type",void 0);u([classValidator.IsEnum(exports.OrganizationEventTicketCategory),g("design:type",typeof exports.OrganizationEventTicketCategory>"u"?Object:exports.OrganizationEventTicketCategory)],f.prototype,"category",void 0);u([classValidator.IsEnum(exports.Currency),g("design:type",typeof exports.Currency>"u"?Object:exports.Currency)],f.prototype,"currency",void 0);u([classValidator.IsBoolean(),g("design:type",Boolean)],f.prototype,"isVisible",void 0);u([classValidator.IsBoolean(),g("design:type",Boolean)],f.prototype,"isFeesIncluded",void 0);u([classValidator.IsDateString(),classValidator.IsOptional(),g("design:type",typeof Date>"u"?Object:Date)],f.prototype,"startAt",void 0);u([classValidator.IsDateString(),classValidator.IsOptional(),g("design:type",typeof Date>"u"?Object:Date)],f.prototype,"endAt",void 0);var Oe=class extends f{static{o(this,"UpdateOrganizationEventTicketDto");}};function U(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(U,"_ts_decorate");function z(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(z,"_ts_metadata");var y=class{static{o(this,"CreateOrganizationEventDto");}title;slug;description;type;visibility;flyers;trailers;location;tickets;styles;startAt;endAt};U([classValidator.IsString(),classValidator.Length(1,64),z("design:type",String)],y.prototype,"title",void 0);U([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.SLUG),z("design:type",String)],y.prototype,"slug",void 0);U([classValidator.IsString(),classValidator.Length(16,2048),z("design:type",String)],y.prototype,"description",void 0);U([classValidator.IsEnum(exports.OrganizationEventType),z("design:type",typeof exports.OrganizationEventType>"u"?Object:exports.OrganizationEventType)],y.prototype,"type",void 0);U([classValidator.IsEnum(exports.OrganizationEventVisibilityType),z("design:type",typeof exports.OrganizationEventVisibilityType>"u"?Object:exports.OrganizationEventVisibilityType)],y.prototype,"visibility",void 0);U([classValidator.IsDateString(),z("design:type",typeof Date>"u"?Object:Date)],y.prototype,"startAt",void 0);U([classValidator.IsDateString(),z("design:type",typeof Date>"u"?Object:Date)],y.prototype,"endAt",void 0);var Ge=class extends y{static{o(this,"UpdateOrganizationEventDto");}};function Fe(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(Fe,"_ts_decorate");function ke(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(ke,"_ts_metadata");var J=class{static{o(this,"CreateOrganizationMemberDto");}user;role};Fe([classValidator.IsString(),classValidator.IsNotEmpty(),ke("design:type",String)],J.prototype,"user",void 0);Fe([classValidator.IsEnum(exports.OrganizationMemberRole),classValidator.IsNotEmpty(),ke("design:type",typeof exports.OrganizationMemberRole>"u"?Object:exports.OrganizationMemberRole)],J.prototype,"role",void 0);function St(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(St,"_ts_decorate");function wt(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(wt,"_ts_metadata");var ie=class{static{o(this,"UpdateOrganizationMemberDto");}role};St([classValidator.IsEnum(exports.OrganizationMemberRole),classValidator.IsNotEmpty(),wt("design:type",typeof exports.OrganizationMemberRole>"u"?Object:exports.OrganizationMemberRole)],ie.prototype,"role",void 0);function N(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(N,"_ts_decorate");function E(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(E,"_ts_metadata");var ae=class{static{o(this,"CreateUserDto");}identifier;identity;password};N([classValidator.IsString(),classValidator.Matches(m.PASSWORD,{message:"Password must be secure."}),E("design:type",String)],ae.prototype,"password",void 0);var fe=class{static{o(this,"CreateUserIdentifierDto");}email;phoneNumber;username};N([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsEmail(),E("design:type",String)],fe.prototype,"email",void 0);N([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsPhoneNumber(),E("design:type",String)],fe.prototype,"phoneNumber",void 0);N([classValidator.IsString(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.USERNAME),E("design:type",String)],fe.prototype,"username",void 0);var O=class{static{o(this,"CreateUserIdentityDto");}firstName;lastName;gender;avatarUrl;birthDate};N([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"First name must be composed of letters only"}),E("design:type",String)],O.prototype,"firstName",void 0);N([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"Last name must be composed of letters only"}),E("design:type",String)],O.prototype,"lastName",void 0);N([classValidator.IsEnum(exports.UserIdentityGender),E("design:type",typeof exports.UserIdentityGender>"u"?Object:exports.UserIdentityGender)],O.prototype,"gender",void 0);N([classValidator.IsOptional(),classValidator.IsUrl({protocols:["http","https"]}),E("design:type",String)],O.prototype,"avatarUrl",void 0);N([classValidator.IsOptional(),classValidator.IsDateString(),E("design:type",typeof Date>"u"?Object:Date)],O.prototype,"birthDate",void 0);var We=class{static{o(this,"SignInUserDto");}identifier;password};function c(e,t,r,s){var i=arguments.length,n=i<3?t:s===null?s=Object.getOwnPropertyDescriptor(t,r):s,a;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")n=Reflect.decorate(e,t,r,s);else for(var p=e.length-1;p>=0;p--)(a=e[p])&&(n=(i<3?a(n):i>3?a(t,r,n):a(t,r))||n);return i>3&&n&&Object.defineProperty(t,r,n),n}o(c,"_ts_decorate");function l(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}o(l,"_ts_metadata");var Z=class{static{o(this,"UpdateUserDto");}identifier;identity;password};c([classValidator.IsOptional(),classValidator.IsObject(),classValidator.ValidateNested(),classTransformer.Type(()=>V),l("design:type",typeof V>"u"?Object:V)],Z.prototype,"identifier",void 0);c([classValidator.IsOptional(),classValidator.IsObject(),classValidator.ValidateNested(),classTransformer.Type(()=>h),l("design:type",typeof h>"u"?Object:h)],Z.prototype,"identity",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.MinLength(8),classValidator.MaxLength(128),l("design:type",String)],Z.prototype,"password",void 0);var V=class{static{o(this,"UpdateUserIdentifierDto");}email;phoneNumber;username};c([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsEmail(),l("design:type",String)],V.prototype,"email",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsPhoneNumber(),l("design:type",String)],V.prototype,"phoneNumber",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.IsLowercase(),classValidator.Length(3,48),classValidator.Matches(m.USERNAME),l("design:type",String)],V.prototype,"username",void 0);var h=class{static{o(this,"UpdateUserIdentityDto");}firstName;lastName;displayName;description;avatarUrl;bannerUrl;gender;birthDate};c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"First name must be composed of letters only"}),l("design:type",String)],h.prototype,"firstName",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(2,32),classValidator.Matches(m.NAME,{message:"Last name must be composed of letters only"}),l("design:type",String)],h.prototype,"lastName",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(1,32),l("design:type",String)],h.prototype,"displayName",void 0);c([classValidator.IsOptional(),classValidator.IsString(),classValidator.Length(1,128),l("design:type",String)],h.prototype,"description",void 0);c([classValidator.IsOptional(),classValidator.IsUrl(),l("design:type",Object)],h.prototype,"avatarUrl",void 0);c([classValidator.IsOptional(),classValidator.IsUrl(),l("design:type",Object)],h.prototype,"bannerUrl",void 0);c([classValidator.IsOptional(),classValidator.IsEnum(exports.UserIdentityGender),l("design:type",typeof exports.UserIdentityGender>"u"?Object:exports.UserIdentityGender)],h.prototype,"gender",void 0);c([classValidator.IsOptional(),classValidator.IsDateString(),l("design:type",typeof Date>"u"?Object:Date)],h.prototype,"birthDate",void 0);var x=typeof window<"u";var Ft=Gt__default.default.create({headers:{"Content-Type":"application/json",Accept:"application/json",...!x&&{"User-Agent":"tonightpass-api-client"}},responseType:"json",transformRequest:[function(e){return JSON.stringify(e)}],withCredentials:x}),He=o(async(e,t)=>Ft(e,{...t}).then(s=>s).catch(s=>{throw s.data||console.error(s),s.data}),"request");var le=class extends Error{static{o(this,"TonightPassAPIError");}response;data;status;constructor(t,r){super(r.message),this.response=t,this.data=r,this.status=t.status;}},K=class{static{o(this,"Client");}options;url;constructor(t){this.options=t,this.url=(r,s)=>{let i=this.options.baseURL||de;return pathcat.pathcat(i,r,s)};}setOptions(t){this.options=t;}async get(t,r,s){return this.requester("GET",t,void 0,r,s)}async post(t,r,s,i){return this.requester("POST",t,r,s,i)}async put(t,r,s,i){return this.requester("PUT",t,r,s,i)}async patch(t,r,s,i){return this.requester("PATCH",t,r,s,i)}async delete(t,r,s,i){return this.requester("DELETE",t,r,s,i)}async requester(t,r,s,i={},n={}){let a=this.url(r,i);if(s!==void 0&&t==="GET")throw new Error("Cannot send a GET request with a body");let p=await He(a,{method:t,data:s,...n}),Q=p.data;if(!Q.success)throw new le(p,Q);return Q.data}};function L(e){return e}o(L,"sdk");var Ce=e=>({signIn:o(async t=>e.post("/auth/sign-in",t),"signIn"),signUp:o(async t=>e.post("/auth/sign-up",t),"signUp"),signOut:o(async()=>e.post("/auth/sign-out",null),"signOut"),refreshToken:o(async()=>e.post("/auth/refresh-token",null),"refreshToken"),oauth2:{google:{connect:o(t=>{if(x)window.location.href=e.url("/oauth2/google",t||{});else throw new Error("Google OAuth2 is only available in the browser")},"connect")},twitter:{connect:o(t=>{if(x)window.location.href=e.url("/oauth2/twitter",t||{});else throw new Error("Twitter OAuth2 is only available in the browser")},"connect")},facebook:{connect:o(t=>{if(x)window.location.href=e.url("/oauth2/facebook",t||{});else throw new Error("Facebook OAuth2 is only available in the browser")},"connect")}}});var Je=e=>({categories:{getAll:o(async t=>e.get("/careers/categories",t),"getAll")},employmentTypes:{getAll:o(async t=>e.get("/careers/employmentTypes",t),"getAll")},jobs:{getAll:o(async t=>e.get("/careers/jobs",t),"getAll"),get:o(async t=>e.get("/careers/jobs/:jobId",{jobId:t}),"get")},offices:{getAll:o(async t=>e.get("/careers/offices",t),"getAll")}});var Ye=e=>({getAll:o(async()=>e.get("/health"),"getAll"),database:o(async()=>e.get("/health/database"),"database"),http:o(async()=>e.get("/health/http"),"http")});var Ke=e=>({getAll:o(async t=>e.get("/orders",t),"getAll"),get:o(async t=>e.get("/orders/:orderId",{orderId:t}),"get")});var Qe=o(e=>({account:o(async t=>e.get("/organizations/:organizationSlug/billing/account",{organizationSlug:t}),"account"),link:o(t=>{if(x)window.location.href=e.url("/organizations/:organizationSlug/billing/link",{organizationSlug:t});else throw new Error("Billing link is only available in the browser")},"link"),dashboard:o(t=>{if(x)window.location.href=e.url("/organizations/:organizationSlug/billing/dashboard",{organizationSlug:t});else throw new Error("Billing dashboard is only available in the browser")},"dashboard")}),"organizationsBilling");var Te=o(e=>({create:o(async(t,r,s)=>e.post("/organizations/:organizationSlug/events/:eventSlug/orders",s,{organizationSlug:t,eventSlug:r}),"create")}),"organizationsEventsOrders");var et=o(e=>({getAll:o(async()=>e.get("/organizations/events/styles"),"getAll"),get:o(async t=>e.get("/organizations/events/styles/:styleSlug",{styleSlug:t}),"get"),create:o(async t=>e.post("/organizations/events/styles",t),"create"),update:o(async(t,r)=>e.put("/organizations/events/styles/:styleSlug",r,{styleSlug:t}),"update"),delete:o(async t=>e.delete("/organizations/events/styles/:styleSlug",null,{styleSlug:t}),"delete")}),"organizationsEventsStyles");var tt=o(e=>({getAll:o(async(t,r)=>e.get("/organizations/:organizationSlug/events/:eventSlug/tickets",{organizationSlug:t,eventSlug:r}),"getAll"),get:o(async(t,r,s)=>e.get("/organizations/:organizationSlug/events/:eventSlug/tickets/:ticketId",{organizationSlug:t,eventSlug:r,ticketId:s}),"get"),create:o(async(t,r,s)=>e.post("/organizations/:organizationSlug/events/:eventSlug/tickets",s,{organizationSlug:t,eventSlug:r}),"create"),update:o(async(t,r,s,i)=>e.put("/organizations/:organizationSlug/events/:eventSlug/tickets/:ticketId",i,{organizationSlug:t,eventSlug:r,ticketId:s}),"update"),delete:o(async(t,r,s)=>e.delete("/organizations/:organizationSlug/events/:eventSlug/tickets/:ticketId",null,{organizationSlug:t,eventSlug:r,ticketId:s}),"delete")}),"organizationsEventsTickets");var ot=o(e=>({getAll:o(async(t,r)=>t?e.get("/organizations/:organizationSlug/events",{organizationSlug:t,...r}):e.get("/organizations/events",r),"getAll"),getSuggestions:o(async t=>e.get("/organizations/events/suggestions",t),"getSuggestions"),getNearby:o(async t=>e.get("/organizations/events/nearby",t),"getNearby"),get:o(async(t,r)=>e.get("/organizations/:organizationSlug/events/:eventSlug",{organizationSlug:t,eventSlug:r}),"get"),create:o(async(t,r)=>e.post("/organizations/:organizationSlug/events",r,{organizationSlug:t}),"create"),update:o(async(t,r,s)=>e.put("/organizations/:organizationSlug/events/:eventSlug",s,{organizationSlug:t,eventSlug:r}),"update"),delete:o(async(t,r)=>e.delete("/organizations/:organizationSlug/events/:eventSlug",null,{organizationSlug:t,eventSlug:r}),"delete"),orders:Te(e),styles:et(e),tickets:tt(e)}),"organizationsEvents");var rt=o(e=>({getAll:o(async()=>e.get("/organizations/members"),"getAll"),delete:o(async t=>e.delete("/organizations/members/:memberId",null,{memberId:t}),"delete")}),"organizationsMembers");var nt=e=>({getAll:o(async()=>e.get("/organizations"),"getAll"),get:o(async t=>e.get("/organizations/:organizationSlug",{organizationSlug:t}),"get"),create:o(async t=>e.post("/organizations",t),"create"),update:o(async(t,r)=>e.put("/organizations/:organizationSlug",r,{organizationSlug:t}),"update"),delete:o(async t=>e.delete("/organizations/:organizationSlug",null,{organizationSlug:t}),"delete"),billing:Qe(e),events:ot(e),members:rt(e)});var st=e=>({follow:o(async t=>e.post("/profiles/:username/relationships/follow",null,{username:t}),"follow"),unfollow:o(async t=>e.post("/profiles/:username/relationships/unfollow",null,{username:t}),"unfollow")});var it=e=>({get:o(async t=>e.get("/profiles/:username",{username:t}),"get"),relationships:st(e)});var at=e=>({getAll:o(async()=>e.get("/users"),"getAll"),get:o(async t=>e.get("/users",{id:t}),"get"),me:o(async()=>e.get("/users/me"),"me"),check:o(async(t,r)=>e.get("/users/check/:identifier",{identifier:t,suggestions:r}),"check"),update:o(async(t,r)=>e.put("/users/:userId",r,{userId:t}),"update")});var pt=e=>({registerToBeta:o(async()=>e.get("/notifications/subscribe/beta"),"registerToBeta")});var ft=class{static{o(this,"TonightPass");}client;auth;careers;health;orders;organizations;profiles;users;notifications;constructor(t){this.client=new K(t),this.auth=Ce(this.client),this.careers=Je(this.client),this.health=Ye(this.client),this.orders=Ke(this.client),this.organizations=nt(this.client),this.profiles=it(this.client),this.users=at(this.client),this.notifications=pt(this.client);}};
|
|
14
14
|
|
|
15
15
|
exports.Client = K;
|
|
16
16
|
exports.CreateOrganizationDto = M;
|
|
@@ -20,30 +20,30 @@ exports.CreateOrganizationEventStyleDto = C;
|
|
|
20
20
|
exports.CreateOrganizationEventTicketDto = f;
|
|
21
21
|
exports.CreateOrganizationIdentityDto = S;
|
|
22
22
|
exports.CreateOrganizationMemberDto = J;
|
|
23
|
-
exports.CreateUserDto =
|
|
24
|
-
exports.CreateUserIdentityDto =
|
|
23
|
+
exports.CreateUserDto = ae;
|
|
24
|
+
exports.CreateUserIdentityDto = O;
|
|
25
25
|
exports.DEFAULT_API_URL = de;
|
|
26
26
|
exports.REGEX = m;
|
|
27
|
-
exports.SignInUserDto =
|
|
28
|
-
exports.TonightPass =
|
|
27
|
+
exports.SignInUserDto = We;
|
|
28
|
+
exports.TonightPass = ft;
|
|
29
29
|
exports.TonightPassAPIError = le;
|
|
30
30
|
exports.UpdateOrganizationDto = B;
|
|
31
|
-
exports.UpdateOrganizationEventDto =
|
|
31
|
+
exports.UpdateOrganizationEventDto = Ge;
|
|
32
32
|
exports.UpdateOrganizationEventStyleDto = xe;
|
|
33
33
|
exports.UpdateOrganizationEventTicketDto = Oe;
|
|
34
34
|
exports.UpdateOrganizationIdentityDto = j;
|
|
35
35
|
exports.UpdateOrganizationMemberDto = ie;
|
|
36
36
|
exports.UpdateUserDto = Z;
|
|
37
|
-
exports.auth =
|
|
38
|
-
exports.careers =
|
|
39
|
-
exports.health =
|
|
37
|
+
exports.auth = Ce;
|
|
38
|
+
exports.careers = Je;
|
|
39
|
+
exports.health = Ye;
|
|
40
40
|
exports.isBrowser = x;
|
|
41
41
|
exports.notifications = pt;
|
|
42
|
-
exports.orders =
|
|
43
|
-
exports.organizations =
|
|
44
|
-
exports.profiles =
|
|
45
|
-
exports.request =
|
|
42
|
+
exports.orders = Ke;
|
|
43
|
+
exports.organizations = nt;
|
|
44
|
+
exports.profiles = it;
|
|
45
|
+
exports.request = He;
|
|
46
46
|
exports.sdk = L;
|
|
47
|
-
exports.users =
|
|
47
|
+
exports.users = at;
|
|
48
48
|
//# sourceMappingURL=index.js.map
|
|
49
49
|
//# sourceMappingURL=index.js.map
|