@sellout/models 0.0.34 → 0.0.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellout/models",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "description": "Sellout.io models",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -16,8 +16,8 @@
16
16
  "author": "samheutmaker@gmail.com",
17
17
  "license": "MIT",
18
18
  "dependencies": {
19
- "@sellout/service": "^0.0.34",
20
- "@sellout/utils": "^0.0.34",
19
+ "@sellout/service": "^0.0.36",
20
+ "@sellout/utils": "^0.0.36",
21
21
  "@types/shortid": "0.0.29",
22
22
  "graphql": "^14.6.0",
23
23
  "graphql-tag": "^2.10.3",
@@ -29,5 +29,5 @@
29
29
  "protobufjs": "~6.8.8",
30
30
  "typescript": "^3.8.3"
31
31
  },
32
- "gitHead": "596ef3fc7c26a4f6dc832160e0169d155cf04189"
32
+ "gitHead": "ceb1b397ac0e0e863b3e8b0c01fccf1e64ba1ed7"
33
33
  }
@@ -1,2 +0,0 @@
1
- declare const mutation: import("graphql").DocumentNode;
2
- export default mutation;
@@ -1,52 +0,0 @@
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 event_fragment_1 = __importDefault(require("../fragments/event.fragment"));
8
- const mutation = graphql_tag_1.default `
9
- mutation createEvent($event: EventInput!) {
10
- createEvent(event: $event) {
11
- _id
12
- orgId
13
- type
14
- name
15
- subtitle
16
- description
17
- userAgreement
18
- processAs
19
- posterImageUrl
20
- venueId
21
- createdAt
22
- publishable
23
- seatingChartKey
24
- age
25
- sendQRCode
26
- ...EventSchedule
27
- ...Location
28
- ...Performances
29
- ...TicketTypes
30
- ...TicketHolds
31
- ...EventUpgrades
32
- ...EventPromotions
33
- ...EventCustomFields
34
- ...TicketExchange
35
- ...Fees
36
- }
37
- }
38
-
39
- ${event_fragment_1.default.fragments.schedule}
40
- ${event_fragment_1.default.fragments.location}
41
- ${event_fragment_1.default.fragments.performances}
42
- ${event_fragment_1.default.fragments.ticketTypes}
43
- ${event_fragment_1.default.fragments.holds}
44
- ${event_fragment_1.default.fragments.upgrades}
45
- ${event_fragment_1.default.fragments.promotions}
46
- ${event_fragment_1.default.fragments.customFields}
47
- ${event_fragment_1.default.fragments.exchange}
48
- ${event_fragment_1.default.fragments.fees}
49
-
50
- `;
51
- exports.default = mutation;
52
- //# sourceMappingURL=what.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"what.js","sourceRoot":"","sources":["../../../src/graphql/mutations/what.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAC9B,iFAAgD;AAEhD,MAAM,QAAQ,GAAG,qBAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+BhB,wBAAK,CAAC,SAAS,CAAC,QAAQ;IACxB,wBAAK,CAAC,SAAS,CAAC,QAAQ;IACxB,wBAAK,CAAC,SAAS,CAAC,YAAY;IAC5B,wBAAK,CAAC,SAAS,CAAC,WAAW;IAC3B,wBAAK,CAAC,SAAS,CAAC,KAAK;IACrB,wBAAK,CAAC,SAAS,CAAC,QAAQ;IACxB,wBAAK,CAAC,SAAS,CAAC,UAAU;IAC1B,wBAAK,CAAC,SAAS,CAAC,YAAY;IAC5B,wBAAK,CAAC,SAAS,CAAC,QAAQ;IACxB,wBAAK,CAAC,SAAS,CAAC,IAAI;;CAEvB,CAAC;AAEF,kBAAe,QAAQ,CAAA"}
@@ -1,2 +0,0 @@
1
- declare const query: import("graphql").DocumentNode;
2
- export default query;
@@ -1,51 +0,0 @@
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 query = graphql_tag_1.default `
8
- query artists($query: ArtistQueryInput, $pagination: PaginationInput) {
9
- artists(query: $query, pagination: $pagination) {
10
- _id
11
- name
12
- genres
13
- socialAccounts {
14
- _id
15
- platform
16
- link
17
- }
18
- pressKits {
19
- _id
20
- title
21
- description
22
- posterImageUrls
23
- links {
24
- platform
25
- link
26
- }
27
- }
28
- metrics {
29
- lifeTimeTicketsPurchased
30
- lifeTimeTicketsRefunded
31
- lifeTimeUpgradesPurchased
32
- lifeTimeUpgradesRefunded
33
- lifeTimeValue
34
- lifeTimeValueRefunded
35
- }
36
- contacts {
37
- _id
38
- firstName
39
- lastName
40
- title
41
- company
42
- email
43
- phoneNumber
44
- }
45
- artistGlobalId
46
- orgId
47
- }
48
- }
49
- `;
50
- exports.default = query;
51
- //# sourceMappingURL=artists.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"artists.js","sourceRoot":"","sources":["../../../src/graphql/queries/artists.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,KAAK,GAAG,qBAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0ChB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
@@ -1,2 +0,0 @@
1
- declare const query: import("graphql").DocumentNode;
2
- export default query;
@@ -1,51 +0,0 @@
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 query = graphql_tag_1.default `
8
- query artists($query: ArtistQueryInput, $pagination: PaginationInput) {
9
- artists(query: $query, pagination: $pagination) {
10
- _id
11
- name
12
- genres
13
- socialAccounts {
14
- _id
15
- platform
16
- link
17
- }
18
- pressKits {
19
- _id
20
- title
21
- description
22
- posterImageUrls
23
- links {
24
- platform
25
- link
26
- }
27
- }
28
- metrics {
29
- lifeTimeTicketsPurchased
30
- lifeTimeTicketsRefunded
31
- lifeTimeUpgradesPurchased
32
- lifeTimeUpgradesRefunded
33
- lifeTimeValue
34
- lifeTimeValueRefunded
35
- }
36
- contacts {
37
- _id
38
- firstName
39
- lastName
40
- title
41
- company
42
- email
43
- phoneNumber
44
- }
45
- artistGlobalId
46
- orgId
47
- }
48
- }
49
- `;
50
- exports.default = query;
51
- //# sourceMappingURL=listArtists.query.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"listArtists.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/listArtists.query.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,KAAK,GAAG,qBAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0ChB,CAAC;AAEF,kBAAe,KAAK,CAAC"}