@configura/web-api-auth 2.0.0-alpha.9 → 2.1.0-alpha.0
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/dist/CatalogueAuthAPI.d.ts +14 -14
- package/package.json +2 -2
|
@@ -32,22 +32,22 @@ export interface DtoCatalogueAuthAPISession {
|
|
|
32
32
|
features?: Array<string>;
|
|
33
33
|
permissions?: Array<DtoCataloguePermission>;
|
|
34
34
|
}
|
|
35
|
-
/** CatalogueParams */
|
|
36
|
-
export interface DtoCatalogueParams
|
|
37
|
-
cid: number;
|
|
38
|
-
}
|
|
39
|
-
/** CatalogueParamsWithLang */
|
|
40
|
-
export interface DtoCatalogueParamsWithLang extends DtoCatalogueParams {
|
|
41
|
-
lang: string;
|
|
42
|
-
}
|
|
43
|
-
/** CatalogueParamsWithoutCid */
|
|
44
|
-
export interface DtoCatalogueParamsWithoutCid {
|
|
35
|
+
/** CatalogueParams - To identify one catalogue the Portfolio ID CID is needed in addition to the parameters in this object. However as of now CID is not used in API calls and therefore this version without CID is needed. */
|
|
36
|
+
export interface DtoCatalogueParams {
|
|
45
37
|
enterprise: string;
|
|
46
38
|
prdCat: string;
|
|
47
39
|
prdCatVersion: string;
|
|
48
40
|
vendor: string;
|
|
49
41
|
priceList: string;
|
|
50
42
|
}
|
|
43
|
+
/** CatalogueParamsWithCid */
|
|
44
|
+
export interface DtoCatalogueParamsWithCid extends DtoCatalogueParams {
|
|
45
|
+
cid: number;
|
|
46
|
+
}
|
|
47
|
+
/** CatalogueParamsWithCidAndLang */
|
|
48
|
+
export interface DtoCatalogueParamsWithCidAndLang extends DtoCatalogueParamsWithCid {
|
|
49
|
+
lang: string;
|
|
50
|
+
}
|
|
51
51
|
/** CataloguePermission */
|
|
52
52
|
export interface DtoCataloguePermission {
|
|
53
53
|
cid: number;
|
|
@@ -78,12 +78,12 @@ export interface DtoPoint {
|
|
|
78
78
|
y: number;
|
|
79
79
|
z: number;
|
|
80
80
|
}
|
|
81
|
-
/**
|
|
82
|
-
export interface
|
|
81
|
+
/** ProductParamsWithCid */
|
|
82
|
+
export interface DtoProductParamsWithCid extends DtoCatalogueParamsWithCid {
|
|
83
83
|
partNumber: string;
|
|
84
84
|
}
|
|
85
|
-
/**
|
|
86
|
-
export interface
|
|
85
|
+
/** ProductParamsWithCidAndLang */
|
|
86
|
+
export interface DtoProductParamsWithCidAndLang extends DtoProductParamsWithCid {
|
|
87
87
|
lang: string;
|
|
88
88
|
}
|
|
89
89
|
/** RefreshSessionTokenResponse */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configura/web-api-auth",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0-alpha.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "883ad6e31a55f05124dd0a6b2047c36ef6e6cea1"
|
|
25
25
|
}
|