@configura/web-api 1.4.0-alpha.3 → 1.5.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/CatalogueAPI.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/productConfiguration/CfgFeature.d.ts +4 -0
- package/dist/productConfiguration/CfgFeature.js +4 -0
- package/dist/tasks/TaskHandler.d.ts +79 -0
- package/dist/tasks/TaskHandler.js +264 -0
- package/dist/tasks/formats.d.ts +7 -0
- package/dist/tasks/formats.js +8 -0
- package/package.json +3 -3
package/dist/CatalogueAPI.js
CHANGED
|
@@ -15,7 +15,7 @@ export class CatalogueAPI {
|
|
|
15
15
|
constructor() {
|
|
16
16
|
const parts = new RegExp("^(http[s]?:\\/\\/[^:\\/\\s]+)", "i").exec(document.referrer);
|
|
17
17
|
if (parts !== null) {
|
|
18
|
-
this._alternativeReferer = parts[1]
|
|
18
|
+
this._alternativeReferer = parts[1];
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
hasFeature(feature) {
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export * from "./productConfiguration/CfgProductConfiguration.js";
|
|
|
11
11
|
export * from "./productConfiguration/filters.js";
|
|
12
12
|
export * from "./productConfiguration/productParamsGenerator.js";
|
|
13
13
|
export * from "./productLoader.js";
|
|
14
|
+
export * from "./tasks/formats.js";
|
|
15
|
+
export * from "./tasks/TaskHandler.js";
|
|
14
16
|
export * from "./utilitiesCatalogueData.js";
|
|
15
17
|
export * from "./utilitiesCataloguePermission.js";
|
|
16
18
|
export * from "./utilitiesNumericValues.js";
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,8 @@ export * from "./productConfiguration/CfgProductConfiguration.js";
|
|
|
11
11
|
export * from "./productConfiguration/filters.js";
|
|
12
12
|
export * from "./productConfiguration/productParamsGenerator.js";
|
|
13
13
|
export * from "./productLoader.js";
|
|
14
|
+
export * from "./tasks/formats.js";
|
|
15
|
+
export * from "./tasks/TaskHandler.js";
|
|
14
16
|
export * from "./utilitiesCatalogueData.js";
|
|
15
17
|
export * from "./utilitiesCataloguePermission.js";
|
|
16
18
|
export * from "./utilitiesNumericValues.js";
|
|
@@ -147,6 +147,10 @@ export declare class CfgFeature {
|
|
|
147
147
|
get ancestorsSelected(): boolean;
|
|
148
148
|
get preview(): string | undefined;
|
|
149
149
|
get options(): CfgOption[];
|
|
150
|
+
/**
|
|
151
|
+
* Visibility is not inherited. If this is hidden the children
|
|
152
|
+
* of this Feature might still be visible, depending on their settings.
|
|
153
|
+
*/
|
|
150
154
|
get visible(): boolean;
|
|
151
155
|
/**
|
|
152
156
|
* Selects the passed Option.
|
|
@@ -587,6 +587,10 @@ export class CfgFeature {
|
|
|
587
587
|
get options() {
|
|
588
588
|
return this._internal.options;
|
|
589
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
* Visibility is not inherited. If this is hidden the children
|
|
592
|
+
* of this Feature might still be visible, depending on their settings.
|
|
593
|
+
*/
|
|
590
594
|
get visible() {
|
|
591
595
|
return this._internal.visible;
|
|
592
596
|
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Observable, SingleArgCallback } from "@configura/web-utilities";
|
|
2
|
+
import { AdditionalProductConfiguration, CatalogueAPI, ExportStatus, ExportStatusStatus, PostExportParams, PostRenderParams, RenderStatus, RenderStatusStatus, TargetCameraArgs } from "../CatalogueAPI.js";
|
|
3
|
+
import { CfgProduct } from "../CfgProduct.js";
|
|
4
|
+
import { RenderOrExportFormat } from "./formats.js";
|
|
5
|
+
export declare type TasksChangeNotification = {
|
|
6
|
+
freshRef: TaskHandler;
|
|
7
|
+
};
|
|
8
|
+
export declare type RenderTaskParams = {
|
|
9
|
+
targetCameraArgs?: TargetCameraArgs;
|
|
10
|
+
width: number;
|
|
11
|
+
height: number;
|
|
12
|
+
};
|
|
13
|
+
export declare type ProductParams = PostRenderParams | PostExportParams;
|
|
14
|
+
export declare class _TaskHandlerInternal {
|
|
15
|
+
api: CatalogueAPI;
|
|
16
|
+
readonly changeObservable: Observable<TasksChangeNotification>;
|
|
17
|
+
readonly tasks: Task<RenderOrExportFormat>[];
|
|
18
|
+
constructor(api: CatalogueAPI);
|
|
19
|
+
_notifyAllOfChange: () => Promise<void>;
|
|
20
|
+
destroy: () => void;
|
|
21
|
+
get hasExport(): boolean;
|
|
22
|
+
get hasRender(): boolean;
|
|
23
|
+
get availableFormats(): RenderOrExportFormat[];
|
|
24
|
+
start: (format: RenderOrExportFormat, product: CfgProduct, renderParams: RenderTaskParams | undefined, getPreviewUrl: (() => Promise<string>) | undefined) => Promise<void>;
|
|
25
|
+
addTask(task: Task<RenderOrExportFormat>): void;
|
|
26
|
+
removeTask(task: Task<RenderOrExportFormat>): void;
|
|
27
|
+
}
|
|
28
|
+
export declare class TaskHandler {
|
|
29
|
+
private readonly _internal;
|
|
30
|
+
static make(api: CatalogueAPI): TaskHandler;
|
|
31
|
+
/**
|
|
32
|
+
* Makes an object wrapping the passed object. This is not a clone method,
|
|
33
|
+
* it is a method to make a new outer reference. Like a shallow copy.
|
|
34
|
+
* We use this to help frameworks that are build around using equals to detect change.
|
|
35
|
+
*/
|
|
36
|
+
static _makeNewRefFrom(internal: _TaskHandlerInternal): TaskHandler;
|
|
37
|
+
private constructor();
|
|
38
|
+
destroy: () => void;
|
|
39
|
+
get tasks(): Task<RenderOrExportFormat>[];
|
|
40
|
+
get hasExport(): boolean;
|
|
41
|
+
get hasRender(): boolean;
|
|
42
|
+
get availableFormats(): RenderOrExportFormat[];
|
|
43
|
+
start: (format: RenderOrExportFormat, product: CfgProduct, renderParams?: RenderTaskParams | undefined, getPreviewUrl?: (() => Promise<string>) | undefined) => Promise<void>;
|
|
44
|
+
listenForChange: (l: SingleArgCallback<TasksChangeNotification>) => void;
|
|
45
|
+
stopListenForChange: (l: SingleArgCallback<TasksChangeNotification>) => void;
|
|
46
|
+
}
|
|
47
|
+
declare type TaskStatus = RenderStatusStatus | ExportStatusStatus | "abandoned";
|
|
48
|
+
export declare abstract class Task<F extends RenderOrExportFormat> {
|
|
49
|
+
protected readonly taskHandler: _TaskHandlerInternal;
|
|
50
|
+
readonly format: F;
|
|
51
|
+
private _timerId;
|
|
52
|
+
protected constructor(taskHandler: _TaskHandlerInternal, format: F, product: CfgProduct, getPreviewUrl: (() => Promise<string>) | undefined);
|
|
53
|
+
protected abstract postInit(): Promise<RenderStatus | ExportStatus>;
|
|
54
|
+
protected abstract pollStatus(): Promise<RenderStatus | ExportStatus>;
|
|
55
|
+
protected _productParams: ProductParams;
|
|
56
|
+
protected _apiSelection: AdditionalProductConfiguration;
|
|
57
|
+
private _status;
|
|
58
|
+
private _uuid;
|
|
59
|
+
private _created;
|
|
60
|
+
private _modified;
|
|
61
|
+
private _url;
|
|
62
|
+
private _previewUrl;
|
|
63
|
+
private setStatus;
|
|
64
|
+
get status(): TaskStatus;
|
|
65
|
+
get uuid(): string;
|
|
66
|
+
get created(): string;
|
|
67
|
+
get modified(): string;
|
|
68
|
+
get url(): string | undefined;
|
|
69
|
+
get previewUrl(): string | undefined;
|
|
70
|
+
private _start;
|
|
71
|
+
protected startAndRegister: () => Promise<void>;
|
|
72
|
+
restart: () => Promise<void>;
|
|
73
|
+
private scheduleRefresh;
|
|
74
|
+
private refresh;
|
|
75
|
+
private stop;
|
|
76
|
+
abort: () => void;
|
|
77
|
+
}
|
|
78
|
+
export {};
|
|
79
|
+
//# sourceMappingURL=TaskHandler.d.ts.map
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { Observable } from "@configura/web-utilities";
|
|
11
|
+
import { allExportFormats, allRenderFormats, isExportFormat, isRenderFormat, } from "./formats.js";
|
|
12
|
+
const productToParams = (product) => (Object.assign(Object.assign({ lang: product.lang }, product.catId), { partNumber: product.partNumber }));
|
|
13
|
+
export class _TaskHandlerInternal {
|
|
14
|
+
constructor(api) {
|
|
15
|
+
this.api = api;
|
|
16
|
+
this.changeObservable = new Observable();
|
|
17
|
+
this.tasks = [];
|
|
18
|
+
this._notifyAllOfChange = () => __awaiter(this, void 0, void 0, function* () {
|
|
19
|
+
const freshRef = TaskHandler._makeNewRefFrom(this);
|
|
20
|
+
this.changeObservable.notifyAll({ freshRef });
|
|
21
|
+
});
|
|
22
|
+
this.destroy = () => {
|
|
23
|
+
this.changeObservable.stopAllListen();
|
|
24
|
+
for (const task of this.tasks) {
|
|
25
|
+
task.abort();
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
this.start = (format, product, renderParams, getPreviewUrl) => __awaiter(this, void 0, void 0, function* () {
|
|
29
|
+
if (isRenderFormat(format)) {
|
|
30
|
+
if (!this.hasRender) {
|
|
31
|
+
throw new Error("Render has not been activated for this Catalogue");
|
|
32
|
+
}
|
|
33
|
+
if (renderParams === undefined) {
|
|
34
|
+
throw new Error("renderParams must be set for render");
|
|
35
|
+
}
|
|
36
|
+
yield TaskRender.make(this, format, product, renderParams, getPreviewUrl);
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
if (isExportFormat(format)) {
|
|
40
|
+
if (!this.hasExport) {
|
|
41
|
+
throw new Error("Export has not been activated for this Catalogue");
|
|
42
|
+
}
|
|
43
|
+
yield TaskExport.make(this, format, product, getPreviewUrl);
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
throw new Error("Unknown export format");
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
get hasExport() {
|
|
50
|
+
return this.api.hasFeature("export");
|
|
51
|
+
}
|
|
52
|
+
get hasRender() {
|
|
53
|
+
return this.api.hasFeature("render");
|
|
54
|
+
}
|
|
55
|
+
get availableFormats() {
|
|
56
|
+
const result = [];
|
|
57
|
+
if (this.hasExport) {
|
|
58
|
+
result.push(...allExportFormats);
|
|
59
|
+
}
|
|
60
|
+
if (this.hasRender) {
|
|
61
|
+
result.push(...allRenderFormats);
|
|
62
|
+
}
|
|
63
|
+
return result;
|
|
64
|
+
}
|
|
65
|
+
addTask(task) {
|
|
66
|
+
this.tasks.push(task);
|
|
67
|
+
this._notifyAllOfChange();
|
|
68
|
+
}
|
|
69
|
+
removeTask(task) {
|
|
70
|
+
const i = this.tasks.indexOf(task);
|
|
71
|
+
this.tasks.splice(i, 1);
|
|
72
|
+
this._notifyAllOfChange();
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
export class TaskHandler {
|
|
76
|
+
constructor(_internal) {
|
|
77
|
+
this._internal = _internal;
|
|
78
|
+
this.destroy = () => this._internal.destroy();
|
|
79
|
+
this.start = (format, product, renderParams, getPreviewUrl) => __awaiter(this, void 0, void 0, function* () { return this._internal.start(format, product, renderParams, getPreviewUrl); });
|
|
80
|
+
this.listenForChange = (l) => this._internal.changeObservable.listen(l);
|
|
81
|
+
this.stopListenForChange = (l) => this._internal.changeObservable.stopListen(l);
|
|
82
|
+
}
|
|
83
|
+
static make(api) {
|
|
84
|
+
return new this(new _TaskHandlerInternal(api));
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Makes an object wrapping the passed object. This is not a clone method,
|
|
88
|
+
* it is a method to make a new outer reference. Like a shallow copy.
|
|
89
|
+
* We use this to help frameworks that are build around using equals to detect change.
|
|
90
|
+
*/
|
|
91
|
+
static _makeNewRefFrom(internal) {
|
|
92
|
+
return new this(internal);
|
|
93
|
+
}
|
|
94
|
+
get tasks() {
|
|
95
|
+
return this._internal.tasks;
|
|
96
|
+
}
|
|
97
|
+
get hasExport() {
|
|
98
|
+
return this._internal.hasExport;
|
|
99
|
+
}
|
|
100
|
+
get hasRender() {
|
|
101
|
+
return this._internal.hasRender;
|
|
102
|
+
}
|
|
103
|
+
get availableFormats() {
|
|
104
|
+
return this._internal.availableFormats;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
export class Task {
|
|
108
|
+
constructor(taskHandler, format, product, getPreviewUrl) {
|
|
109
|
+
this.taskHandler = taskHandler;
|
|
110
|
+
this.format = format;
|
|
111
|
+
this._status = "pending";
|
|
112
|
+
this._start = () => __awaiter(this, void 0, void 0, function* () {
|
|
113
|
+
const result = yield this.postInit();
|
|
114
|
+
this._uuid = result.uuid;
|
|
115
|
+
this._created = result.created;
|
|
116
|
+
this._modified = result.modified;
|
|
117
|
+
this.setStatus(result.status);
|
|
118
|
+
this.scheduleRefresh();
|
|
119
|
+
});
|
|
120
|
+
this.startAndRegister = () => __awaiter(this, void 0, void 0, function* () {
|
|
121
|
+
try {
|
|
122
|
+
yield this._start();
|
|
123
|
+
this.taskHandler.addTask(this);
|
|
124
|
+
}
|
|
125
|
+
catch (e) {
|
|
126
|
+
this.setStatus("failed");
|
|
127
|
+
console.error(e);
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
this.restart = () => __awaiter(this, void 0, void 0, function* () {
|
|
131
|
+
try {
|
|
132
|
+
this.stop();
|
|
133
|
+
this.setStatus("pending");
|
|
134
|
+
yield this._start();
|
|
135
|
+
}
|
|
136
|
+
catch (e) {
|
|
137
|
+
this.setStatus("failed");
|
|
138
|
+
console.error(e);
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
this.scheduleRefresh = () => {
|
|
142
|
+
this._timerId = setTimeout(this.refresh, 1000);
|
|
143
|
+
};
|
|
144
|
+
this.refresh = () => __awaiter(this, void 0, void 0, function* () {
|
|
145
|
+
try {
|
|
146
|
+
const result = yield this.pollStatus();
|
|
147
|
+
this._modified = result.modified;
|
|
148
|
+
const status = result.status;
|
|
149
|
+
switch (status) {
|
|
150
|
+
case "finished":
|
|
151
|
+
const url = result.url;
|
|
152
|
+
if (!url) {
|
|
153
|
+
throw new Error("No URL from finished task");
|
|
154
|
+
}
|
|
155
|
+
this._url = url;
|
|
156
|
+
break;
|
|
157
|
+
case "failed":
|
|
158
|
+
break;
|
|
159
|
+
case "running":
|
|
160
|
+
case "pending":
|
|
161
|
+
this.scheduleRefresh();
|
|
162
|
+
break;
|
|
163
|
+
}
|
|
164
|
+
this.setStatus(status);
|
|
165
|
+
}
|
|
166
|
+
catch (e) {
|
|
167
|
+
this.setStatus("failed");
|
|
168
|
+
console.error(e);
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
this.abort = () => {
|
|
172
|
+
this._status = "abandoned";
|
|
173
|
+
this.stop();
|
|
174
|
+
this.taskHandler.removeTask(this);
|
|
175
|
+
};
|
|
176
|
+
this._productParams = productToParams(product);
|
|
177
|
+
this._apiSelection = product.getApiSelection();
|
|
178
|
+
if (getPreviewUrl !== undefined) {
|
|
179
|
+
getPreviewUrl().then((dataUrl) => {
|
|
180
|
+
this._previewUrl = dataUrl;
|
|
181
|
+
this.taskHandler._notifyAllOfChange();
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
setStatus(status) {
|
|
186
|
+
const isChange = this._status !== status;
|
|
187
|
+
this._status = status;
|
|
188
|
+
if (isChange) {
|
|
189
|
+
this.taskHandler._notifyAllOfChange();
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
get status() {
|
|
193
|
+
return this._status;
|
|
194
|
+
}
|
|
195
|
+
get uuid() {
|
|
196
|
+
if (this._uuid === undefined) {
|
|
197
|
+
throw new Error("Should not happen");
|
|
198
|
+
}
|
|
199
|
+
return this._uuid;
|
|
200
|
+
}
|
|
201
|
+
get created() {
|
|
202
|
+
if (this._created === undefined) {
|
|
203
|
+
throw new Error("Should not happen");
|
|
204
|
+
}
|
|
205
|
+
return this._created;
|
|
206
|
+
}
|
|
207
|
+
get modified() {
|
|
208
|
+
if (this._modified === undefined) {
|
|
209
|
+
throw new Error("Should not happen");
|
|
210
|
+
}
|
|
211
|
+
return this._modified;
|
|
212
|
+
}
|
|
213
|
+
get url() {
|
|
214
|
+
return this._url;
|
|
215
|
+
}
|
|
216
|
+
get previewUrl() {
|
|
217
|
+
return this._previewUrl;
|
|
218
|
+
}
|
|
219
|
+
stop() {
|
|
220
|
+
clearInterval(this._timerId);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class TaskRender extends Task {
|
|
224
|
+
constructor(taskHandler, format, product, taskParams, getPreviewUrl) {
|
|
225
|
+
super(taskHandler, format, product, getPreviewUrl);
|
|
226
|
+
this.taskParams = taskParams;
|
|
227
|
+
}
|
|
228
|
+
static make(taskHandler, format, product, taskParams, getPreviewUrl) {
|
|
229
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
230
|
+
const t = new TaskRender(taskHandler, format, product, taskParams, getPreviewUrl);
|
|
231
|
+
yield t.startAndRegister();
|
|
232
|
+
return t;
|
|
233
|
+
});
|
|
234
|
+
}
|
|
235
|
+
postInit() {
|
|
236
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
237
|
+
return (yield this.taskHandler.api.postRender(this._productParams, Object.assign(Object.assign(Object.assign({}, this._apiSelection), this.taskParams), { format: this.format, width: Math.floor(this.taskParams.width), height: Math.floor(this.taskParams.height) }))).renderStatus;
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
pollStatus() {
|
|
241
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
242
|
+
return (yield this.taskHandler.api.getRenderById({ uuid: this.uuid })).renderStatus;
|
|
243
|
+
});
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
class TaskExport extends Task {
|
|
247
|
+
static make(taskHandler, format, product, getPreviewUrl) {
|
|
248
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
249
|
+
const t = new TaskExport(taskHandler, format, product, getPreviewUrl);
|
|
250
|
+
yield t.startAndRegister();
|
|
251
|
+
return t;
|
|
252
|
+
});
|
|
253
|
+
}
|
|
254
|
+
postInit() {
|
|
255
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
256
|
+
return (yield this.taskHandler.api.postExport(this._productParams, Object.assign(Object.assign({}, this._apiSelection), { format: this.format }))).exportStatus;
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
pollStatus() {
|
|
260
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
261
|
+
return (yield this.taskHandler.api.getExportById({ uuid: this.uuid })).exportStatus;
|
|
262
|
+
});
|
|
263
|
+
}
|
|
264
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ExportFormat, RenderFormat } from "../CatalogueAPI";
|
|
2
|
+
export declare const allRenderFormats: RenderFormat[];
|
|
3
|
+
export declare const allExportFormats: ExportFormat[];
|
|
4
|
+
export declare type RenderOrExportFormat = RenderFormat | ExportFormat;
|
|
5
|
+
export declare function isRenderFormat(type: unknown): type is RenderFormat;
|
|
6
|
+
export declare function isExportFormat(type: unknown): type is ExportFormat;
|
|
7
|
+
//# sourceMappingURL=formats.d.ts.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const allRenderFormats = ["jpg", "png"];
|
|
2
|
+
export const allExportFormats = ["fbx", "dwg", "cmdrw", "cmfav", "cmsym"];
|
|
3
|
+
export function isRenderFormat(type) {
|
|
4
|
+
return allRenderFormats.some((f) => type === f);
|
|
5
|
+
}
|
|
6
|
+
export function isExportFormat(type) {
|
|
7
|
+
return allExportFormats.some((f) => type === f);
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@configura/web-api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0-alpha.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@configura/web-utilities": "^1.
|
|
26
|
+
"@configura/web-utilities": "^1.5.0-alpha.0"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "6e24920b36ac225b17fcb519c0f4b7c6af924fbd"
|
|
29
29
|
}
|