digicust_types 1.8.232 → 1.8.234

Sign up to get free protection for your applications and to get access to all the features.
@@ -89,6 +89,9 @@ export interface ExecutionStrategy {
89
89
  active?: boolean;
90
90
  destinationLanguage?: string;
91
91
  };
92
+ searchForItemDescriptionOnInternet?: {
93
+ active?: boolean;
94
+ };
92
95
  customsTariffNumberNormalizationSettings?: CustomsTariffNumberNormalizationSettings;
93
96
  guaranteeValueStrategy?: "headerFromInvoices" | "headerFromInvoiceHeader" | "lineItems";
94
97
  guaranteeValueCalculation?: "includeVAT19%" | "excludeVAT";
@@ -1,6 +1,11 @@
1
1
  import { Meta } from "./meta";
2
2
  export interface Translatable extends Meta<string> {
3
3
  translation?: Translation;
4
+ webResults?: {
5
+ title?: string;
6
+ imageUrl?: string;
7
+ link?: string;
8
+ }[];
4
9
  userEdited?: boolean;
5
10
  }
6
11
  export interface Translation {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.232",
3
+ "version": "1.8.234",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",