@nomalism-com/types 0.36.15 → 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 {
@@ -287,7 +287,7 @@ export interface IFindRmOpenDocuments {
287
287
  document_header_id: string;
288
288
  document_number: string;
289
289
  identifier: string;
290
- upfront_total: number | null;
290
+ adjudicated: boolean;
291
291
  who_handles: string | null;
292
292
  document_lines: {
293
293
  document_line_id: string;
@@ -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.15",
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
 
@@ -370,7 +370,7 @@ export interface IFindRmOpenDocuments {
370
370
  document_header_id: string;
371
371
  document_number: string;
372
372
  identifier: string;
373
- upfront_total: number | null;
373
+ adjudicated: boolean;
374
374
  who_handles: string | null;
375
375
  document_lines: {
376
376
  document_line_id: string;
@@ -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
  };