@liquidcommercedev/rmn-sdk 1.5.0-beta.27 → 1.5.0-beta.28

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.
@@ -18,11 +18,11 @@ export declare function extractDeepValues(data: unknown, target: ExtractorTarget
18
18
  * 3. Removing leading zeros while preserving single "0"
19
19
  * 4. Filtering out empty/invalid values
20
20
  *
21
- * @param productIds - Array of product IDs that can be either strings or numbers
21
+ * @param ids - Array of product IDs that can be either strings or numbers
22
22
  * @returns Array of cleaned string IDs
23
23
  *
24
24
  * @example
25
25
  * cleanProductIds(["001", " 123 ", 456, "0"]) // ["1", "123", "456", "0"]
26
26
  */
27
- export declare function cleanProductIds(productIds: Array<string | number>): string[];
27
+ export declare function cleanProductIds(ids: Array<string | number>): string[];
28
28
  export {};
@@ -0,0 +1,2 @@
1
+ export * from './example.constant';
2
+ export * from './special-char.constant';
@@ -0,0 +1 @@
1
+ export declare const SPECIAL_CHARACTER_MAPPING: Record<string, string>;
@@ -9,6 +9,6 @@ export interface ICustomSkeletonElement extends HTMLElement {
9
9
  data: ICustomSkeletonElementData;
10
10
  }
11
11
  export interface ICreateSkeletonElementParams {
12
- fluid: boolean;
12
+ fluid?: boolean;
13
13
  spotType: RMN_SPOT_TYPE;
14
14
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@liquidcommercedev/rmn-sdk",
3
3
  "description": "LiquidCommerce RMN SDK",
4
4
  "author": "LiquidCommerce Tech",
5
- "version": "1.5.0-beta.27",
5
+ "version": "1.5.0-beta.28",
6
6
  "homepage": "https://docs.liquidcommerce.co/rmn-sdk",
7
7
  "main": "./dist/index.cjs",
8
8
  "module": "./dist/index.esm.js",