@orderingstack/ordering-types 1.29.1 → 1.29.2

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.
@@ -417,7 +417,7 @@ export interface IOrderPayment {
417
417
  source: string;
418
418
  amount: number | string;
419
419
  initialAmount?: number | string;
420
- user: string;
420
+ user?: string;
421
421
  timestamp?: string;
422
422
  extra?: IStringKeyRecord<string>;
423
423
  deferred?: boolean;
@@ -172,6 +172,7 @@ export interface IMenuOptionsUIProps {
172
172
  actualSelCnt: number;
173
173
  currency: string;
174
174
  children: ReactElement;
175
+ nestedLvl: number;
175
176
  }
176
177
  export interface IMenuProductUIProps {
177
178
  product: IProduct;
@@ -417,7 +417,7 @@ export interface IOrderPayment {
417
417
  source: string;
418
418
  amount: number | string;
419
419
  initialAmount?: number | string;
420
- user: string;
420
+ user?: string;
421
421
  timestamp?: string;
422
422
  extra?: IStringKeyRecord<string>;
423
423
  deferred?: boolean;
@@ -172,6 +172,7 @@ export interface IMenuOptionsUIProps {
172
172
  actualSelCnt: number;
173
173
  currency: string;
174
174
  children: ReactElement;
175
+ nestedLvl: number;
175
176
  }
176
177
  export interface IMenuProductUIProps {
177
178
  product: IProduct;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "1.29.1",
3
+ "version": "1.29.2",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",