@qrush/types 1.0.0
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/README.md +15 -0
- package/dist/Common.d.ts +34 -0
- package/dist/Common.js +22 -0
- package/dist/CustomDocType.d.ts +4 -0
- package/dist/CustomDocType.js +1 -0
- package/dist/Events.d.ts +80 -0
- package/dist/Events.js +1 -0
- package/dist/Genres.d.ts +2 -0
- package/dist/Genres.js +3 -0
- package/dist/Location.d.ts +89 -0
- package/dist/Location.js +8 -0
- package/dist/Meta.d.ts +3 -0
- package/dist/Meta.js +1 -0
- package/dist/Promotion.d.ts +54 -0
- package/dist/Promotion.js +3 -0
- package/dist/Users.d.ts +89 -0
- package/dist/Users.js +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +61 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# qrush-shared-types
|
|
2
|
+
|
|
3
|
+
To install dependencies:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
bun install
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
To run:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
bun run index.ts
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This project was created using `bun init` in bun v1.1.1. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
|
package/dist/Common.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { GeoPoint } from '@firebase/firestore';
|
|
2
|
+
export type PaymentMethod = "Card" | "Cash";
|
|
3
|
+
export type Features = {
|
|
4
|
+
isAccessible: boolean;
|
|
5
|
+
hasReservation: boolean;
|
|
6
|
+
isRentable: boolean;
|
|
7
|
+
hasPublicTransport: boolean;
|
|
8
|
+
isLGBTQFriendly: boolean;
|
|
9
|
+
hasFood: boolean;
|
|
10
|
+
hasWifi: boolean;
|
|
11
|
+
hasParking: boolean;
|
|
12
|
+
hasCoatCheck: boolean;
|
|
13
|
+
hasVIP: boolean;
|
|
14
|
+
hasOutdoorArea: boolean;
|
|
15
|
+
hasSmokingIndoors: boolean;
|
|
16
|
+
hasIndoorArea: boolean;
|
|
17
|
+
paymentMethods: PaymentMethod[];
|
|
18
|
+
};
|
|
19
|
+
export type Address = {
|
|
20
|
+
street: string;
|
|
21
|
+
number: string;
|
|
22
|
+
zip: string;
|
|
23
|
+
city: string;
|
|
24
|
+
district?: string;
|
|
25
|
+
state?: string;
|
|
26
|
+
country?: string;
|
|
27
|
+
};
|
|
28
|
+
export type Location = {
|
|
29
|
+
address: Address;
|
|
30
|
+
geopoint: GeoPoint;
|
|
31
|
+
};
|
|
32
|
+
export type EventCategory = 'Clubnight' | 'Concert' | 'Party' | 'Festival' | 'Open-Air' | 'Rave' | 'Live-Musik' | 'Comedy' | 'Karaoke' | 'Quiz-Night' | 'Open-Mic' | 'Pub-Crawl' | 'LGBTQ+' | 'Drag-Show' | 'Speed-Dating' | 'Burlesque-Show';
|
|
33
|
+
export type EventCategorySlug = 'clubnight' | 'concert' | 'party' | 'festival' | 'open-air' | 'rave' | 'live-musik' | 'comedy' | 'karaoke' | 'quiz-night' | 'open-mic' | 'pub-crawl' | 'lgbtq' | 'drag-show' | 'speed-dating' | 'burlesque-show';
|
|
34
|
+
export declare const eventCategories: EventCategory[];
|
package/dist/Common.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// Array of all possible event categories for UI rendering
|
|
2
|
+
export const eventCategories = [
|
|
3
|
+
'Clubnight',
|
|
4
|
+
'Concert',
|
|
5
|
+
'Party',
|
|
6
|
+
'Festival',
|
|
7
|
+
'Open-Air',
|
|
8
|
+
'Rave',
|
|
9
|
+
'Live-Musik',
|
|
10
|
+
'Comedy',
|
|
11
|
+
'Karaoke',
|
|
12
|
+
'Quiz-Night',
|
|
13
|
+
'Open-Mic',
|
|
14
|
+
'Pub-Crawl',
|
|
15
|
+
'LGBTQ+',
|
|
16
|
+
'Drag-Show',
|
|
17
|
+
'Speed-Dating',
|
|
18
|
+
'Burlesque-Show'
|
|
19
|
+
];
|
|
20
|
+
// Add any other types that are commonly shared across your data definitions.
|
|
21
|
+
// For example, if IFireMetaPossibleTags or FireQueryDocSnapshotRef are used broadly,
|
|
22
|
+
// they could also be considered for this file, though they might be general utilities.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/Events.d.ts
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import type { Timestamp, FieldValue } from '@firebase/firestore';
|
|
2
|
+
import { FireQueryDocSnapshotRef } from "./CustomDocType.js";
|
|
3
|
+
import { IFireMetaPossibleTags } from "./Meta.js";
|
|
4
|
+
import musicGenres from './Genres.js';
|
|
5
|
+
import { LocationTypeArray, LocationTypeSlugArray } from './Location.js';
|
|
6
|
+
import { Features, Location, EventCategory, EventCategorySlug } from './Common.js';
|
|
7
|
+
import { PromoTeaser } from "./Promotion.js";
|
|
8
|
+
export interface IFireEvent {
|
|
9
|
+
name: string;
|
|
10
|
+
nameSlug: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
descriptionMarkdown?: string | undefined;
|
|
13
|
+
imageURI: string;
|
|
14
|
+
mapsImageURI?: string | undefined;
|
|
15
|
+
eventGallery: string[];
|
|
16
|
+
eventStart: Timestamp;
|
|
17
|
+
eventEnd: Timestamp;
|
|
18
|
+
location: EventLocation;
|
|
19
|
+
hostUID: string;
|
|
20
|
+
hostName: string;
|
|
21
|
+
upcomingMatchingRoundUID: string | null;
|
|
22
|
+
bookmarkUserIds?: string[] | undefined;
|
|
23
|
+
guestCount: number;
|
|
24
|
+
demoEvent: boolean;
|
|
25
|
+
draftMode: boolean;
|
|
26
|
+
topPickEvent?: boolean | undefined;
|
|
27
|
+
promotedBy?: 'LFF' | 'DFF' | undefined;
|
|
28
|
+
isPersonalEvent?: boolean | undefined;
|
|
29
|
+
tags: string[] | IFireMetaPossibleTags["tags"];
|
|
30
|
+
properties: EventProperties;
|
|
31
|
+
locationUID?: string | undefined;
|
|
32
|
+
customRadiusM?: number | undefined;
|
|
33
|
+
locationTypeSlug: LocationTypeSlugArray;
|
|
34
|
+
locationTitleSlug: string;
|
|
35
|
+
categorySlug: EventCategorySlug[];
|
|
36
|
+
citySlug: string;
|
|
37
|
+
genres: {
|
|
38
|
+
mainGenre: keyof typeof musicGenres;
|
|
39
|
+
subGenres: string[];
|
|
40
|
+
}[];
|
|
41
|
+
createdAt?: Timestamp;
|
|
42
|
+
modifiedAt?: Timestamp | null;
|
|
43
|
+
promotions?: PromoTeaser[];
|
|
44
|
+
}
|
|
45
|
+
export type ExtendedEvent = IFireEvent & {
|
|
46
|
+
eventUID?: string;
|
|
47
|
+
};
|
|
48
|
+
export declare const eventTagsIsNotString: (tags: string[] | IFireMetaPossibleTags["tags"]) => tags is IFireMetaPossibleTags["tags"];
|
|
49
|
+
export interface TicketType {
|
|
50
|
+
id: string;
|
|
51
|
+
name: string;
|
|
52
|
+
price: number;
|
|
53
|
+
}
|
|
54
|
+
export type EventProperties = {
|
|
55
|
+
category: EventCategory[];
|
|
56
|
+
price?: number | undefined;
|
|
57
|
+
tickets?: TicketType[];
|
|
58
|
+
ticketURL?: string | undefined;
|
|
59
|
+
ticketsSoldOut?: boolean | undefined;
|
|
60
|
+
};
|
|
61
|
+
export type EventLocation = Location & {
|
|
62
|
+
title: string;
|
|
63
|
+
description: string;
|
|
64
|
+
imageUrl: string;
|
|
65
|
+
locationType: LocationTypeArray;
|
|
66
|
+
features: Features;
|
|
67
|
+
};
|
|
68
|
+
export interface IFireEventUpdateGuestCount {
|
|
69
|
+
guestCount: FieldValue;
|
|
70
|
+
}
|
|
71
|
+
export type FireEventSnapshotRef = FireQueryDocSnapshotRef<IFireEvent>;
|
|
72
|
+
export interface IFireGuest {
|
|
73
|
+
currentlyJoined: boolean;
|
|
74
|
+
notificationKeys: string[];
|
|
75
|
+
logs: {
|
|
76
|
+
joined?: Timestamp;
|
|
77
|
+
left?: Timestamp;
|
|
78
|
+
}[];
|
|
79
|
+
}
|
|
80
|
+
export type FireGuestSnapshotRef = FireQueryDocSnapshotRef<IFireGuest>;
|
package/dist/Events.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const eventTagsIsNotString = (tags) => typeof tags[0] !== "string";
|
package/dist/Genres.d.ts
ADDED
package/dist/Genres.js
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { FireQueryDocSnapshotRef } from "./CustomDocType.js";
|
|
2
|
+
import { Location as BaseLocation, Features } from "./Common.js";
|
|
3
|
+
import { PromoTeaser } from "./Promotion.js";
|
|
4
|
+
export declare const LOCATION_TYPE_MAPPING: {
|
|
5
|
+
readonly Bar: "bars";
|
|
6
|
+
readonly Outdoor: "outdoor";
|
|
7
|
+
readonly Club: "clubs";
|
|
8
|
+
readonly Festival: "festivals";
|
|
9
|
+
readonly Concert: "concerts";
|
|
10
|
+
readonly "City Festival": "cityfestivals";
|
|
11
|
+
};
|
|
12
|
+
export type LocationTypeKey = keyof typeof LOCATION_TYPE_MAPPING;
|
|
13
|
+
export type LocationTypeSlug = (typeof LOCATION_TYPE_MAPPING)[LocationTypeKey];
|
|
14
|
+
export type LocationType = LocationTypeKey[];
|
|
15
|
+
export type LocationTypeSlugArray = LocationTypeSlug[];
|
|
16
|
+
export type LocationTypeArray = LocationTypeKey[];
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Old type, replaced by LocationType. Handle migration for 'Open Air' to 'Outdoor' and for 'Other'.
|
|
19
|
+
*/
|
|
20
|
+
export type VenueType = 'Bar' | 'Club' | 'Open Air' | 'Festivals' | 'Other';
|
|
21
|
+
export type SocialMediaPlatform = 'Facebook' | 'Instagram' | 'Twitter' | 'LinkedIn' | 'TikTok';
|
|
22
|
+
export type TimeFormat = `${number}:${number}`;
|
|
23
|
+
export interface IFireEventLegacy {
|
|
24
|
+
id?: string;
|
|
25
|
+
mapsImageURI?: string;
|
|
26
|
+
bookmarkUserIds?: string[];
|
|
27
|
+
topPickEvent?: boolean;
|
|
28
|
+
promotedBy?: 'LFF' | 'DFF';
|
|
29
|
+
customRadiusM?: number;
|
|
30
|
+
}
|
|
31
|
+
export type IFireLocation = {
|
|
32
|
+
id?: string;
|
|
33
|
+
title: string;
|
|
34
|
+
titleSlug: string;
|
|
35
|
+
isPremium: boolean;
|
|
36
|
+
description: string;
|
|
37
|
+
imageUrl: string;
|
|
38
|
+
galleryImageUrls: string[];
|
|
39
|
+
venueType?: VenueType;
|
|
40
|
+
locationType: LocationType;
|
|
41
|
+
locationTypeSlug: LocationTypeSlugArray;
|
|
42
|
+
citySlug: string;
|
|
43
|
+
highlights?: string;
|
|
44
|
+
communityNote?: {
|
|
45
|
+
title: string;
|
|
46
|
+
content: string;
|
|
47
|
+
};
|
|
48
|
+
features: Features;
|
|
49
|
+
openingHours: {
|
|
50
|
+
monday?: {
|
|
51
|
+
open: TimeFormat;
|
|
52
|
+
close: TimeFormat;
|
|
53
|
+
};
|
|
54
|
+
tuesday?: {
|
|
55
|
+
open: TimeFormat;
|
|
56
|
+
close: TimeFormat;
|
|
57
|
+
};
|
|
58
|
+
wednesday?: {
|
|
59
|
+
open: TimeFormat;
|
|
60
|
+
close: TimeFormat;
|
|
61
|
+
};
|
|
62
|
+
thursday?: {
|
|
63
|
+
open: TimeFormat;
|
|
64
|
+
close: TimeFormat;
|
|
65
|
+
};
|
|
66
|
+
friday?: {
|
|
67
|
+
open: TimeFormat;
|
|
68
|
+
close: TimeFormat;
|
|
69
|
+
};
|
|
70
|
+
saturday?: {
|
|
71
|
+
open: TimeFormat;
|
|
72
|
+
close: TimeFormat;
|
|
73
|
+
};
|
|
74
|
+
sunday?: {
|
|
75
|
+
open: TimeFormat;
|
|
76
|
+
close: TimeFormat;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
location: BaseLocation & {
|
|
80
|
+
surrounding: string;
|
|
81
|
+
};
|
|
82
|
+
contact?: {
|
|
83
|
+
phoneNumber?: string;
|
|
84
|
+
website?: string;
|
|
85
|
+
socialMedia?: Partial<Record<SocialMediaPlatform, string>>;
|
|
86
|
+
};
|
|
87
|
+
promotions?: PromoTeaser[];
|
|
88
|
+
};
|
|
89
|
+
export type FireLocationSnapshotRef = FireQueryDocSnapshotRef<IFireLocation>;
|
package/dist/Location.js
ADDED
package/dist/Meta.d.ts
ADDED
package/dist/Meta.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Timestamp } from '@firebase/firestore';
|
|
2
|
+
export type PromotionItemType = 'shot' | 'drink' | 'entry' | 'merch' | 'vip' | 'skipline';
|
|
3
|
+
export type PromotionDealType = '2for1' | 'free' | 'discount';
|
|
4
|
+
export type PromotionType = 'event' | 'location';
|
|
5
|
+
export type PromotionStatus = 'active' | 'inactive' | 'archived';
|
|
6
|
+
export interface PromotionTemplate {
|
|
7
|
+
title: string;
|
|
8
|
+
description: string;
|
|
9
|
+
saving: number;
|
|
10
|
+
tags: string[];
|
|
11
|
+
itemType: PromotionItemType;
|
|
12
|
+
dealType?: PromotionDealType;
|
|
13
|
+
minUser?: number;
|
|
14
|
+
status: PromotionStatus;
|
|
15
|
+
createdAt: Timestamp;
|
|
16
|
+
editedAt: Timestamp;
|
|
17
|
+
ownerId: string;
|
|
18
|
+
assignedTo?: string[];
|
|
19
|
+
}
|
|
20
|
+
export interface PromotionInstance {
|
|
21
|
+
promoId: string;
|
|
22
|
+
promotionType: PromotionType;
|
|
23
|
+
parentId: string;
|
|
24
|
+
minUser?: number;
|
|
25
|
+
maxUsers?: number;
|
|
26
|
+
redeemedCount: number;
|
|
27
|
+
lastReset?: Timestamp;
|
|
28
|
+
status: PromotionStatus;
|
|
29
|
+
title: string;
|
|
30
|
+
saving: number;
|
|
31
|
+
itemType: PromotionItemType;
|
|
32
|
+
dealType?: PromotionDealType;
|
|
33
|
+
}
|
|
34
|
+
export interface PromotionRedemption {
|
|
35
|
+
userId: string;
|
|
36
|
+
redeemedAt: Timestamp;
|
|
37
|
+
promoId: string;
|
|
38
|
+
instanceId: string;
|
|
39
|
+
parentId: string;
|
|
40
|
+
promotionType: PromotionType;
|
|
41
|
+
title: string;
|
|
42
|
+
saving: number;
|
|
43
|
+
itemType: PromotionItemType;
|
|
44
|
+
dealType?: PromotionDealType;
|
|
45
|
+
}
|
|
46
|
+
export interface PromoTeaser {
|
|
47
|
+
instanceId: string;
|
|
48
|
+
promoId: string;
|
|
49
|
+
promotionType: PromotionType;
|
|
50
|
+
title: string;
|
|
51
|
+
saving: number;
|
|
52
|
+
itemType: PromotionItemType;
|
|
53
|
+
dealType?: PromotionDealType;
|
|
54
|
+
}
|
package/dist/Users.d.ts
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import type { DocumentReference, FieldValue, Timestamp } from '@firebase/firestore';
|
|
2
|
+
import { FireQueryDocSnapshotRef } from './CustomDocType.js';
|
|
3
|
+
export type Maybe<T> = T | null | undefined;
|
|
4
|
+
export type IFireUser = {
|
|
5
|
+
phone?: Phone;
|
|
6
|
+
appleAuth?: AppleAuth;
|
|
7
|
+
googleAuth?: GoogleAuth;
|
|
8
|
+
role: UserRole;
|
|
9
|
+
name: string;
|
|
10
|
+
gender: Gender;
|
|
11
|
+
interestedIn: Maybe<Gender>;
|
|
12
|
+
avatar: UserAvatar | null;
|
|
13
|
+
birthday: Timestamp;
|
|
14
|
+
attendedEvents: DocumentReference[];
|
|
15
|
+
attendingEvent: string | null;
|
|
16
|
+
sharingToken: SharingToken | null;
|
|
17
|
+
notificationTokens: string[];
|
|
18
|
+
markedForDeletion: boolean;
|
|
19
|
+
blockedUsers: string[];
|
|
20
|
+
demoEventUIDs: string[];
|
|
21
|
+
deleted: boolean;
|
|
22
|
+
createdAt: Date;
|
|
23
|
+
referralRewards?: string[];
|
|
24
|
+
profileImageUrl?: string;
|
|
25
|
+
totalSavings: number;
|
|
26
|
+
redemptionIds?: string[];
|
|
27
|
+
};
|
|
28
|
+
export type UserRole = 'user' | 'staff' | 'team' | 'admin';
|
|
29
|
+
export type UserAvatar = {
|
|
30
|
+
url: string;
|
|
31
|
+
uploadedAt: Timestamp;
|
|
32
|
+
};
|
|
33
|
+
export type Phone = {
|
|
34
|
+
countryCode: string;
|
|
35
|
+
number: string;
|
|
36
|
+
};
|
|
37
|
+
export type AppleAuth = {
|
|
38
|
+
user: string;
|
|
39
|
+
name: {
|
|
40
|
+
namePrefix: string | null;
|
|
41
|
+
givenName: string | null;
|
|
42
|
+
middleName: string | null;
|
|
43
|
+
familyName: string | null;
|
|
44
|
+
nameSuffix: string | null;
|
|
45
|
+
nickname: string | null;
|
|
46
|
+
} | null;
|
|
47
|
+
email: string | null;
|
|
48
|
+
};
|
|
49
|
+
export type GoogleAuth = {
|
|
50
|
+
id: string;
|
|
51
|
+
name: string | null;
|
|
52
|
+
email: string | null;
|
|
53
|
+
photo: string | null;
|
|
54
|
+
};
|
|
55
|
+
export type SharingToken = {
|
|
56
|
+
token: string;
|
|
57
|
+
expires: Timestamp | null;
|
|
58
|
+
};
|
|
59
|
+
export type Gender = 'male' | 'female' | 'diverse';
|
|
60
|
+
export type FireUserSnapshotRef = FireQueryDocSnapshotRef<IFireUser>;
|
|
61
|
+
export type IFireUserCreationData = Omit<Omit<Omit<IFireUser, 'birthday'>, 'sharingToken'>, 'createdAt'> & {
|
|
62
|
+
birthday: Date;
|
|
63
|
+
createdAt: FieldValue;
|
|
64
|
+
};
|
|
65
|
+
export type IFireUserModifySharingToken = {
|
|
66
|
+
sharingToken: {
|
|
67
|
+
token: string;
|
|
68
|
+
expires: Date | null;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
export type IFireUserSetImage = {
|
|
72
|
+
avatar: {
|
|
73
|
+
url: string;
|
|
74
|
+
uploadedAt: FieldValue | Date;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
export type IFireUserLeaveEvent = {
|
|
78
|
+
attendingEvent: null;
|
|
79
|
+
};
|
|
80
|
+
export type IFireUserSetDeleted = {
|
|
81
|
+
markedForDeletion: true;
|
|
82
|
+
};
|
|
83
|
+
export type IFireUserAddBlockedUser = {
|
|
84
|
+
blockedUsers: FieldValue;
|
|
85
|
+
};
|
|
86
|
+
export type IFireUserUpdateNotificationToken = {
|
|
87
|
+
notificationTokens: FieldValue;
|
|
88
|
+
};
|
|
89
|
+
export type IFireUserUpdateDatingPreference = Pick<IFireUser, 'interestedIn'>;
|
package/dist/Users.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@qrush/types",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Shared TypeScript types for the QRush ecosystem",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsc",
|
|
8
|
+
"prepublishOnly": "bun run build"
|
|
9
|
+
},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@firebase/firestore": "^4.6.3",
|
|
12
|
+
"typescript": "^5.4.5"
|
|
13
|
+
},
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"@firebase/firestore": ">=4.0.0"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts"
|
|
27
|
+
},
|
|
28
|
+
"./Promotion": {
|
|
29
|
+
"import": "./dist/Promotion.js",
|
|
30
|
+
"types": "./dist/Promotion.d.ts"
|
|
31
|
+
},
|
|
32
|
+
"./Events": {
|
|
33
|
+
"import": "./dist/Events.js",
|
|
34
|
+
"types": "./dist/Events.d.ts"
|
|
35
|
+
},
|
|
36
|
+
"./Users": {
|
|
37
|
+
"import": "./dist/Users.js",
|
|
38
|
+
"types": "./dist/Users.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"./Location": {
|
|
41
|
+
"import": "./dist/Location.js",
|
|
42
|
+
"types": "./dist/Location.d.ts"
|
|
43
|
+
},
|
|
44
|
+
"./Common": {
|
|
45
|
+
"import": "./dist/Common.js",
|
|
46
|
+
"types": "./dist/Common.d.ts"
|
|
47
|
+
},
|
|
48
|
+
"./CustomDocType": {
|
|
49
|
+
"import": "./dist/CustomDocType.js",
|
|
50
|
+
"types": "./dist/CustomDocType.d.ts"
|
|
51
|
+
},
|
|
52
|
+
"./Genres": {
|
|
53
|
+
"import": "./dist/Genres.js",
|
|
54
|
+
"types": "./dist/Genres.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./Meta": {
|
|
57
|
+
"import": "./dist/Meta.js",
|
|
58
|
+
"types": "./dist/Meta.d.ts"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|