@fas-core/shared-types 1.0.32 → 1.0.34

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/index.d.mts CHANGED
@@ -57,9 +57,11 @@ interface IPrice {
57
57
  discount: number;
58
58
  }
59
59
  interface ITechSpec {
60
+ group?: string;
60
61
  key: string;
61
62
  label: string;
62
- value: string | number;
63
+ value?: unknown;
64
+ values?: Metadata;
63
65
  }
64
66
  interface IShipping {
65
67
  weightLb: number;
@@ -197,7 +199,7 @@ interface IProductVariantFields {
197
199
  videos: string[];
198
200
  documentation: IDocumentation;
199
201
  techSpecs: ITechSpec[];
200
- physical: ITechSpec[];
202
+ physical: IKeyValue[];
201
203
  shipping: IShipping;
202
204
  compliance: ICompliance;
203
205
  features: string[];
package/dist/index.d.ts CHANGED
@@ -57,9 +57,11 @@ interface IPrice {
57
57
  discount: number;
58
58
  }
59
59
  interface ITechSpec {
60
+ group?: string;
60
61
  key: string;
61
62
  label: string;
62
- value: string | number;
63
+ value?: unknown;
64
+ values?: Metadata;
63
65
  }
64
66
  interface IShipping {
65
67
  weightLb: number;
@@ -197,7 +199,7 @@ interface IProductVariantFields {
197
199
  videos: string[];
198
200
  documentation: IDocumentation;
199
201
  techSpecs: ITechSpec[];
200
- physical: ITechSpec[];
202
+ physical: IKeyValue[];
201
203
  shipping: IShipping;
202
204
  compliance: ICompliance;
203
205
  features: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fas-core/shared-types",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "FAS Core Shared Types - A collection of shared TypeScript types for the FAS Core SDK.",
5
5
  "author": "ibreakloops",
6
6
  "license": "UNLICENSED",