@timardex/cluemart-shared 1.3.49 → 1.3.50
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/graphql/index.cjs +4 -4
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +4 -4
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/graphql/index.mjs
CHANGED
|
@@ -2812,8 +2812,8 @@ import { useQuery as useQuery9 } from "@apollo/client";
|
|
|
2812
2812
|
|
|
2813
2813
|
// src/graphql/queries/resourceActivities.ts
|
|
2814
2814
|
import { gql as gql27 } from "@apollo/client";
|
|
2815
|
-
var
|
|
2816
|
-
fragment
|
|
2815
|
+
var RESOURCE_ACTIVITY_FIELDS_FRAGMENT = gql27`
|
|
2816
|
+
fragment ResourceActivityFields on ResourceActivityType {
|
|
2817
2817
|
resourceId
|
|
2818
2818
|
resourceType
|
|
2819
2819
|
activity {
|
|
@@ -2837,10 +2837,10 @@ var GET_RESOURCE_ACTIVITY = gql27`
|
|
|
2837
2837
|
$resourceId: ID!
|
|
2838
2838
|
) {
|
|
2839
2839
|
resourceActivity(resourceType: $resourceType, resourceId: $resourceId) {
|
|
2840
|
-
...
|
|
2840
|
+
...ResourceActivityFields
|
|
2841
2841
|
}
|
|
2842
2842
|
}
|
|
2843
|
-
${
|
|
2843
|
+
${RESOURCE_ACTIVITY_FIELDS_FRAGMENT}
|
|
2844
2844
|
`;
|
|
2845
2845
|
|
|
2846
2846
|
// src/graphql/hooks/resourceActivities/hooksQuery.ts
|