@sellout/models 0.0.342 → 0.0.343

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,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"}
@@ -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
  }