@nomalism-com/types 0.36.16 → 0.36.17

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.
@@ -11,7 +11,7 @@ export interface IFindByDocumentLineStateResponse {
11
11
  created_by: string;
12
12
  who_handles: string | null;
13
13
  tags: string;
14
- adjudicated: number;
14
+ adjudicated: boolean;
15
15
  unread: boolean;
16
16
  }
17
17
  export interface IFindByStateRequest {
@@ -883,7 +883,6 @@ export type StartDocumentHeaderLastUpdateVirtuals = {
883
883
  export type StartDocumentHeaderVirtuals = {
884
884
  parent_document_header_id: string;
885
885
  name: string;
886
- external_name: string | null;
887
886
  paid: number;
888
887
  total_without_tax: number;
889
888
  total: number;
@@ -893,6 +892,7 @@ export type StartDocumentHeaderVirtuals = {
893
892
  upfront_name: string | null;
894
893
  upfront_external_name: string | null;
895
894
  upfront_total: number;
895
+ adjudicated: boolean;
896
896
  closed: boolean;
897
897
  state: string;
898
898
  };
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "typescript",
10
10
  "helper"
11
11
  ],
12
- "version": "0.36.16",
12
+ "version": "0.36.17",
13
13
  "type": "module",
14
14
  "module": "./dist/index.js",
15
15
  "main": "./dist/index.cjs",
@@ -13,7 +13,7 @@ export interface IFindByDocumentLineStateResponse {
13
13
  created_by: string;
14
14
  who_handles: string | null;
15
15
  tags: string;
16
- adjudicated: number;
16
+ adjudicated: boolean;
17
17
  unread: boolean;
18
18
  }
19
19
 
@@ -952,7 +952,6 @@ export type StartDocumentHeaderLastUpdateVirtuals = {
952
952
  export type StartDocumentHeaderVirtuals = {
953
953
  parent_document_header_id: string;
954
954
  name: string;
955
- external_name: string | null;
956
955
  paid: number;
957
956
  total_without_tax: number;
958
957
  total: number;
@@ -962,6 +961,7 @@ export type StartDocumentHeaderVirtuals = {
962
961
  upfront_name: string | null;
963
962
  upfront_external_name: string | null;
964
963
  upfront_total: number;
964
+ adjudicated: boolean;
965
965
  closed: boolean;
966
966
  state: string;
967
967
  };