@timardex/cluemart-shared 1.1.63 → 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.
@@ -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-BOVdzmL2.mjs';
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,7 +38,9 @@ interface UserType {
38
38
  active: boolean;
39
39
  avatar: ResourceImageType | null;
40
40
  createdAt: string;
41
+ deletedAt: string | null;
41
42
  email: string;
43
+ isTester: boolean;
42
44
  favourites: {
43
45
  markets: string[];
44
46
  stallholders: string[];
@@ -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-Caqz9-iq.js';
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,7 +38,9 @@ interface UserType {
38
38
  active: boolean;
39
39
  avatar: ResourceImageType | null;
40
40
  createdAt: string;
41
+ deletedAt: string | null;
41
42
  email: string;
43
+ isTester: boolean;
42
44
  favourites: {
43
45
  markets: string[];
44
46
  stallholders: string[];
@@ -1,4 +1,4 @@
1
- import { w as CreateFormData } from './global-Caqz9-iq.js';
1
+ import { w as CreateFormData } from './global-D0x3B0sV.js';
2
2
  import { EnumOSPlatform } from './enums/index.js';
3
3
 
4
4
  type ContactUsFormData = {
@@ -1,4 +1,4 @@
1
- import { w as CreateFormData } from './global-BOVdzmL2.mjs';
1
+ import { w as CreateFormData } from './global-Dv7IC_sT.mjs';
2
2
  import { EnumOSPlatform } from './enums/index.mjs';
3
3
 
4
4
  type ContactUsFormData = {
@@ -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-BOVdzmL2.mjs';
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-Caqz9-iq.js';
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?: string;
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?: string;
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?: string;
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?: string;
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;
@@ -168,7 +168,9 @@ var USER_FIELDS_FRAGMENT = import_client2.gql`
168
168
  ...ResourceImageFields
169
169
  }
170
170
  createdAt
171
+ deletedAt
171
172
  email
173
+ isTester
172
174
  favourites {
173
175
  markets
174
176
  stallholders
@@ -267,6 +269,7 @@ var MARKET = import_client3.gql`
267
269
  ...MarketDateTimeFields
268
270
  }
269
271
  description
272
+ deletedAt
270
273
  images {
271
274
  ...ResourceImageFields
272
275
  }
@@ -387,6 +390,7 @@ var STALLHOLDER = import_client4.gql`
387
390
  }
388
391
  createdAt
389
392
  description
393
+ deletedAt
390
394
  images {
391
395
  ...ResourceImageFields
392
396
  }
@@ -672,6 +676,7 @@ var CHAT_FIELDS_FRAGMENT = import_client8.gql`
672
676
  chatName
673
677
  chatType
674
678
  createdAt
679
+ deletedAt
675
680
  messages {
676
681
  ...ChatMessageFields
677
682
  }
@@ -1463,6 +1468,7 @@ var GET_RESOURCE_CONNECTIONS = import_client29.gql`
1463
1468
  ...MarketDateTimeFields
1464
1469
  }
1465
1470
  description
1471
+ deletedAt
1466
1472
  images {
1467
1473
  ...ResourceImageFields
1468
1474
  }
@@ -1507,6 +1513,7 @@ var GET_RESOURCE_CONNECTIONS = import_client29.gql`
1507
1513
  }
1508
1514
  createdAt
1509
1515
  description
1516
+ deletedAt
1510
1517
  images {
1511
1518
  ...ResourceImageFields
1512
1519
  }