oneentry 1.0.101 → 1.0.102

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.
@@ -52,9 +52,9 @@ interface IProductsQuery {
52
52
  * 'exs' - Exists,
53
53
  * 'nexs' - Does not exist
54
54
  */
55
- conditionMarker?: 'in' | 'nin' | 'eq' | 'neq' | 'mth' | 'lth' | 'exs' | 'nexs' | null;
55
+ conditionMarker?: "in" | "nin" | "eq" | "neq" | "mth" | "lth" | "exs" | "nexs" | null;
56
56
  attributeMarker?: string | null;
57
- sortOrder?: 'DESC' | 'ASC' | null;
57
+ sortOrder?: "DESC" | "ASC" | null;
58
58
  sortKey?: "id" | "position" | "title" | "date" | "price" | null;
59
59
  [key: string]: string | number | null;
60
60
  }
@@ -81,12 +81,12 @@ interface IFilterParams {
81
81
  * 'exs' - Exists,
82
82
  * 'nexs' - Does not exist
83
83
  */
84
- conditionMarker?: 'in' | 'nin' | 'eq' | 'neq' | 'mth' | 'lth' | 'exs' | 'nexs' | null;
84
+ conditionMarker?: "in" | "nin" | "eq" | "neq" | "mth" | "lth" | "exs" | "nexs" | null;
85
85
  conditionValue: number | string | null;
86
86
  pageUrl?: Array<string> | null;
87
87
  statusMarker?: string;
88
- title: string;
89
- isNested: boolean;
88
+ title?: string;
89
+ isNested?: boolean;
90
90
  }
91
91
  /**
92
92
  * Represents a product entity object.
@@ -175,4 +175,4 @@ interface IProductBlock {
175
175
  isSync: boolean;
176
176
  attributeValues: AttributeType;
177
177
  }
178
- export { IFilterParams, IProductsQuery, IProductApi, IProductsEntity, IProductsInfo, IProductInfo, IProductBlock, IProductEntity, IProductsResponse };
178
+ export { IFilterParams, IProductsQuery, IProductApi, IProductsEntity, IProductsInfo, IProductInfo, IProductBlock, IProductEntity, IProductsResponse, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oneentry",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,4 +27,4 @@
27
27
  "ts-jest": "^29.1.1",
28
28
  "typescript": "^5.3.3"
29
29
  }
30
- }
30
+ }