@sellout/models 0.0.181 → 0.0.182

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.
@@ -5,8 +5,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const graphql_tag_1 = __importDefault(require("graphql-tag"));
7
7
  const mutation = (0, graphql_tag_1.default) `
8
- mutation createEventOrSeasonFee($eventId: String,$seasonId: String, $fee: FeeInput!) {
9
- createEventOrSeasonFee(eventId: $eventId,seasonId: $seasonId, fee: $fee) {
8
+ mutation createEventOrSeasonFee($orgId: String,$eventId: String,$seasonId: String, $fee: FeeInput!) {
9
+ createEventOrSeasonFee(orgId: $orgId,eventId: $eventId,seasonId: $seasonId, fee: $fee) {
10
10
  _id
11
11
  name
12
12
  eventId
@@ -5,8 +5,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const graphql_tag_1 = __importDefault(require("graphql-tag"));
7
7
  const mutation = (0, graphql_tag_1.default) `
8
- mutation updateEventOrSeasonFee($eventId: String,$seasonId: String, $fee: FeeInput!) {
9
- updateEventOrSeasonFee(eventId: $eventId,seasonId: $seasonId, fee: $fee) {
8
+ mutation updateEventOrSeasonFee($orgId: String,$eventId: String,$seasonId: String, $fee: FeeInput!) {
9
+ updateEventOrSeasonFee(orgId: $orgId,eventId: $eventId,seasonId: $seasonId, fee: $fee) {
10
10
  _id
11
11
  name
12
12
  orgId
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellout/models",
3
- "version": "0.0.181",
3
+ "version": "0.0.182",
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.181",
20
+ "@sellout/utils": "^0.0.182",
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": "f34b193d8760e119c5738c59bf2aacc952a50219"
34
+ "gitHead": "6a8b4c52bee398ab0a955e09e81561434b4c00ce"
35
35
  }
@@ -1,8 +1,8 @@
1
1
  import gql from 'graphql-tag';
2
2
 
3
3
  const mutation = gql`
4
- mutation createEventOrSeasonFee($eventId: String,$seasonId: String, $fee: FeeInput!) {
5
- createEventOrSeasonFee(eventId: $eventId,seasonId: $seasonId, fee: $fee) {
4
+ mutation createEventOrSeasonFee($orgId: String,$eventId: String,$seasonId: String, $fee: FeeInput!) {
5
+ createEventOrSeasonFee(orgId: $orgId,eventId: $eventId,seasonId: $seasonId, fee: $fee) {
6
6
  _id
7
7
  name
8
8
  eventId
@@ -1,8 +1,8 @@
1
1
  import gql from 'graphql-tag';
2
2
 
3
3
  const mutation = gql`
4
- mutation updateEventOrSeasonFee($eventId: String,$seasonId: String, $fee: FeeInput!) {
5
- updateEventOrSeasonFee(eventId: $eventId,seasonId: $seasonId, fee: $fee) {
4
+ mutation updateEventOrSeasonFee($orgId: String,$eventId: String,$seasonId: String, $fee: FeeInput!) {
5
+ updateEventOrSeasonFee(orgId: $orgId,eventId: $eventId,seasonId: $seasonId, fee: $fee) {
6
6
  _id
7
7
  name
8
8
  orgId