digicust_types 1.7.54 → 1.7.55

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.
@@ -0,0 +1,12 @@
1
+ export interface WorkspaceQueues {
2
+ QueueId?: string;
3
+ name?: string;
4
+ QueueDocumentType?: string;
5
+ active?: boolean;
6
+ }
7
+ export interface QueueWorkspaceModel {
8
+ id?: string;
9
+ name?: string;
10
+ active?: boolean;
11
+ queues?: WorkspaceQueues[];
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Incoterms give information on transport conditions in international trade
3
+ */
4
+ export declare enum Incoterm {
5
+ EXW = "EXW",
6
+ FAS = "FAS",
7
+ FCA = "FCA",
8
+ FOB = "FOB",
9
+ CFR = "CFR",
10
+ CIF = "CIF",
11
+ CIP = "CIP",
12
+ CPT = "CPT",
13
+ DAP = "DAP",
14
+ DPU = "DPU",
15
+ DAT = "DAT",
16
+ DDP = "DDP"
17
+ }
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Incoterm = void 0;
4
+ /**
5
+ * Incoterms give information on transport conditions in international trade
6
+ */
7
+ var Incoterm;
8
+ (function (Incoterm) {
9
+ Incoterm["EXW"] = "EXW";
10
+ Incoterm["FAS"] = "FAS";
11
+ Incoterm["FCA"] = "FCA";
12
+ Incoterm["FOB"] = "FOB";
13
+ Incoterm["CFR"] = "CFR";
14
+ Incoterm["CIF"] = "CIF";
15
+ Incoterm["CIP"] = "CIP";
16
+ Incoterm["CPT"] = "CPT";
17
+ Incoterm["DAP"] = "DAP";
18
+ Incoterm["DPU"] = "DPU";
19
+ Incoterm["DAT"] = "DAT";
20
+ Incoterm["DDP"] = "DDP";
21
+ })(Incoterm = exports.Incoterm || (exports.Incoterm = {}));
@@ -0,0 +1,12 @@
1
+ export declare enum StakeholderType {
2
+ Shipper = "shipper",
3
+ Recipient = "recipient",
4
+ Consignee = "consignee",
5
+ Importer = "importer",
6
+ Declarant = "declarant",
7
+ Agent = "agent",
8
+ Broker = "broker",
9
+ Buyer = "buyer",
10
+ Carrier = "carrier",
11
+ Warehouse = "warehouse"
12
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StakeholderType = void 0;
4
+ var StakeholderType;
5
+ (function (StakeholderType) {
6
+ StakeholderType["Shipper"] = "shipper";
7
+ StakeholderType["Recipient"] = "recipient";
8
+ StakeholderType["Consignee"] = "consignee";
9
+ StakeholderType["Importer"] = "importer";
10
+ StakeholderType["Declarant"] = "declarant";
11
+ StakeholderType["Agent"] = "agent";
12
+ StakeholderType["Broker"] = "broker";
13
+ StakeholderType["Buyer"] = "buyer";
14
+ StakeholderType["Carrier"] = "carrier";
15
+ StakeholderType["Warehouse"] = "warehouse";
16
+ })(StakeholderType = exports.StakeholderType || (exports.StakeholderType = {}));
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Information about a notification Model
3
+ */
4
+ export interface NotificationsModel {
5
+ id?: string;
6
+ title?: string;
7
+ status?: string;
8
+ message?: string;
9
+ link?: string;
10
+ consumer?: string;
11
+ addresseeType?: "customer" | "project" | "user";
12
+ addresseeId?: string;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.54",
3
+ "version": "1.7.55",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",