@sellout/models 0.0.186 → 0.0.187

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.
@@ -0,0 +1,2 @@
1
+ declare const mutation: import("graphql").DocumentNode;
2
+ export default mutation;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const graphql_tag_1 = __importDefault(require("graphql-tag"));
7
+ const mutation = (0, graphql_tag_1.default) `
8
+ mutation generateActivityReport($query: OrderQueryInput) {
9
+ generateActivityReport(query: $query) {
10
+ url
11
+ message
12
+ __typename
13
+ }
14
+ }
15
+
16
+ `;
17
+ exports.default = mutation;
18
+ //# sourceMappingURL=generateActivityReport.mutation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generateActivityReport.mutation.js","sourceRoot":"","sources":["../../../src/graphql/mutations/generateActivityReport.mutation.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,QAAQ,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;CASnB,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellout/models",
3
- "version": "0.0.186",
3
+ "version": "0.0.187",
4
4
  "description": "Sellout.io models",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "license": "MIT",
18
18
  "dependencies": {
19
19
  "@hapi/joi": "^16.1.7",
20
- "@sellout/utils": "^0.0.186",
20
+ "@sellout/utils": "^0.0.187",
21
21
  "@types/hapi__joi": "^16.0.1",
22
22
  "@types/shortid": "^0.0.29",
23
23
  "apollo-link-debounce": "^2.1.0",
@@ -31,5 +31,5 @@
31
31
  "protobufjs": "^6.11.2",
32
32
  "typescript": "^4.4.2"
33
33
  },
34
- "gitHead": "1c68cac6fe449160b4d40401e46899dddab113b0"
34
+ "gitHead": "c7dbcd63ad7c3a20bf8d0671c9c45ced0e5f8986"
35
35
  }
@@ -0,0 +1,14 @@
1
+ import gql from 'graphql-tag';
2
+
3
+ const mutation = gql`
4
+ mutation generateActivityReport($query: OrderQueryInput) {
5
+ generateActivityReport(query: $query) {
6
+ url
7
+ message
8
+ __typename
9
+ }
10
+ }
11
+
12
+ `;
13
+
14
+ export default mutation;