@sellout/models 0.0.112 → 0.0.117

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.
@@ -18,18 +18,6 @@ const query = (0, graphql_tag_1.default) `
18
18
  phoneNumber
19
19
  }
20
20
  stripeCustomerId
21
- stripeCustomer {
22
- paymentMethods {
23
- paymentMethodId
24
- brand
25
- last4
26
- expMonth
27
- expYear
28
- funding
29
- country
30
- type
31
- }
32
- }
33
21
  analytics {
34
22
  label
35
23
  type
@@ -1 +1 @@
1
- {"version":3,"file":"customerProfile.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/customerProfile.query.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,KAAK,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8ChB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"customerProfile.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/customerProfile.query.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,KAAK,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkChB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
@@ -5,9 +5,12 @@ 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 query = (0, graphql_tag_1.default) `
8
- query userExists($email: String) {
9
- userExists(email: $email) {
8
+ query userExists($email: String,$phoneNumber: String) {
9
+ userExists(email: $email,phoneNumber:$phoneNumber) {
10
10
  userId
11
+ firstName
12
+ lastName
13
+ email
11
14
  hasPassword
12
15
  phoneNumberVerifiedAt
13
16
  preferredLogin
@@ -1 +1 @@
1
- {"version":3,"file":"userExists.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/userExists.query.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,KAAK,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;CAShB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"userExists.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/userExists.query.ts"],"names":[],"mappings":";;;;;AAAA,8DAA8B;AAE9B,MAAM,KAAK,GAAG,IAAA,qBAAG,EAAA;;;;;;;;;;;;CAYhB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
@@ -68,6 +68,7 @@ export default interface IEvent {
68
68
  published?: boolean;
69
69
  salesBeginImmediately?: boolean;
70
70
  cancel?: boolean;
71
+ fees: IFee[];
71
72
  }
72
73
  export interface IEventGraphQL extends IEvent {
73
74
  organization?: IOrganization;