@open-tender/types 0.2.2 → 0.2.4

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.
@@ -492,3 +492,11 @@ export interface Theme {
492
492
  toast: ThemeAlert;
493
493
  welcome: ThemeWelcome;
494
494
  }
495
+ export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLineHeight' | 'subtitleLineHeight'> {
496
+ titleLineHeight: string;
497
+ subtitleLineHeight: string;
498
+ }
499
+ export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
500
+ welcome: ThemeWelcomeStylesApp;
501
+ item: ThemeItemStyles;
502
+ }
@@ -5,7 +5,7 @@ export interface IndexedError {
5
5
  export interface RequestErrorMessage {
6
6
  code: string;
7
7
  detail: string;
8
- message: string;
8
+ message?: string;
9
9
  title: string;
10
10
  }
11
11
  export declare type RequestErrorParams = Record<string, string>;
@@ -492,3 +492,11 @@ export interface Theme {
492
492
  toast: ThemeAlert;
493
493
  welcome: ThemeWelcome;
494
494
  }
495
+ export interface ThemeWelcomeStylesApp extends Omit<ThemeWelcomeStyles, 'titleLineHeight' | 'subtitleLineHeight'> {
496
+ titleLineHeight: string;
497
+ subtitleLineHeight: string;
498
+ }
499
+ export interface AppTheme extends Omit<Theme, 'welcome' | 'item'> {
500
+ welcome: ThemeWelcomeStylesApp;
501
+ item: ThemeItemStyles;
502
+ }
@@ -5,7 +5,7 @@ export interface IndexedError {
5
5
  export interface RequestErrorMessage {
6
6
  code: string;
7
7
  detail: string;
8
- message: string;
8
+ message?: string;
9
9
  title: string;
10
10
  }
11
11
  export declare type RequestErrorParams = Record<string, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",