@timardex/cluemart-shared 1.5.586 → 1.5.587
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/{chunk-YGKLLYKV.mjs → chunk-P52HS2NB.mjs} +15 -2
- package/dist/chunk-P52HS2NB.mjs.map +1 -0
- package/dist/graphql/index.cjs +14 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +9 -1
- package/dist/graphql/index.d.ts +9 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +14 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.mjs +14 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-YGKLLYKV.mjs.map +0 -1
package/dist/graphql/index.d.mts
CHANGED
|
@@ -212,7 +212,15 @@ declare const useCreateEvent: () => {
|
|
|
212
212
|
declare const useUpdateEvent: () => {
|
|
213
213
|
error: _apollo_client.ApolloError | undefined;
|
|
214
214
|
loading: boolean;
|
|
215
|
-
updateEvent: (options?: _apollo_client.MutationFunctionOptions<
|
|
215
|
+
updateEvent: (options?: _apollo_client.MutationFunctionOptions<{
|
|
216
|
+
updateEvent: {
|
|
217
|
+
_id: string;
|
|
218
|
+
};
|
|
219
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
220
|
+
updateEvent: {
|
|
221
|
+
_id: string;
|
|
222
|
+
};
|
|
223
|
+
}>>;
|
|
216
224
|
};
|
|
217
225
|
declare const useDeleteEvent: () => {
|
|
218
226
|
deleteEvent: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -212,7 +212,15 @@ declare const useCreateEvent: () => {
|
|
|
212
212
|
declare const useUpdateEvent: () => {
|
|
213
213
|
error: _apollo_client.ApolloError | undefined;
|
|
214
214
|
loading: boolean;
|
|
215
|
-
updateEvent: (options?: _apollo_client.MutationFunctionOptions<
|
|
215
|
+
updateEvent: (options?: _apollo_client.MutationFunctionOptions<{
|
|
216
|
+
updateEvent: {
|
|
217
|
+
_id: string;
|
|
218
|
+
};
|
|
219
|
+
}, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<{
|
|
220
|
+
updateEvent: {
|
|
221
|
+
_id: string;
|
|
222
|
+
};
|
|
223
|
+
}>>;
|
|
216
224
|
};
|
|
217
225
|
declare const useDeleteEvent: () => {
|
|
218
226
|
deleteEvent: (options?: _apollo_client.MutationFunctionOptions<any, _apollo_client.OperationVariables, _apollo_client.DefaultContext, _apollo_client.ApolloCache<any>> | undefined) => Promise<_apollo_client.FetchResult<any>>;
|
package/dist/graphql/index.mjs
CHANGED