@timardex/cluemart-shared 1.2.80 → 1.2.82
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-DqHdTra8.d.mts → ad-D48NnhkT.d.mts} +1 -1
- package/dist/{ad-DSmKSsTb.d.ts → ad-DO7Bc9PE.d.ts} +1 -1
- package/dist/{auth-BrHc7F3F.d.ts → auth-D0FKzjLe.d.ts} +1 -1
- package/dist/{auth-DNyMaw8s.d.mts → auth-zy1P_DKw.d.mts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-DMEHvs8T.d.ts → global-BYQMdxtO.d.ts} +2 -4
- package/dist/{global-B5H2ZG1e.d.mts → global-CLsysATK.d.mts} +2 -4
- package/dist/graphql/index.cjs +19 -18
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +19 -18
- 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 +19 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.mjs +19 -18
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _apollo_client from '@apollo/client';
|
|
2
2
|
import { EnumResourceType } from '../enums/index.mjs';
|
|
3
3
|
import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-CJRTZROh.mjs';
|
|
4
|
-
import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-
|
|
5
|
-
import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-
|
|
4
|
+
import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-CLsysATK.mjs';
|
|
5
|
+
import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-D48NnhkT.mjs';
|
|
6
6
|
import 'react-hook-form';
|
|
7
7
|
|
|
8
8
|
declare const useAdminUpdateResourceType: () => {
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _apollo_client from '@apollo/client';
|
|
2
2
|
import { EnumResourceType } from '../enums/index.js';
|
|
3
3
|
import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-CVwxvGeC.js';
|
|
4
|
-
import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-
|
|
5
|
-
import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-
|
|
4
|
+
import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-BYQMdxtO.js';
|
|
5
|
+
import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-DO7Bc9PE.js';
|
|
6
6
|
import 'react-hook-form';
|
|
7
7
|
|
|
8
8
|
declare const useAdminUpdateResourceType: () => {
|
package/dist/graphql/index.mjs
CHANGED
|
@@ -89,6 +89,15 @@ var LICENCE_FIELDS_FRAGMENT = gql2`
|
|
|
89
89
|
licenceType
|
|
90
90
|
}
|
|
91
91
|
`;
|
|
92
|
+
var EVENT_DATETIME_FIELDS_FRAGMENT = gql2`
|
|
93
|
+
fragment EventDateTimeFields on EventDateTimeType {
|
|
94
|
+
dateStatus
|
|
95
|
+
endDate
|
|
96
|
+
endTime
|
|
97
|
+
startDate
|
|
98
|
+
startTime
|
|
99
|
+
}
|
|
100
|
+
`;
|
|
92
101
|
var USER_ACTIVITY_FIELDS_FRAGMENT = gql2`
|
|
93
102
|
fragment UserActivityFields on UserActivityType {
|
|
94
103
|
favourites {
|
|
@@ -97,29 +106,30 @@ var USER_ACTIVITY_FIELDS_FRAGMENT = gql2`
|
|
|
97
106
|
}
|
|
98
107
|
going {
|
|
99
108
|
events {
|
|
100
|
-
dateStatus
|
|
101
109
|
resourceId
|
|
102
|
-
|
|
103
|
-
|
|
110
|
+
dateTime {
|
|
111
|
+
...EventDateTimeFields
|
|
112
|
+
}
|
|
104
113
|
}
|
|
105
114
|
}
|
|
106
115
|
interested {
|
|
107
116
|
events {
|
|
108
|
-
dateStatus
|
|
109
117
|
resourceId
|
|
110
|
-
|
|
111
|
-
|
|
118
|
+
dateTime {
|
|
119
|
+
...EventDateTimeFields
|
|
120
|
+
}
|
|
112
121
|
}
|
|
113
122
|
}
|
|
114
123
|
present {
|
|
115
124
|
events {
|
|
116
|
-
dateStatus
|
|
117
125
|
resourceId
|
|
118
|
-
|
|
119
|
-
|
|
126
|
+
dateTime {
|
|
127
|
+
...EventDateTimeFields
|
|
128
|
+
}
|
|
120
129
|
}
|
|
121
130
|
}
|
|
122
131
|
}
|
|
132
|
+
${EVENT_DATETIME_FIELDS_FRAGMENT}
|
|
123
133
|
`;
|
|
124
134
|
var USER_FIELDS_FRAGMENT = gql2`
|
|
125
135
|
fragment UserFields on UserType {
|
|
@@ -213,15 +223,6 @@ var LOCATION_FIELDS_FRAGMENT = gql2`
|
|
|
213
223
|
`;
|
|
214
224
|
|
|
215
225
|
// src/graphql/queries/event.ts
|
|
216
|
-
var EVENT_DATETIME_FIELDS_FRAGMENT = gql3`
|
|
217
|
-
fragment EventDateTimeFields on EventDateTimeType {
|
|
218
|
-
dateStatus
|
|
219
|
-
endDate
|
|
220
|
-
endTime
|
|
221
|
-
startDate
|
|
222
|
-
startTime
|
|
223
|
-
}
|
|
224
|
-
`;
|
|
225
226
|
var EVENT_INFO = gql3`
|
|
226
227
|
fragment EventInfoFields on EventInfoType {
|
|
227
228
|
_id
|