@timardex/cluemart-shared 1.1.64 → 1.1.65
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/{ad-DTNnMMm8.d.mts → ad-Dveoa7qY.d.mts} +2 -1
- package/dist/{ad-CGtq1T_U.d.ts → ad-YmCqcpsU.d.ts} +2 -1
- package/dist/{auth-CrvHUfDp.d.ts → auth-CUX9MjXz.d.ts} +1 -1
- package/dist/{auth-CsOK7gVT.d.mts → auth-DjnAnJG2.d.mts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-Caqz9-iq.d.ts → global-D0x3B0sV.d.ts} +5 -3
- package/dist/{global-BOVdzmL2.d.mts → global-Dv7IC_sT.d.mts} +5 -3
- package/dist/graphql/index.cjs +6 -0
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +3 -3
- package/dist/graphql/index.d.ts +3 -3
- package/dist/graphql/index.mjs +6 -0
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/dist/{notification-D1W5bULp.d.ts → notification-B5edCCra.d.ts} +2 -1
- package/dist/{notification-C9GAomnw.d.mts → notification-BIfcW0W3.d.mts} +2 -1
- package/dist/types/index.d.mts +4 -4
- package/dist/types/index.d.ts +4 -4
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumOSPlatform, EnumResourceType, EnumUserLicence, EnumUserRole } from './enums/index.mjs';
|
|
2
|
-
import { C as Category, w as CreateFormData, o as ResourceImageType, p as SocialMediaType } from './global-
|
|
2
|
+
import { C as Category, w as CreateFormData, o as ResourceImageType, p as SocialMediaType } from './global-Dv7IC_sT.mjs';
|
|
3
3
|
|
|
4
4
|
interface TestersFormData {
|
|
5
5
|
categories: Category[] | null;
|
|
@@ -38,6 +38,7 @@ interface UserType {
|
|
|
38
38
|
active: boolean;
|
|
39
39
|
avatar: ResourceImageType | null;
|
|
40
40
|
createdAt: string;
|
|
41
|
+
deletedAt: string | null;
|
|
41
42
|
email: string;
|
|
42
43
|
isTester: boolean;
|
|
43
44
|
favourites: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumOSPlatform, EnumResourceType, EnumUserLicence, EnumUserRole } from './enums/index.js';
|
|
2
|
-
import { C as Category, w as CreateFormData, o as ResourceImageType, p as SocialMediaType } from './global-
|
|
2
|
+
import { C as Category, w as CreateFormData, o as ResourceImageType, p as SocialMediaType } from './global-D0x3B0sV.js';
|
|
3
3
|
|
|
4
4
|
interface TestersFormData {
|
|
5
5
|
categories: Category[] | null;
|
|
@@ -38,6 +38,7 @@ interface UserType {
|
|
|
38
38
|
active: boolean;
|
|
39
39
|
avatar: ResourceImageType | null;
|
|
40
40
|
createdAt: string;
|
|
41
|
+
deletedAt: string | null;
|
|
41
42
|
email: string;
|
|
42
43
|
isTester: boolean;
|
|
43
44
|
favourites: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-
|
|
1
|
+
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-Dv7IC_sT.mjs';
|
|
2
2
|
import 'react-hook-form';
|
|
3
3
|
import '../enums/index.mjs';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-
|
|
1
|
+
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-D0x3B0sV.js';
|
|
2
2
|
import 'react-hook-form';
|
|
3
3
|
import '../enums/index.js';
|
|
4
4
|
|
|
@@ -14,13 +14,14 @@ interface RelationType {
|
|
|
14
14
|
active: boolean;
|
|
15
15
|
apiMessage?: string;
|
|
16
16
|
chatId?: string;
|
|
17
|
-
createdAt
|
|
17
|
+
createdAt: string;
|
|
18
|
+
deletedAt: string | null;
|
|
18
19
|
lastUpdateBy: EnumResourceType;
|
|
19
20
|
marketId: string;
|
|
20
21
|
relationDates: RelationDate[];
|
|
21
22
|
relationType: EnumRelationResource;
|
|
22
23
|
stallholderId: string;
|
|
23
|
-
updatedAt
|
|
24
|
+
updatedAt: string;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
type StallType = {
|
|
@@ -178,10 +179,11 @@ type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "
|
|
|
178
179
|
_id: string;
|
|
179
180
|
adIds?: string[] | null;
|
|
180
181
|
createdAt: string;
|
|
182
|
+
deletedAt: string | null;
|
|
181
183
|
owner: OwnerType;
|
|
184
|
+
posterUsage?: PosterUsageType | null;
|
|
182
185
|
relationIds: string[] | null;
|
|
183
186
|
updatedAt: string;
|
|
184
|
-
posterUsage?: PosterUsageType | null;
|
|
185
187
|
};
|
|
186
188
|
type LocationType = {
|
|
187
189
|
city: string;
|
|
@@ -14,13 +14,14 @@ interface RelationType {
|
|
|
14
14
|
active: boolean;
|
|
15
15
|
apiMessage?: string;
|
|
16
16
|
chatId?: string;
|
|
17
|
-
createdAt
|
|
17
|
+
createdAt: string;
|
|
18
|
+
deletedAt: string | null;
|
|
18
19
|
lastUpdateBy: EnumResourceType;
|
|
19
20
|
marketId: string;
|
|
20
21
|
relationDates: RelationDate[];
|
|
21
22
|
relationType: EnumRelationResource;
|
|
22
23
|
stallholderId: string;
|
|
23
|
-
updatedAt
|
|
24
|
+
updatedAt: string;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
27
|
type StallType = {
|
|
@@ -178,10 +179,11 @@ type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "
|
|
|
178
179
|
_id: string;
|
|
179
180
|
adIds?: string[] | null;
|
|
180
181
|
createdAt: string;
|
|
182
|
+
deletedAt: string | null;
|
|
181
183
|
owner: OwnerType;
|
|
184
|
+
posterUsage?: PosterUsageType | null;
|
|
182
185
|
relationIds: string[] | null;
|
|
183
186
|
updatedAt: string;
|
|
184
|
-
posterUsage?: PosterUsageType | null;
|
|
185
187
|
};
|
|
186
188
|
type LocationType = {
|
|
187
189
|
city: string;
|
package/dist/graphql/index.cjs
CHANGED
|
@@ -168,6 +168,7 @@ var USER_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
168
168
|
...ResourceImageFields
|
|
169
169
|
}
|
|
170
170
|
createdAt
|
|
171
|
+
deletedAt
|
|
171
172
|
email
|
|
172
173
|
isTester
|
|
173
174
|
favourites {
|
|
@@ -268,6 +269,7 @@ var MARKET = import_client3.gql`
|
|
|
268
269
|
...MarketDateTimeFields
|
|
269
270
|
}
|
|
270
271
|
description
|
|
272
|
+
deletedAt
|
|
271
273
|
images {
|
|
272
274
|
...ResourceImageFields
|
|
273
275
|
}
|
|
@@ -388,6 +390,7 @@ var STALLHOLDER = import_client4.gql`
|
|
|
388
390
|
}
|
|
389
391
|
createdAt
|
|
390
392
|
description
|
|
393
|
+
deletedAt
|
|
391
394
|
images {
|
|
392
395
|
...ResourceImageFields
|
|
393
396
|
}
|
|
@@ -673,6 +676,7 @@ var CHAT_FIELDS_FRAGMENT = import_client8.gql`
|
|
|
673
676
|
chatName
|
|
674
677
|
chatType
|
|
675
678
|
createdAt
|
|
679
|
+
deletedAt
|
|
676
680
|
messages {
|
|
677
681
|
...ChatMessageFields
|
|
678
682
|
}
|
|
@@ -1464,6 +1468,7 @@ var GET_RESOURCE_CONNECTIONS = import_client29.gql`
|
|
|
1464
1468
|
...MarketDateTimeFields
|
|
1465
1469
|
}
|
|
1466
1470
|
description
|
|
1471
|
+
deletedAt
|
|
1467
1472
|
images {
|
|
1468
1473
|
...ResourceImageFields
|
|
1469
1474
|
}
|
|
@@ -1508,6 +1513,7 @@ var GET_RESOURCE_CONNECTIONS = import_client29.gql`
|
|
|
1508
1513
|
}
|
|
1509
1514
|
createdAt
|
|
1510
1515
|
description
|
|
1516
|
+
deletedAt
|
|
1511
1517
|
images {
|
|
1512
1518
|
...ResourceImageFields
|
|
1513
1519
|
}
|