@mercurjs/types 2.0.0-canary.52 → 2.0.0-canary.54

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,10 @@
1
+ export interface DashboardModuleOptions {
2
+ disable?: boolean;
3
+ name: string;
4
+ path?: string;
5
+ backendUrl?: string;
6
+ appDir: string;
7
+ viteDevServerPort?: number;
8
+ viteDevServerHost?: string;
9
+ }
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dashboard/index.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACrC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,MAAM,EAAE,MAAM,CAAA;IACd,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAA;CAC3B"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -6,4 +6,5 @@ export * as HttpTypes from "./http";
6
6
  export * from "./payout";
7
7
  export * from "./modules";
8
8
  export * from "./custom-fields";
9
+ export * from "./dashboard";
9
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAG/B,cAAc,UAAU,CAAA;AAGxB,cAAc,eAAe,CAAA;AAG7B,cAAc,cAAc,CAAA;AAG5B,OAAO,KAAK,SAAS,MAAM,QAAQ,CAAA;AAGnC,cAAc,UAAU,CAAA;AAGxB,cAAc,WAAW,CAAA;AAGzB,cAAc,iBAAiB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAG/B,cAAc,UAAU,CAAA;AAGxB,cAAc,eAAe,CAAA;AAG7B,cAAc,cAAc,CAAA;AAG5B,OAAO,KAAK,SAAS,MAAM,QAAQ,CAAA;AAGnC,cAAc,UAAU,CAAA;AAGxB,cAAc,WAAW,CAAA;AAGzB,cAAc,iBAAiB,CAAA;AAG/B,cAAc,aAAa,CAAA"}
package/dist/index.js CHANGED
@@ -52,3 +52,5 @@ __exportStar(require("./payout"), exports);
52
52
  __exportStar(require("./modules"), exports);
53
53
  // Custom fields types
54
54
  __exportStar(require("./custom-fields"), exports);
55
+ // UI types
56
+ __exportStar(require("./dashboard"), exports);
package/dist/modules.d.ts CHANGED
@@ -2,6 +2,8 @@ export declare enum MercurModules {
2
2
  SELLER = "seller",
3
3
  COMMISSION = "commission",
4
4
  PAYOUT = "payout",
5
- CUSTOM_FIELDS = "custom_fields"
5
+ CUSTOM_FIELDS = "custom_fields",
6
+ VENDOR_UI = "vendor_ui",
7
+ ADMIN_UI = "admin_ui"
6
8
  }
7
9
  //# sourceMappingURL=modules.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"modules.d.ts","sourceRoot":"","sources":["../src/modules.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACrB,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,aAAa,kBAAkB;CAClC"}
1
+ {"version":3,"file":"modules.d.ts","sourceRoot":"","sources":["../src/modules.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACrB,MAAM,WAAW;IACjB,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,aAAa,kBAAkB;IAC/B,SAAS,cAAc;IACvB,QAAQ,aAAa;CACxB"}
package/dist/modules.js CHANGED
@@ -7,4 +7,6 @@ var MercurModules;
7
7
  MercurModules["COMMISSION"] = "commission";
8
8
  MercurModules["PAYOUT"] = "payout";
9
9
  MercurModules["CUSTOM_FIELDS"] = "custom_fields";
10
+ MercurModules["VENDOR_UI"] = "vendor_ui";
11
+ MercurModules["ADMIN_UI"] = "admin_ui";
10
12
  })(MercurModules || (exports.MercurModules = MercurModules = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mercurjs/types",
3
- "version": "2.0.0-canary.52",
3
+ "version": "2.0.0-canary.54",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mercurjs/mercur",