@sellout/models 0.0.317 → 0.0.319

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("@apollo/client").DocumentNode;
2
+ export default mutation;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const client_1 = require("@apollo/client");
4
+ const mutation = (0, client_1.gql) `
5
+ mutation ScanOrder(
6
+ $orderId: String!
7
+ $ticketIds: [String]!
8
+ $upgradeIds: [String]!
9
+ $name: String
10
+ $pagination: PaginationInput
11
+ ) {
12
+ scanOrder(
13
+ orderId: $orderId
14
+ ticketIds: $ticketIds
15
+ upgradeIds: $upgradeIds
16
+ name: $name
17
+ pagination: $pagination
18
+ )
19
+ }
20
+ `;
21
+ exports.default = mutation;
22
+ //# sourceMappingURL=scanOrder.mutation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scanOrder.mutation.js","sourceRoot":"","sources":["../../../src/graphql/mutations/scanOrder.mutation.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AAEnC,MAAM,QAAQ,GAAG,IAAA,YAAG,EAAA;;;;;;;;;;;;;;;;CAgBnB,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellout/models",
3
- "version": "0.0.317",
3
+ "version": "0.0.319",
4
4
  "description": "Sellout.io models",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,7 +18,7 @@
18
18
  "dependencies": {
19
19
  "@apollo/client": "^3.9.6",
20
20
  "@hapi/joi": "^17.1.1",
21
- "@sellout/utils": "^0.0.317",
21
+ "@sellout/utils": "^0.0.319",
22
22
  "@types/hapi__joi": "^16.0.1",
23
23
  "@types/shortid": "^0.0.29",
24
24
  "@types/zen-observable": "^0.8.7",
@@ -32,5 +32,5 @@
32
32
  "protobufjs": "^6.11.2",
33
33
  "typescript": "^4.9.5"
34
34
  },
35
- "gitHead": "3b6aee5bb5f57fc4d1a92fc77461b92ff3127878"
35
+ "gitHead": "c665ac4456b2a13d5ba10a3b37b2775853076ab6"
36
36
  }
@@ -0,0 +1,21 @@
1
+ import {gql} from '@apollo/client';
2
+
3
+ const mutation = gql`
4
+ mutation ScanOrder(
5
+ $orderId: String!
6
+ $ticketIds: [String]!
7
+ $upgradeIds: [String]!
8
+ $name: String
9
+ $pagination: PaginationInput
10
+ ) {
11
+ scanOrder(
12
+ orderId: $orderId
13
+ ticketIds: $ticketIds
14
+ upgradeIds: $upgradeIds
15
+ name: $name
16
+ pagination: $pagination
17
+ )
18
+ }
19
+ `;
20
+
21
+ export default mutation;