@colijnit/transactionapi 258.1.22 → 258.1.23

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,7 @@
1
+ export declare enum PspType {
2
+ PSP_TYPE_NONE = "PSP_NONE",
3
+ PSP_TYPE_IDEAL = "PSP_IDEAL",
4
+ PSP_TYPE_PAYMENT_LINK = "PSP_PAYMENT_LINK",
5
+ PSP_TYPE_PIN = "PSP_PIN",
6
+ PSP_TYPE_PAY_LATER = "PSP_PAY_LATER"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PspType = void 0;
4
+ var PspType;
5
+ (function (PspType) {
6
+ PspType["PSP_TYPE_NONE"] = "PSP_NONE";
7
+ PspType["PSP_TYPE_IDEAL"] = "PSP_IDEAL";
8
+ PspType["PSP_TYPE_PAYMENT_LINK"] = "PSP_PAYMENT_LINK";
9
+ PspType["PSP_TYPE_PIN"] = "PSP_PIN";
10
+ PspType["PSP_TYPE_PAY_LATER"] = "PSP_PAY_LATER";
11
+ })(PspType = exports.PspType || (exports.PspType = {}));
@@ -2,6 +2,7 @@ import { BusinessObject } from '@colijnit/ioneconnector/build/model/business-obj
2
2
  import { AdminPaymentMethod } from './admin-payment-method.bo';
3
3
  import { CashRegisterGroup } from './cash-register-group.bo';
4
4
  import { CoDocument } from '@colijnit/mainapi/build/model/co-document';
5
+ import { PspType } from '../enum/psp-type.enum';
5
6
  export declare class PaymentMethod extends BusinessObject {
6
7
  code: string;
7
8
  description: string;
@@ -25,6 +26,7 @@ export declare class PaymentMethod extends BusinessObject {
25
26
  externalSourceId: number;
26
27
  voucher: boolean;
27
28
  pspGateway: string;
29
+ pspType: PspType;
28
30
  adminLinks: AdminPaymentMethod[];
29
31
  documents: CoDocument[];
30
32
  posGroups: CashRegisterGroup[];
@@ -5,4 +5,5 @@ export declare class PspTransactionStatus extends BusinessObject {
5
5
  statusDate: Date;
6
6
  status: IonePaymentStatus;
7
7
  cancelUrl: string;
8
+ paymentUrl: string;
8
9
  }
@@ -39,7 +39,6 @@ export declare class PurchaseAdviceLine extends BusinessObject {
39
39
  shippingCost: number;
40
40
  readilyAvailable: number;
41
41
  minStock: number;
42
- minDynamicStock: number;
43
42
  econStock: number;
44
43
  stockInTransit: number;
45
44
  targetStock: number;
@@ -62,4 +61,5 @@ export declare class PurchaseAdviceLine extends BusinessObject {
62
61
  cashOnDelivery: number;
63
62
  aupOrderNr: string;
64
63
  supplierProduct: SupplierProduct[];
64
+ minStockFromDynamicCalculation: number;
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "258.1.22",
3
+ "version": "258.1.23",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",