shopoflex-types 1.0.62 → 1.0.64

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.
package/dist/common.d.ts CHANGED
@@ -418,6 +418,8 @@ export interface Vendor {
418
418
  currency: string;
419
419
  language: string;
420
420
  country: string;
421
+ status?: "pending" | "active" | "inactive" | "suspended" | "blocked" | "expired" | "deleted";
422
+ isLive?: boolean;
421
423
  template: {
422
424
  id: TemplateId;
423
425
  name: {
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  "use strict";
2
- // index.ts
3
2
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
3
  if (k2 === undefined) k2 = k;
5
4
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -15,7 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
15
  };
17
16
  Object.defineProperty(exports, "__esModule", { value: true });
18
- // Export everything from existing common file
19
17
  __exportStar(require("./common"), exports);
20
- // Export everything from new filters file
21
18
  __exportStar(require("./filters"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.62",
3
+ "version": "1.0.64",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",