@sellout/models 0.0.342 → 0.0.344

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,10 @@
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 deleteOrganization($organization: String!) {
6
+ deleteOrganization(organization: $organization)
7
+ }
8
+ `;
9
+ exports.default = mutation;
10
+ //# sourceMappingURL=deleteSuperAdminOrg.mutation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deleteSuperAdminOrg.mutation.js","sourceRoot":"","sources":["../../../src/graphql/mutations/deleteSuperAdminOrg.mutation.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AAEnC,MAAM,QAAQ,GAAG,IAAA,YAAG,EAAA;;;;CAInB,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
@@ -12,7 +12,7 @@ const query = (0, client_1.gql) `
12
12
  userId
13
13
  printed
14
14
  email
15
- sharing{
15
+ sharing {
16
16
  email
17
17
  phoneNumber
18
18
  tickets
@@ -20,7 +20,11 @@ const query = (0, client_1.gql) `
20
20
  eventName
21
21
  orderId
22
22
  status
23
- }
23
+ }
24
+ parentOrderDetails {
25
+ email
26
+ phoneNumber
27
+ }
24
28
  user {
25
29
  email
26
30
  firstName
@@ -30,6 +34,7 @@ const query = (0, client_1.gql) `
30
34
  imageUrl
31
35
  }
32
36
  }
37
+ parentOrderId
33
38
  orgId
34
39
  eventId
35
40
  seasonId
@@ -1 +1 @@
1
- {"version":3,"file":"order.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/order.query.ts"],"names":[],"mappings":";;;;;AAAA,2CAAqC;AACrC,iFAAgD;AAEhD,MAAM,KAAK,GAAG,IAAA,YAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmMb,wBAAK,CAAC,SAAS,CAAC,OAAO;IACvB,wBAAK,CAAC,SAAS,CAAC,QAAQ;IACxB,wBAAK,CAAC,SAAS,CAAC,UAAU;CAC7B,CAAC;AAEF,kBAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"order.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/order.query.ts"],"names":[],"mappings":";;;;;AAAA,2CAAqC;AACrC,iFAAgD;AAEhD,MAAM,KAAK,GAAG,IAAA,YAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwMb,wBAAK,CAAC,SAAS,CAAC,OAAO;IACvB,wBAAK,CAAC,SAAS,CAAC,QAAQ;IACxB,wBAAK,CAAC,SAAS,CAAC,UAAU;CAC7B,CAAC;AAEF,kBAAe,KAAK,CAAC"}
@@ -12,6 +12,7 @@ const query = (0, client_1.gql) `
12
12
  orgUrls
13
13
  orgLogoUrl
14
14
  createdAt
15
+ isOrgDeletable
15
16
  address {
16
17
  address1
17
18
  address2
@@ -1 +1 @@
1
- {"version":3,"file":"organizations.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/organizations.query.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AAEnC,MAAM,KAAK,GAAG,IAAA,YAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4ChB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
1
+ {"version":3,"file":"organizations.query.js","sourceRoot":"","sources":["../../../src/graphql/queries/organizations.query.ts"],"names":[],"mappings":";;AAAA,2CAAmC;AAEnC,MAAM,KAAK,GAAG,IAAA,YAAG,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6ChB,CAAC;AAEF,kBAAe,KAAK,CAAC"}
@@ -57,6 +57,7 @@ export default interface IOrder {
57
57
  sharing?: [IOrderShareEnum];
58
58
  orderIntegrationResponse?: IOrderIntegrationResponse[];
59
59
  parentOrderId?: string;
60
+ parentOrderDetails?: ParentOrderDetails;
60
61
  }
61
62
  export interface IEventGraphQL extends IEvent {
62
63
  venue?: IVenue;
@@ -64,6 +65,11 @@ export interface IEventGraphQL extends IEvent {
64
65
  export interface ISeasonGraphQL extends ISeason {
65
66
  venue?: IVenue;
66
67
  }
68
+ export interface ParentOrderDetails {
69
+ email: string;
70
+ phoneNumber: string;
71
+ __typename: string;
72
+ }
67
73
  export interface IOrderGraphQL extends IOrder {
68
74
  user: IUser;
69
75
  fees: IFee[];
@@ -2,4 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  ;
4
4
  ;
5
+ ;
5
6
  //# sourceMappingURL=IOrder.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"IOrder.js","sourceRoot":"","sources":["../../src/interfaces/IOrder.ts"],"names":[],"mappings":";;AA6DC,CAAC;AAeD,CAAC"}
1
+ {"version":3,"file":"IOrder.js","sourceRoot":"","sources":["../../src/interfaces/IOrder.ts"],"names":[],"mappings":";;AA8DC,CAAC;AAcD,CAAC;AAOD,CAAC"}
@@ -29,4 +29,5 @@ export default interface IOrganization {
29
29
  ticketFormat?: string;
30
30
  locationId?: string;
31
31
  orderIntegration?: IOrderIntegration;
32
+ isOrgDeletable?: boolean;
32
33
  }