@configura/web-api-auth 1.5.0-alpha.0 → 1.6.0-iotest.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.
|
@@ -55,8 +55,9 @@ export interface ErrorResponse {
|
|
|
55
55
|
code: number;
|
|
56
56
|
eventId?: string;
|
|
57
57
|
}
|
|
58
|
-
/** ExportFormat -
|
|
59
|
-
export declare type ExportFormat = "fbx" | "dwg" | "cmdrw" | "cmfav" | "cmsym";
|
|
58
|
+
/** ExportFormat - Format of the exported product, identical to the format's file extension. */
|
|
59
|
+
export declare type ExportFormat = "glb" | "gltf" | "fbx" | "dwg" | "cmdrw" | "cmfav" | "cmsym";
|
|
60
|
+
export declare const exportFormatNames: ExportFormat[];
|
|
60
61
|
/** Orientation */
|
|
61
62
|
export interface Orientation {
|
|
62
63
|
yaw: number;
|
|
@@ -75,6 +76,7 @@ export interface RefreshSessionTokenResponse {
|
|
|
75
76
|
}
|
|
76
77
|
/** RenderFormat */
|
|
77
78
|
export declare type RenderFormat = "jpg" | "png";
|
|
79
|
+
export declare const renderFormatNames: RenderFormat[];
|
|
78
80
|
/** SelectedOption */
|
|
79
81
|
export interface SelectedOption {
|
|
80
82
|
code: string;
|
package/dist/CatalogueAuthAPI.js
CHANGED
|
@@ -14,9 +14,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
14
14
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.CatalogueAuthAPI = exports.APIError = void 0;
|
|
17
|
+
exports.CatalogueAuthAPI = exports.APIError = exports.renderFormatNames = exports.exportFormatNames = void 0;
|
|
18
18
|
const http_1 = __importDefault(require("http"));
|
|
19
19
|
const https_1 = __importDefault(require("https"));
|
|
20
|
+
exports.exportFormatNames = ["glb", "gltf", "fbx", "dwg", "cmdrw", "cmfav", "cmsym"];
|
|
21
|
+
exports.renderFormatNames = ["jpg", "png"];
|
|
20
22
|
class APIError extends Error {
|
|
21
23
|
}
|
|
22
24
|
exports.APIError = APIError;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configura/web-api-auth",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0-iotest.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": "afcb290fa6c4a3f87ab1b4ac781bd704acaa0ad9"
|
|
25
25
|
}
|