@nimee/shared-types 1.0.179 → 1.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.
@@ -4,6 +4,10 @@ export declare enum IMailProvider {
4
4
  sendgrid = "sendgrid",
5
5
  inforu = "inforu"
6
6
  }
7
+ export declare enum MainPageEnum {
8
+ PRIVATE_CLUB = "private_club",
9
+ DEFAULT = "default"
10
+ }
7
11
  export interface IMarketPlace {
8
12
  _id: string;
9
13
  baseAppURL: string;
@@ -1,9 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IMailProvider = void 0;
3
+ exports.MainPageEnum = exports.IMailProvider = void 0;
4
4
  var IMailProvider;
5
5
  (function (IMailProvider) {
6
6
  IMailProvider["sendgrid"] = "sendgrid";
7
7
  IMailProvider["inforu"] = "inforu";
8
8
  })(IMailProvider || (exports.IMailProvider = IMailProvider = {}));
9
+ // MainPage enum holds the possible values for the main page of the app
10
+ var MainPageEnum;
11
+ (function (MainPageEnum) {
12
+ MainPageEnum["PRIVATE_CLUB"] = "private_club";
13
+ MainPageEnum["DEFAULT"] = "default";
14
+ })(MainPageEnum || (exports.MainPageEnum = MainPageEnum = {}));
9
15
  //# sourceMappingURL=marketPlace.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"marketPlace.js","sourceRoot":"","sources":["../../src/account/marketPlace.ts"],"names":[],"mappings":";;;AAEA,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,sCAAqB,CAAA;IACrB,kCAAiB,CAAA;AACnB,CAAC,EAHW,aAAa,6BAAb,aAAa,QAGxB"}
1
+ {"version":3,"file":"marketPlace.js","sourceRoot":"","sources":["../../src/account/marketPlace.ts"],"names":[],"mappings":";;;AAEA,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,sCAAqB,CAAA;IACrB,kCAAiB,CAAA;AACnB,CAAC,EAHW,aAAa,6BAAb,aAAa,QAGxB;AAED,uEAAuE;AACvE,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,6CAA6B,CAAA;IAC7B,mCAAmB,CAAA;AACrB,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.179",
3
+ "version": "1.0.182",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -4,6 +4,13 @@ export enum IMailProvider {
4
4
  sendgrid = "sendgrid",
5
5
  inforu = "inforu",
6
6
  }
7
+
8
+ // MainPage enum holds the possible values for the main page of the app
9
+ export enum MainPageEnum {
10
+ PRIVATE_CLUB = "private_club",
11
+ DEFAULT = "default",
12
+ }
13
+
7
14
  export interface IMarketPlace {
8
15
  _id: string;
9
16
  baseAppURL: string;