@orderingstack/ordering-types 1.1.9 → 1.1.10

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.
@@ -214,6 +214,9 @@ export interface ICheckoutComponentProps extends IHandleUpsells {
214
214
  abandonOrder: (statusInfo?: string) => void;
215
215
  currency: string;
216
216
  }
217
+ export interface IErrorComponentProps {
218
+ errors: IKioskError[];
219
+ }
217
220
  export interface IHandleUpsells {
218
221
  getUpsellProducts: (kind: TUpsellKind) => Promise<IProduct[]>;
219
222
  haveUpsellProducts: (kind: TUpsellKind) => boolean;
@@ -214,6 +214,9 @@ export interface ICheckoutComponentProps extends IHandleUpsells {
214
214
  abandonOrder: (statusInfo?: string) => void;
215
215
  currency: string;
216
216
  }
217
+ export interface IErrorComponentProps {
218
+ errors: IKioskError[];
219
+ }
217
220
  export interface IHandleUpsells {
218
221
  getUpsellProducts: (kind: TUpsellKind) => Promise<IProduct[]>;
219
222
  haveUpsellProducts: (kind: TUpsellKind) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",