digicust_types 1.8.60 → 1.8.62

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.
@@ -2,6 +2,7 @@ export declare enum FilterCondition {
2
2
  greaterThan = "greaterThan",
3
3
  smallerThan = "smallerThan",
4
4
  equals = "equals",
5
+ notEqualsTo = "notEqualsTo",
5
6
  startsWith = "startsWith",
6
7
  endsWith = "endsWith",
7
8
  contains = "contains",
@@ -6,6 +6,7 @@ var FilterCondition;
6
6
  FilterCondition["greaterThan"] = "greaterThan";
7
7
  FilterCondition["smallerThan"] = "smallerThan";
8
8
  FilterCondition["equals"] = "equals";
9
+ FilterCondition["notEqualsTo"] = "notEqualsTo";
9
10
  FilterCondition["startsWith"] = "startsWith";
10
11
  FilterCondition["endsWith"] = "endsWith";
11
12
  FilterCondition["contains"] = "contains";
@@ -1,5 +1,5 @@
1
- import { TypeOfBusinessType, TradePreference, DigicustDocumentType, ProcedureMode } from "..";
2
- import { Money, DateTimeModel, Quantity, Workflow, Meta, UOM, Weight, Dimensions, CustomsTariffNumber } from "../..";
1
+ import { DigicustDocumentType, ProcedureMode, TradePreference, TypeOfBusinessType, UnitOfMeasurement } from "..";
2
+ import { CustomsTariffNumber, DateTimeModel, Dimensions, Meta, Money, Quantity, Weight, Workflow } from "../..";
3
3
  import { DocumentCode } from "../documents";
4
4
  export declare enum ClassificationTypes {
5
5
  noClassification = "noClassification",
@@ -138,7 +138,7 @@ export interface MaterialModel {
138
138
  id: string;
139
139
  name: string;
140
140
  }[];
141
- unitOfMeasurement?: Workflow<UOM>;
141
+ unitOfMeasurement?: UnitOfMeasurement;
142
142
  documentTypeCodes?: ExtendedDocumentTypeCode[];
143
143
  CAS?: Workflow<string>;
144
144
  units?: Workflow<{
@@ -1,5 +1,5 @@
1
- import { Meta } from "../..";
2
- export interface UnitOfMeasurement extends Meta<string> {
1
+ import { Meta, UOM } from "../..";
2
+ export interface UnitOfMeasurement extends Meta<UOM> {
3
3
  DE_I0700?: string;
4
4
  DE_I0700_Qualifier?: string;
5
5
  NC_66000?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.60",
3
+ "version": "1.8.62",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",