@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.cjs
CHANGED
|
@@ -2947,8 +2947,8 @@ var import_client51 = require("@apollo/client");
|
|
|
2947
2947
|
|
|
2948
2948
|
// src/graphql/queries/resourceActivities.ts
|
|
2949
2949
|
var import_client50 = require("@apollo/client");
|
|
2950
|
-
var
|
|
2951
|
-
fragment
|
|
2950
|
+
var RESOURCE_ACTIVITY_FIELDS_FRAGMENT = import_client50.gql`
|
|
2951
|
+
fragment ResourceActivityFields on ResourceActivityType {
|
|
2952
2952
|
resourceId
|
|
2953
2953
|
resourceType
|
|
2954
2954
|
activity {
|
|
@@ -2972,10 +2972,10 @@ var GET_RESOURCE_ACTIVITY = import_client50.gql`
|
|
|
2972
2972
|
$resourceId: ID!
|
|
2973
2973
|
) {
|
|
2974
2974
|
resourceActivity(resourceType: $resourceType, resourceId: $resourceId) {
|
|
2975
|
-
...
|
|
2975
|
+
...ResourceActivityFields
|
|
2976
2976
|
}
|
|
2977
2977
|
}
|
|
2978
|
-
${
|
|
2978
|
+
${RESOURCE_ACTIVITY_FIELDS_FRAGMENT}
|
|
2979
2979
|
`;
|
|
2980
2980
|
|
|
2981
2981
|
// src/graphql/hooks/resourceActivities/hooksQuery.ts
|