@colijnit/transactionapi 1.1.99 → 1.1.101
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.
- package/build/enum/iframe-catalog-types.enum.d.ts +9 -0
- package/build/enum/iframe-catalog-types.enum.js +13 -0
- package/build/model/iFrame-article-request.d.ts +5 -0
- package/build/model/iFrame-article-request.js +6 -0
- package/build/transaction.d.ts +2 -0
- package/build/transaction.js +3 -0
- package/package.json +3 -3
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IFrameCatalogType = void 0;
|
|
4
|
+
var IFrameCatalogType;
|
|
5
|
+
(function (IFrameCatalogType) {
|
|
6
|
+
IFrameCatalogType["Auping"] = "AUPI";
|
|
7
|
+
IFrameCatalogType["CatalogFarm"] = "CATF";
|
|
8
|
+
IFrameCatalogType["HunterDouglas"] = "HTDL";
|
|
9
|
+
IFrameCatalogType["Vadain"] = "VADN";
|
|
10
|
+
IFrameCatalogType["Woontotaal"] = "WNTL";
|
|
11
|
+
IFrameCatalogType["Webshop"] = "WEBS";
|
|
12
|
+
IFrameCatalogType["JsWeb"] = "JSWB";
|
|
13
|
+
})(IFrameCatalogType = exports.IFrameCatalogType || (exports.IFrameCatalogType = {}));
|
package/build/transaction.d.ts
CHANGED
|
@@ -121,6 +121,7 @@ import { CopyTransactionRequest } from "./model/copy-transaction-request";
|
|
|
121
121
|
import { ChangeHeaderExpectedScoringDateRequest } from "./model/change-header-expected-scoring-date-request";
|
|
122
122
|
import { ChangeHeaderScoringChanceRequest } from "./model/change-header-scoring-chance-request";
|
|
123
123
|
import { ChangeHeaderRetailStadiumRequest } from "./model/change-header-retail-stadium-request";
|
|
124
|
+
import { ServerResponseData } from '@colijnit/ioneconnector/build/model/server-response-data';
|
|
124
125
|
export declare class Transaction {
|
|
125
126
|
readonly showLoader: Subject<boolean>;
|
|
126
127
|
readonly connectionAborted: Subject<void>;
|
|
@@ -139,6 +140,7 @@ export declare class Transaction {
|
|
|
139
140
|
private _connector;
|
|
140
141
|
constructor(options?: Options);
|
|
141
142
|
connect(): Promise<boolean>;
|
|
143
|
+
logOut(): Promise<ServerResponseData>;
|
|
142
144
|
getArticleFullObject(id: number): Promise<DataServiceResponseData>;
|
|
143
145
|
getGoodIdFromArticleNr(skuOrId: string): Promise<DataServiceResponseData>;
|
|
144
146
|
getSingleImage(nodeId: number | string, publication: number, includeMimetype: boolean, thumb: boolean): Promise<DataServiceResponseData>;
|
package/build/transaction.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transactionapi",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.101",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "grunt clean && tsc",
|
|
6
6
|
"browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
"rxjs-compat": "^6.6.3"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@colijnit/ioneconnector": ">=3.1.
|
|
30
|
+
"@colijnit/ioneconnector": ">=3.1.6",
|
|
31
31
|
"@colijnit/mainapi": ">=1.0.23",
|
|
32
32
|
"@colijnit/relationapi": ">=1.0.8"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/jest": "^24.0.13",
|
|
36
|
-
"@colijnit/ioneconnector": "3.1.
|
|
36
|
+
"@colijnit/ioneconnector": "3.1.6",
|
|
37
37
|
"@colijnit/mainapi": "1.0.23",
|
|
38
38
|
"@colijnit/relationapi": "1.0.8",
|
|
39
39
|
"grunt": "1.0.3",
|