digicust_types 1.8.374 → 1.8.376

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.
@@ -121,6 +121,7 @@ export interface ExecutionStrategy {
121
121
  guaranteeValueStrategy?: "headerFromInvoices" | "headerFromInvoiceHeader" | "lineItems" | "fromGlobalHead";
122
122
  guaranteeValueCalculation?: "includeVAT19%" | "excludeVAT";
123
123
  guaranteeValueCalculationStrategy?: "default" | "assume25%" | "assume26%";
124
+ maxGuaranteeValue?: Money;
124
125
  waybillCodePreference?: "singleCode" | "seperateCodes";
125
126
  calculateLineItemWeight?: "byQuantity" | "byTotalValue";
126
127
  calculateWeight?: {
@@ -27,6 +27,7 @@ export interface MembershipModel {
27
27
  groupType?: "customer" | "project";
28
28
  role?: MemberRoles;
29
29
  permissions?: Permissions[];
30
+ enabledStrategies?: string[];
30
31
  }
31
32
  export type MembershipUser = UserModel & {
32
33
  membershipRole: MemberRoles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.8.374",
3
+ "version": "1.8.376",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1,7 +0,0 @@
1
- import { UserInput } from "./documents";
2
- export interface UserInputTemplate {
3
- id: string;
4
- name: string;
5
- description?: string;
6
- userInput?: UserInput;
7
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });