@sellout/models 0.0.366 → 0.0.367

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 SEASONS_DROPDOWN_QUERY: import("@apollo/client").DocumentNode;
2
+ export default SEASONS_DROPDOWN_QUERY;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const client_1 = require("@apollo/client");
4
+ const SEASONS_DROPDOWN_QUERY = (0, client_1.gql) `
5
+ query seasonsDropdown($query: SeasonQueryInput) {
6
+ seasons(query: $query) {
7
+ _id
8
+ name
9
+ published
10
+ venueId
11
+ seatingChartKey
12
+ schedule {
13
+ startsAt
14
+ endsAt
15
+ }
16
+ }
17
+ }
18
+ `;
19
+ exports.default = SEASONS_DROPDOWN_QUERY;
20
+ //# sourceMappingURL=seasonsDropdown.query.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"seasonsDropdown.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/seasonsDropdown.query.ts"],"names":[],"mappings":";;AAAA,2CAAqC;AAErC,MAAM,sBAAsB,GAAG,IAAA,YAAG,EAAA;;;;;;;;;;;;;;CAcjC,CAAC;AAEF,kBAAe,sBAAsB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellout/models",
3
- "version": "0.0.366",
3
+ "version": "0.0.367",
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.366",
21
+ "@sellout/utils": "^0.0.367",
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": "b167d31bdd9d1e6c130b04782ac8251696929554"
35
+ "gitHead": "f077d68de4c1f1878031b689b8a59dd5dfc75530"
36
36
  }
@@ -0,0 +1,19 @@
1
+ import { gql } from "@apollo/client";
2
+
3
+ const SEASONS_DROPDOWN_QUERY = gql`
4
+ query seasonsDropdown($query: SeasonQueryInput) {
5
+ seasons(query: $query) {
6
+ _id
7
+ name
8
+ published
9
+ venueId
10
+ seatingChartKey
11
+ schedule {
12
+ startsAt
13
+ endsAt
14
+ }
15
+ }
16
+ }
17
+ `;
18
+
19
+ export default SEASONS_DROPDOWN_QUERY;