@colijnit/transactionapi 261.1.15 → 261.1.16

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,6 @@
1
+ export declare enum RefTransactionType {
2
+ SalesInvoice = "F",
3
+ PurchaseInvoice = "FC",
4
+ ServiceOrder = "S",
5
+ SalesOrder = "V"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RefTransactionType = void 0;
4
+ var RefTransactionType;
5
+ (function (RefTransactionType) {
6
+ RefTransactionType["SalesInvoice"] = "F";
7
+ RefTransactionType["PurchaseInvoice"] = "FC";
8
+ RefTransactionType["ServiceOrder"] = "S";
9
+ RefTransactionType["SalesOrder"] = "V";
10
+ })(RefTransactionType = exports.RefTransactionType || (exports.RefTransactionType = {}));
@@ -1,7 +1,7 @@
1
1
  import { BusinessObject } from '@colijnit/ioneconnector/build/model/business-object';
2
- import { TransactionKind } from '../enum/transaction-kind.enum';
2
+ import { RefTransactionType } from '../enum/ref-transaction-type.enum';
3
3
  export declare class RefTransaction extends BusinessObject {
4
- refTransactionType: TransactionKind;
4
+ refTransactionType: RefTransactionType;
5
5
  refTransactionTypeFull: string;
6
6
  refRowNumbers: string;
7
7
  refTransactionNr: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "261.1.15",
3
+ "version": "261.1.16",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",