@timardex/cluemart-shared 1.3.62 → 1.3.64
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/{resourceActivities-CVwxvGeC.d.ts → googleImportedMarket-BECKtVJ4.d.ts} +39 -1
- package/dist/{resourceActivities-CJRTZROh.d.mts → googleImportedMarket-Sl0y8deO.d.mts} +39 -1
- package/dist/graphql/index.cjs +57 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +10 -2
- package/dist/graphql/index.d.ts +10 -2
- package/dist/graphql/index.mjs +56 -1
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +57 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.mjs +56 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +2 -27
- package/dist/types/index.d.ts +2 -27
- package/package.json +1 -1
package/dist/types/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EnumResourceType } from '../enums/index.mjs';
|
|
2
2
|
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-Cp-vzzpW.mjs';
|
|
3
|
-
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, e as CreateBulkNotificationInput, E as EnumActivity, a as NotificationCount, d as NotificationDataType, N as NotificationType, P as ParticipantType, f as ResourceActivityEntry, g as ResourceActivityInputType, R as ResourceActivityType } from '../
|
|
3
|
+
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, e as CreateBulkNotificationInput, E as EnumActivity, G as GoogleImportedMarket, a as NotificationCount, d as NotificationDataType, N as NotificationType, P as ParticipantType, f as ResourceActivityEntry, g as ResourceActivityInputType, R as ResourceActivityType } from '../googleImportedMarket-Sl0y8deO.mjs';
|
|
4
4
|
export { A as AssociateType, u as BaseResourceType, B as BaseResourceTypeFormData, C as Category, m as CreateEventFormData, o as CreateEventInfoFormData, z as CreateFormData, Z as CreateUnregisteredVendorFormData, i as CreateVendorFormData, k as CreateVendorInfoFormData, v as DateTimeType, H as DateTimeWithPriceType, D as DeviceInfo, l as EventFormData, n as EventInfoFormData, b as EventInfoType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, M as MapMultiLocation, N as Nullable, O as OptionItem, t as OwnerType, J as PaymentInfoType, P as PosterUsageType, w as Region, K as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, q as ResourceContactDetailsType, r as ResourceImageType, s as SocialMediaType, S as StallType, y as Subcategory, x as SubcategoryItems, T as TermsAgreement, p as UnregisteredVendorFormData, Y as UnregisteredVendorInvitationType, U as UnregisteredVendorType, f as UserActivityEventType, g as UserLicenceType, X as VendorAttributes, h as VendorFormData, j as VendorInfoFormData, e as VendorInfoType, Q as VendorLocation, W as VendorMenuType, V as VendorType } from '../global-DjZooB3t.mjs';
|
|
5
5
|
export { h as AdFormData, A as AdType, m as AppSettingsFormData, c as AppSettingsType, i as CreateAdFormData, n as CreateAppSettingsFormData, j as CreatePartnerFormData, l as CreatePostFormData, g as CreateTesterFormData, C as CreateUserFormData, u as EnumAdShowOn, E as EnumAdStatus, w as EnumAdStyle, v as EnumAdType, x as EnumPostContentType, b as EnumPostType, O as OrganizedMarketCount, o as OrganizerMarketFrequency, e as PartnerFormData, P as PartnerType, z as PostContentCover, H as PostContentData, I as PostContentFormData, D as PostContentImage, G as PostContentList, B as PostContentTextarea, J as PostContentType, F as PostContentVideo, y as PostFileInput, k as PostFormData, a as PostType, s as StripeSubscription, S as SubscriptionStatusData, q as TesterEvent, f as TesterFormData, T as TesterType, p as TesterVendor, t as UserActivity, r as UserActivityEvent, d as UserFormData, U as UserType, V as VendorSellingFrequency } from '../post-DHDZfAmJ.mjs';
|
|
6
6
|
import 'react-hook-form';
|
|
@@ -18,29 +18,4 @@ interface PosterInputType {
|
|
|
18
18
|
resourceType: EnumResourceType;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
type
|
|
22
|
-
_id: string;
|
|
23
|
-
name: string;
|
|
24
|
-
slug: string;
|
|
25
|
-
image?: string;
|
|
26
|
-
address: string;
|
|
27
|
-
location?: {
|
|
28
|
-
lat: number;
|
|
29
|
-
lng: number;
|
|
30
|
-
};
|
|
31
|
-
googlePlaceId: string;
|
|
32
|
-
website?: string;
|
|
33
|
-
phone?: string;
|
|
34
|
-
openingHours?: string[];
|
|
35
|
-
rating?: number;
|
|
36
|
-
reviewCount?: number;
|
|
37
|
-
photos?: string[];
|
|
38
|
-
googleMapsUrl?: string;
|
|
39
|
-
businessStatus?: string;
|
|
40
|
-
importedAt: Date;
|
|
41
|
-
claimed: boolean;
|
|
42
|
-
createdAt: Date;
|
|
43
|
-
updatedAt: Date;
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export type { AdminUpdateResourceType, GoogleImportedMarket, PosterInputType };
|
|
21
|
+
export type { AdminUpdateResourceType, PosterInputType };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EnumResourceType } from '../enums/index.js';
|
|
2
2
|
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-BD8pG4QE.js';
|
|
3
|
-
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, e as CreateBulkNotificationInput, E as EnumActivity, a as NotificationCount, d as NotificationDataType, N as NotificationType, P as ParticipantType, f as ResourceActivityEntry, g as ResourceActivityInputType, R as ResourceActivityType } from '../
|
|
3
|
+
export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, e as CreateBulkNotificationInput, E as EnumActivity, G as GoogleImportedMarket, a as NotificationCount, d as NotificationDataType, N as NotificationType, P as ParticipantType, f as ResourceActivityEntry, g as ResourceActivityInputType, R as ResourceActivityType } from '../googleImportedMarket-BECKtVJ4.js';
|
|
4
4
|
export { A as AssociateType, u as BaseResourceType, B as BaseResourceTypeFormData, C as Category, m as CreateEventFormData, o as CreateEventInfoFormData, z as CreateFormData, Z as CreateUnregisteredVendorFormData, i as CreateVendorFormData, k as CreateVendorInfoFormData, v as DateTimeType, H as DateTimeWithPriceType, D as DeviceInfo, l as EventFormData, n as EventInfoFormData, b as EventInfoType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, M as MapMultiLocation, N as Nullable, O as OptionItem, t as OwnerType, J as PaymentInfoType, P as PosterUsageType, w as Region, K as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, q as ResourceContactDetailsType, r as ResourceImageType, s as SocialMediaType, S as StallType, y as Subcategory, x as SubcategoryItems, T as TermsAgreement, p as UnregisteredVendorFormData, Y as UnregisteredVendorInvitationType, U as UnregisteredVendorType, f as UserActivityEventType, g as UserLicenceType, X as VendorAttributes, h as VendorFormData, j as VendorInfoFormData, e as VendorInfoType, Q as VendorLocation, W as VendorMenuType, V as VendorType } from '../global-BKEcBQxZ.js';
|
|
5
5
|
export { h as AdFormData, A as AdType, m as AppSettingsFormData, c as AppSettingsType, i as CreateAdFormData, n as CreateAppSettingsFormData, j as CreatePartnerFormData, l as CreatePostFormData, g as CreateTesterFormData, C as CreateUserFormData, u as EnumAdShowOn, E as EnumAdStatus, w as EnumAdStyle, v as EnumAdType, x as EnumPostContentType, b as EnumPostType, O as OrganizedMarketCount, o as OrganizerMarketFrequency, e as PartnerFormData, P as PartnerType, z as PostContentCover, H as PostContentData, I as PostContentFormData, D as PostContentImage, G as PostContentList, B as PostContentTextarea, J as PostContentType, F as PostContentVideo, y as PostFileInput, k as PostFormData, a as PostType, s as StripeSubscription, S as SubscriptionStatusData, q as TesterEvent, f as TesterFormData, T as TesterType, p as TesterVendor, t as UserActivity, r as UserActivityEvent, d as UserFormData, U as UserType, V as VendorSellingFrequency } from '../post-Bwr2i2Qq.js';
|
|
6
6
|
import 'react-hook-form';
|
|
@@ -18,29 +18,4 @@ interface PosterInputType {
|
|
|
18
18
|
resourceType: EnumResourceType;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
type
|
|
22
|
-
_id: string;
|
|
23
|
-
name: string;
|
|
24
|
-
slug: string;
|
|
25
|
-
image?: string;
|
|
26
|
-
address: string;
|
|
27
|
-
location?: {
|
|
28
|
-
lat: number;
|
|
29
|
-
lng: number;
|
|
30
|
-
};
|
|
31
|
-
googlePlaceId: string;
|
|
32
|
-
website?: string;
|
|
33
|
-
phone?: string;
|
|
34
|
-
openingHours?: string[];
|
|
35
|
-
rating?: number;
|
|
36
|
-
reviewCount?: number;
|
|
37
|
-
photos?: string[];
|
|
38
|
-
googleMapsUrl?: string;
|
|
39
|
-
businessStatus?: string;
|
|
40
|
-
importedAt: Date;
|
|
41
|
-
claimed: boolean;
|
|
42
|
-
createdAt: Date;
|
|
43
|
-
updatedAt: Date;
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export type { AdminUpdateResourceType, GoogleImportedMarket, PosterInputType };
|
|
21
|
+
export type { AdminUpdateResourceType, PosterInputType };
|