oc 0.49.49 → 0.49.51
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/CHANGELOG.md +6 -0
- package/dist/cli/domain/package-components.js +25 -1
- package/dist/components/oc-client/_package/package.json +37 -1
- package/dist/components/oc-client/_package/server.js +1 -1
- package/dist/components/oc-client/package.json +1 -1
- package/dist/registry/domain/components-details.js +2 -1
- package/dist/registry/routes/component-info.d.ts +1 -1
- package/dist/registry/routes/component-info.js +18 -8
- package/dist/registry/routes/helpers/get-components-history.d.ts +1 -0
- package/dist/registry/routes/helpers/get-components-history.js +2 -0
- package/dist/registry/views/info.d.ts +2 -1
- package/dist/registry/views/info.js +84 -2
- package/dist/registry/views/partials/components-history.js +4 -2
- package/dist/registry/views/partials/components-list.js +14 -4
- package/dist/types.d.ts +10 -5
- package/logintervals.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Change Log
|
|
2
2
|
|
|
3
|
+
### v0.49.51
|
|
4
|
+
- [#1363](https://github.com/opencomponents/oc/pull/1363) calculate sizes on packaging and show in registry UI if available
|
|
5
|
+
|
|
6
|
+
### v0.49.50
|
|
7
|
+
- [#1362](https://github.com/opencomponents/oc/pull/1362) update oc client to fix a bug with externals
|
|
8
|
+
|
|
3
9
|
### v0.49.49
|
|
4
10
|
- [#1360](https://github.com/opencomponents/oc/pull/1360) [Snyk] Security upgrade express from 4.18.2 to 4.19.2
|
|
5
11
|
- [#1361](https://github.com/opencomponents/oc/pull/1361) update packages
|
|
@@ -31,6 +31,28 @@ const util_1 = require("util");
|
|
|
31
31
|
const path_1 = __importDefault(require("path"));
|
|
32
32
|
const require_template_1 = __importDefault(require("./handle-dependencies/require-template"));
|
|
33
33
|
const validator = __importStar(require("../../registry/domain/validators"));
|
|
34
|
+
function checkSizes(folder) {
|
|
35
|
+
const jsFiles = fs_extra_1.default.readdirSync(folder).filter(x => x.endsWith('.js'));
|
|
36
|
+
const sizes = {
|
|
37
|
+
client: 0
|
|
38
|
+
};
|
|
39
|
+
for (const file of jsFiles) {
|
|
40
|
+
if (file === 'server.js') {
|
|
41
|
+
sizes.server = fs_extra_1.default.statSync(path_1.default.join(folder, file)).size;
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
sizes.client += fs_extra_1.default.statSync(path_1.default.join(folder, file)).size;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return sizes;
|
|
48
|
+
}
|
|
49
|
+
function addSizes(folder, component, sizes) {
|
|
50
|
+
component.oc.files.template.size = sizes.client;
|
|
51
|
+
if (sizes.server) {
|
|
52
|
+
component.oc.files.dataProvider.size = sizes.server;
|
|
53
|
+
}
|
|
54
|
+
fs_extra_1.default.writeJsonSync(path_1.default.join(folder, 'package.json'), component, { spaces: 2 });
|
|
55
|
+
}
|
|
34
56
|
const packageComponents = () => async (options) => {
|
|
35
57
|
const production = options.production;
|
|
36
58
|
const componentPath = options.componentPath;
|
|
@@ -66,6 +88,8 @@ const packageComponents = () => async (options) => {
|
|
|
66
88
|
componentPath
|
|
67
89
|
});
|
|
68
90
|
const compile = (0, util_1.promisify)(ocTemplate.compile);
|
|
69
|
-
|
|
91
|
+
const component = await compile(compileOptions);
|
|
92
|
+
addSizes(publishPath, component, checkSizes(publishPath));
|
|
93
|
+
return component;
|
|
70
94
|
};
|
|
71
95
|
exports.default = packageComponents;
|
|
@@ -1 +1,37 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "oc-client",
|
|
3
|
+
"description": "The OpenComponents client-side javascript client",
|
|
4
|
+
"version": "0.49.51",
|
|
5
|
+
"repository": "https://github.com/opencomponents/oc/tree/master/components/oc-client",
|
|
6
|
+
"author": "Matteo Figus <matteofigus@gmail.com>",
|
|
7
|
+
"oc": {
|
|
8
|
+
"container": false,
|
|
9
|
+
"renderInfo": false,
|
|
10
|
+
"minify": false,
|
|
11
|
+
"parameters": {},
|
|
12
|
+
"files": {
|
|
13
|
+
"template": {
|
|
14
|
+
"type": "oc-template-es6",
|
|
15
|
+
"hashKey": "52c0b54c351e404a3716b5e612b758626322e81b",
|
|
16
|
+
"src": "template.js",
|
|
17
|
+
"version": "1.0.7",
|
|
18
|
+
"size": 2704
|
|
19
|
+
},
|
|
20
|
+
"static": [
|
|
21
|
+
"src"
|
|
22
|
+
],
|
|
23
|
+
"dataProvider": {
|
|
24
|
+
"type": "node.js",
|
|
25
|
+
"hashKey": "54931e303715e75c8b22498569591f8b08a7373b",
|
|
26
|
+
"src": "server.js",
|
|
27
|
+
"size": 602
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"version": "0.49.51",
|
|
31
|
+
"packaged": true,
|
|
32
|
+
"date": 1712517973137
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"oc-template-es6-compiler": "^1.0.1"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=(t,s)=>{const{staticPath:a,templates:e}=t;return s(null,{staticPath:a,templates:e})},r=(t,s)=>{o(t,(a,e)=>{if(a)return s(a);if(e==null)return s(null,{__oc_emptyResponse:!0});const n=Object.assign({},e,{_staticPath:t.staticPath,_baseUrl:t.baseUrl,_componentName:"oc-client",_componentVersion:"0.49.
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=(t,s)=>{const{staticPath:a,templates:e}=t;return s(null,{staticPath:a,templates:e})},r=(t,s)=>{o(t,(a,e)=>{if(a)return s(a);if(e==null)return s(null,{__oc_emptyResponse:!0});const n=Object.assign({},e,{_staticPath:t.staticPath,_baseUrl:t.baseUrl,_componentName:"oc-client",_componentVersion:"0.49.51"}),c=t.staticPath.indexOf("http")===0?t.staticPath:"https:"+t.staticPath;return s(null,Object.assign({},{component:{key:"52c0b54c351e404a3716b5e612b758626322e81b",src:c+"template.js",props:n}}))})};exports.data=r;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oc-client",
|
|
3
3
|
"description": "The OpenComponents client-side javascript client",
|
|
4
|
-
"version": "0.49.
|
|
4
|
+
"version": "0.49.51",
|
|
5
5
|
"repository": "https://github.com/opencomponents/oc/tree/master/components/oc-client",
|
|
6
6
|
"author": "Matteo Figus <matteofigus@gmail.com>",
|
|
7
7
|
"oc": {
|
|
@@ -33,7 +33,8 @@ function componentsDetails(conf, cdn) {
|
|
|
33
33
|
await Promise.all(missing.map(({ name, version }) => limit(async () => {
|
|
34
34
|
const content = await cdn.getJson(`${conf.storage.options.componentsDir}/${name}/${version}/package.json`, true);
|
|
35
35
|
details.components[name][version] = {
|
|
36
|
-
publishDate: content.oc.date || 0
|
|
36
|
+
publishDate: content.oc.date || 0,
|
|
37
|
+
templateSize: content.oc.files.template.size
|
|
37
38
|
};
|
|
38
39
|
})));
|
|
39
40
|
return {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { Repository } from '../domain/repository';
|
|
2
2
|
import { Config } from '../../types';
|
|
3
3
|
import { Request, Response } from 'express';
|
|
4
|
-
export default function componentInfoRoute(conf: Config, repository: Repository): (req: Request, res: Response) => void
|
|
4
|
+
export default function componentInfoRoute(conf: Config, repository: Repository): (req: Request, res: Response) => Promise<void>;
|
|
@@ -47,8 +47,8 @@ function getParsedAuthor(component) {
|
|
|
47
47
|
const author = component.author || {};
|
|
48
48
|
return typeof author === 'string' ? (0, parse_author_1.default)(author) : author;
|
|
49
49
|
}
|
|
50
|
-
function componentInfo(err, req, res, component) {
|
|
51
|
-
if (err) {
|
|
50
|
+
function componentInfo(err, req, res, component, componentDetail) {
|
|
51
|
+
if (!component || err) {
|
|
52
52
|
res.errorDetails = err.registryError || err;
|
|
53
53
|
res.status(404).json(err);
|
|
54
54
|
return;
|
|
@@ -67,6 +67,7 @@ function componentInfo(err, req, res, component) {
|
|
|
67
67
|
}
|
|
68
68
|
res.send((0, info_1.default)({
|
|
69
69
|
component,
|
|
70
|
+
componentDetail,
|
|
70
71
|
dependencies: Object.keys(component.dependencies || {}),
|
|
71
72
|
href,
|
|
72
73
|
parsedAuthor,
|
|
@@ -83,13 +84,22 @@ function componentInfo(err, req, res, component) {
|
|
|
83
84
|
}
|
|
84
85
|
}
|
|
85
86
|
function componentInfoRoute(conf, repository) {
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
async function handler(req, res) {
|
|
88
|
+
try {
|
|
89
|
+
const history = await repository
|
|
90
|
+
.getComponentsDetails()
|
|
91
|
+
.catch(() => undefined);
|
|
92
|
+
const componentDetail = history?.components[req.params['componentName']];
|
|
93
|
+
const component = await repository.getComponent(req.params['componentName'], req.params['componentVersion']);
|
|
94
|
+
componentInfo(null, req, res, component, componentDetail);
|
|
95
|
+
}
|
|
96
|
+
catch (registryError) {
|
|
97
|
+
if (conf.fallbackRegistryUrl) {
|
|
89
98
|
return getComponentFallback.getComponentInfo(conf, req, res, registryError, (fallbackError, fallbackComponent) => componentInfo(fallbackError, req, res, fallbackComponent));
|
|
90
99
|
}
|
|
91
|
-
componentInfo(registryError, req, res
|
|
92
|
-
}
|
|
93
|
-
}
|
|
100
|
+
componentInfo(registryError, req, res);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
return handler;
|
|
94
104
|
}
|
|
95
105
|
exports.default = componentInfoRoute;
|
|
@@ -11,6 +11,7 @@ function getComponentsHistory(history) {
|
|
|
11
11
|
result.push({
|
|
12
12
|
name,
|
|
13
13
|
publishDate: details.publishDate,
|
|
14
|
+
templateSize: details.templateSize,
|
|
14
15
|
version
|
|
15
16
|
});
|
|
16
17
|
}
|
|
@@ -20,6 +21,7 @@ function getComponentsHistory(history) {
|
|
|
20
21
|
.map(x => ({
|
|
21
22
|
name: x.name,
|
|
22
23
|
version: x.version,
|
|
24
|
+
templateSize: x.templateSize,
|
|
23
25
|
publishDate: !x.publishDate
|
|
24
26
|
? 'Unknown'
|
|
25
27
|
: (0, date_stringify_1.default)(new Date(x.publishDate))
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component } from '../../types';
|
|
1
|
+
import { Component, ComponentDetail } from '../../types';
|
|
2
2
|
interface Vm {
|
|
3
3
|
parsedAuthor: {
|
|
4
4
|
name?: string;
|
|
@@ -6,6 +6,7 @@ interface Vm {
|
|
|
6
6
|
url?: string;
|
|
7
7
|
};
|
|
8
8
|
component: Component;
|
|
9
|
+
componentDetail?: ComponentDetail;
|
|
9
10
|
dependencies: string[];
|
|
10
11
|
href: string;
|
|
11
12
|
sandBoxDefaultQs: string;
|
|
@@ -11,6 +11,79 @@ const info_1 = __importDefault(require("./static/info"));
|
|
|
11
11
|
const layout_1 = __importDefault(require("./partials/layout"));
|
|
12
12
|
const property_1 = __importDefault(require("./partials/property"));
|
|
13
13
|
const is_template_legacy_1 = __importDefault(require("../../utils/is-template-legacy"));
|
|
14
|
+
function statsJs(componentDetail) {
|
|
15
|
+
return `
|
|
16
|
+
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
17
|
+
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns/dist/chartjs-adapter-date-fns.bundle.min.js"></script>
|
|
18
|
+
<script>
|
|
19
|
+
(function () {
|
|
20
|
+
const componentDetail = ${JSON.stringify(componentDetail)};
|
|
21
|
+
const ctx = document.getElementById('stats');
|
|
22
|
+
const dataPoints = [];
|
|
23
|
+
const versionNumbers = Object.keys(componentDetail);
|
|
24
|
+
|
|
25
|
+
for (const versionNumber of versionNumbers) {
|
|
26
|
+
const versionData = componentDetail[versionNumber];
|
|
27
|
+
const date = new Date(versionData.publishDate);
|
|
28
|
+
const size = Math.round(versionData.templateSize / 1024);
|
|
29
|
+
|
|
30
|
+
// Add the data point to the array
|
|
31
|
+
dataPoints.push({ x: date, y: size, version: versionNumber });
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const dataset = {
|
|
35
|
+
label: 'guest-stay-config',
|
|
36
|
+
data: dataPoints,
|
|
37
|
+
tension: 0.1,
|
|
38
|
+
borderWidth: 1
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
new Chart(ctx, {
|
|
42
|
+
type: 'line',
|
|
43
|
+
data: {
|
|
44
|
+
datasets: [dataset]
|
|
45
|
+
},
|
|
46
|
+
options: {
|
|
47
|
+
plugins: {
|
|
48
|
+
tooltip: {
|
|
49
|
+
callbacks: {
|
|
50
|
+
footer(items) {
|
|
51
|
+
const version = items[0].raw.version;
|
|
52
|
+
return 'Version: ' + version;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
title: {
|
|
58
|
+
display: true,
|
|
59
|
+
text: "Package Sizes Over Time",
|
|
60
|
+
},
|
|
61
|
+
scales: {
|
|
62
|
+
x: {
|
|
63
|
+
type: "time",
|
|
64
|
+
time: {
|
|
65
|
+
unit: "day",
|
|
66
|
+
},
|
|
67
|
+
display: true,
|
|
68
|
+
title: {
|
|
69
|
+
display: true,
|
|
70
|
+
text: 'Date published'
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
y: {
|
|
74
|
+
display: true,
|
|
75
|
+
title: {
|
|
76
|
+
display: true,
|
|
77
|
+
text: 'Size in KB'
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
}
|
|
82
|
+
});
|
|
83
|
+
}());
|
|
84
|
+
</script>
|
|
85
|
+
`;
|
|
86
|
+
}
|
|
14
87
|
function info(vm) {
|
|
15
88
|
const componentAuthor = (0, component_author_1.default)(vm);
|
|
16
89
|
const componentParameters = (0, component_parameters_1.default)(vm);
|
|
@@ -32,9 +105,14 @@ function info(vm) {
|
|
|
32
105
|
const template = `${templateType} (${(0, is_template_legacy_1.default)(templateType)
|
|
33
106
|
? 'legacy'
|
|
34
107
|
: compiler + '@' + component.oc.files.template.version})`;
|
|
108
|
+
const statsAvailable = !!vm.componentDetail && Object.keys(vm.componentDetail).length > 1;
|
|
35
109
|
const content = `<a class="back" href="${href}"><< All components</a>
|
|
36
110
|
<h2>${component.name} ${componentVersions()}</h2>
|
|
37
111
|
<p class="w-100">${component.description} ${componentState()}</p>
|
|
112
|
+
${statsAvailable
|
|
113
|
+
? `<h3>Stats</h3>
|
|
114
|
+
<canvas id="stats" width="400" height="200"></canvas>`
|
|
115
|
+
: ''}
|
|
38
116
|
<h3>Component Info</h3>
|
|
39
117
|
${property('Repository', repositoryUrl || 'not available', !!repositoryUrl)}
|
|
40
118
|
${componentAuthor()}
|
|
@@ -43,6 +121,7 @@ function info(vm) {
|
|
|
43
121
|
${property('Template', template)}
|
|
44
122
|
${showArray('Node.js dependencies', dependencies)}
|
|
45
123
|
${showArray('Plugin dependencies', component.oc.plugins)}
|
|
124
|
+
${component.oc.files.template.size ? property('Template size', `${Math.round(component.oc.files.template.size / 1024)} kb`) : ''}
|
|
46
125
|
${componentParameters()}
|
|
47
126
|
<h3>Code</h3>
|
|
48
127
|
<p>
|
|
@@ -62,9 +141,12 @@ function info(vm) {
|
|
|
62
141
|
)
|
|
63
142
|
</h3>
|
|
64
143
|
<iframe class="preview" src="~preview/${sandBoxDefaultQs}"></iframe>`;
|
|
65
|
-
const scripts =
|
|
144
|
+
const scripts = `
|
|
145
|
+
<script>var thisComponentHref="${href}${component.name}/";
|
|
66
146
|
${info_1.default}
|
|
67
|
-
</script
|
|
147
|
+
</script>
|
|
148
|
+
${statsAvailable ? statsJs(vm.componentDetail) : ''}
|
|
149
|
+
`;
|
|
68
150
|
return layout({ content, scripts });
|
|
69
151
|
}
|
|
70
152
|
exports.default = info;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
function componentsHistory(vm) {
|
|
4
|
-
const componentRow = ({ name, publishDate, version }) =>
|
|
4
|
+
const componentRow = ({ name, publishDate, version, templateSize }) => {
|
|
5
|
+
return `<a href="${name}/${version}/~info">
|
|
5
6
|
<div class="componentRow row table">
|
|
6
|
-
<p class="release">${publishDate} - Published ${name}@${version}</p>
|
|
7
|
+
<p class="release">${publishDate} - Published ${name}@${version}${templateSize ? ` [${Math.round(templateSize / 1024)} kb]` : ''}</p>
|
|
7
8
|
</div>
|
|
8
9
|
</a>`;
|
|
10
|
+
};
|
|
9
11
|
const history = vm.componentsHistory || [];
|
|
10
12
|
return `<div id="components-history" class="box">${history
|
|
11
13
|
.map(componentRow)
|
|
@@ -6,19 +6,27 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const selected_checkbox_1 = __importDefault(require("./selected-checkbox"));
|
|
7
7
|
function componentsList(vm) {
|
|
8
8
|
const isLocal = vm.type !== 'oc-registry';
|
|
9
|
+
const isRemote = !isLocal;
|
|
10
|
+
const sizeAvailable = vm.components.some(component => component.oc.files.template.size);
|
|
9
11
|
const selectedCheckbox = (0, selected_checkbox_1.default)(vm);
|
|
10
|
-
const
|
|
12
|
+
const remoteServerColumns = isRemote
|
|
11
13
|
? '<div class="date">Updated</div><div class="activity">Activity</div>'
|
|
12
14
|
: '';
|
|
15
|
+
const sizeColumn = sizeAvailable ? '<div>Size</div>' : '';
|
|
13
16
|
const componentRow = (component) => {
|
|
14
17
|
const componentState = component.oc.state
|
|
15
18
|
? `<div class="state component-state-${component.oc.state.toLowerCase()}">${component.oc.state}</div>`
|
|
16
19
|
: '';
|
|
17
20
|
const isHidden = component.oc.state === 'deprecated' ||
|
|
18
21
|
component.oc.state === 'experimental';
|
|
19
|
-
const
|
|
22
|
+
const remoteServerColumns = isRemote
|
|
20
23
|
? `<div class="date">${component.oc.stringifiedDate || ''}</div><div class="activity">${component.allVersions.length}</div>`
|
|
21
24
|
: '';
|
|
25
|
+
const sizeColumn = sizeAvailable
|
|
26
|
+
? component.oc.files.template.size
|
|
27
|
+
? `<div>${Math.round(component.oc.files.template.size / 1024)} kb</div>`
|
|
28
|
+
: '<div>? Kb</div>'
|
|
29
|
+
: '';
|
|
22
30
|
return `<a href="${component.name}/${component.version}/~info">
|
|
23
31
|
<div id="component-${component.name}" class="componentRow row table${isHidden ? ' hide' : ''}">
|
|
24
32
|
<div class="title">
|
|
@@ -28,7 +36,8 @@ function componentsList(vm) {
|
|
|
28
36
|
${componentState}
|
|
29
37
|
<div class="author">${component.author.name || ''}</div>
|
|
30
38
|
<div>${component.version}</div>
|
|
31
|
-
${
|
|
39
|
+
${remoteServerColumns}
|
|
40
|
+
${sizeColumn}
|
|
32
41
|
</div>
|
|
33
42
|
</a>`;
|
|
34
43
|
};
|
|
@@ -48,7 +57,8 @@ function componentsList(vm) {
|
|
|
48
57
|
<div class="title"></div>
|
|
49
58
|
<div class="author">Author</div>
|
|
50
59
|
<div>Latest version</div>
|
|
51
|
-
${
|
|
60
|
+
${remoteServerColumns}
|
|
61
|
+
${sizeColumn}
|
|
52
62
|
</div>
|
|
53
63
|
${vm.components.map(componentRow).join('')}
|
|
54
64
|
</div>`;
|
package/dist/types.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ interface ComponentHistory {
|
|
|
15
15
|
name: string;
|
|
16
16
|
publishDate: string;
|
|
17
17
|
version: string;
|
|
18
|
+
templateSize: number;
|
|
18
19
|
}
|
|
19
20
|
export interface TemplateInfo {
|
|
20
21
|
externals: Array<{
|
|
@@ -26,13 +27,15 @@ export interface TemplateInfo {
|
|
|
26
27
|
type: string;
|
|
27
28
|
version: string;
|
|
28
29
|
}
|
|
30
|
+
export type ComponentDetail = {
|
|
31
|
+
[componentVersion: string]: {
|
|
32
|
+
publishDate: number;
|
|
33
|
+
templateSize?: number;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
29
36
|
export interface ComponentsDetails {
|
|
30
37
|
components: {
|
|
31
|
-
[componentName: string]:
|
|
32
|
-
[componentVersion: string]: {
|
|
33
|
-
publishDate: number;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
38
|
+
[componentName: string]: ComponentDetail;
|
|
36
39
|
};
|
|
37
40
|
lastEdit: number;
|
|
38
41
|
}
|
|
@@ -64,6 +67,7 @@ interface OcConfiguration {
|
|
|
64
67
|
hashKey: string;
|
|
65
68
|
src: string;
|
|
66
69
|
type: string;
|
|
70
|
+
size?: number;
|
|
67
71
|
};
|
|
68
72
|
static: string[];
|
|
69
73
|
template: {
|
|
@@ -71,6 +75,7 @@ interface OcConfiguration {
|
|
|
71
75
|
src: string;
|
|
72
76
|
type: string;
|
|
73
77
|
version: string;
|
|
78
|
+
size?: number;
|
|
74
79
|
};
|
|
75
80
|
env?: string;
|
|
76
81
|
};
|
package/logintervals.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"to":"v0.49.49","from":"v0.49.48"},{"to":"v0.49.48","from":"v0.49.47"},{"to":"v0.49.47","from":"v0.49.46"},{"to":"v0.49.46","from":"v0.49.45"},{"to":"v0.49.45","from":"v0.49.44"},{"to":"v0.49.44","from":"v0.49.43"},{"to":"v0.49.43","from":"v0.49.42"},{"to":"v0.49.42","from":"v0.49.41"},{"to":"v0.49.41","from":"v0.49.40"},{"to":"v0.49.40","from":"v0.49.39"},{"to":"v0.49.39","from":"v0.49.38"},{"to":"v0.49.38","from":"v0.49.37"},{"to":"v0.49.37","from":"v0.49.36"},{"to":"v0.49.36","from":"v0.49.35"},{"to":"v0.49.35","from":"v0.49.34"},{"to":"v0.49.34","from":"v0.49.32"},{"to":"v0.49.32","from":"v0.49.31"},{"to":"v0.49.31","from":"v0.49.30"},{"to":"v0.49.30","from":"v0.49.29"},{"to":"v0.49.29","from":"v0.49.28"},{"to":"v0.49.28","from":"v0.49.27"},{"to":"v0.49.27","from":"v0.49.26"},{"to":"v0.49.26","from":"v0.49.25"},{"to":"v0.49.25","from":"v0.49.24"},{"to":"v0.49.24","from":"v0.49.23"},{"to":"v0.49.23","from":"v0.49.22"},{"to":"v0.49.22","from":"v0.49.21"},{"to":"v0.49.21","from":"v0.49.20"},{"to":"v0.49.20","from":"v0.49.19"},{"to":"v0.49.19","from":"v0.49.18"},{"to":"v0.49.18","from":"v0.49.17"},{"to":"v0.49.17","from":"v0.49.16"},{"to":"v0.49.16","from":"v0.49.15"},{"to":"v0.49.15","from":"v0.49.14"},{"to":"v0.49.14","from":"v0.49.12"},{"to":"v0.49.12","from":"v0.49.11"},{"to":"v0.49.11","from":"v0.49.9"},{"to":"v0.49.9","from":"v0.49.8"},{"to":"v0.49.8","from":"v0.49.7"},{"to":"v0.49.7","from":"v0.49.6"},{"to":"v0.49.6","from":"v0.49.5"},{"to":"v0.49.5","from":"v0.49.4"},{"to":"v0.49.4","from":"v0.49.3"},{"to":"v0.49.3","from":"v0.49.2"},{"to":"v0.49.2","from":"v0.49.1"},{"to":"v0.49.1","from":"v0.49.0"},{"to":"v0.49.0","from":"v0.48.23"},{"to":"v0.48.23","from":"v0.48.22"},{"to":"v0.48.22","from":"v0.48.21"},{"to":"v0.48.21","from":"v0.48.19"},{"to":"v0.48.19","from":"v0.48.18"},{"to":"v0.48.18","from":"v0.48.17"},{"to":"v0.48.17","from":"v0.48.16"},{"to":"v0.48.16","from":"v0.48.15"},{"to":"v0.48.15","from":"v0.48.14"},{"to":"v0.48.14","from":"v0.48.13"},{"to":"v0.48.13","from":"v0.48.12"},{"to":"v0.48.12","from":"v0.48.11"},{"to":"v0.48.11","from":"v0.48.10"},{"to":"v0.48.10","from":"v0.48.9"},{"to":"v0.48.9","from":"v0.48.7"},{"to":"v0.48.7","from":"v0.48.6"},{"to":"v0.48.6","from":"v0.48.5"},{"to":"v0.48.5","from":"v0.48.4"},{"to":"v0.48.4","from":"v0.48.3"},{"to":"v0.48.3","from":"v0.48.2"},{"to":"v0.48.2","from":"v0.48.1"},{"to":"v0.48.1","from":"v0.48.0"},{"to":"v0.48.0","from":"v0.47.1"},{"to":"v0.47.1","from":"v0.47.0"},{"to":"v0.47.0","from":"v0.46.0"},{"to":"v0.46.0","from":"v0.45.4"},{"to":"v0.45.4","from":"v0.45.3"},{"to":"v0.45.3","from":"v0.45.2"},{"to":"v0.45.2","from":"v0.45.1"},{"to":"v0.45.1","from":"v0.45.0"},{"to":"v0.45.0","from":"v0.44.13"},{"to":"v0.44.13","from":"v0.44.12"},{"to":"v0.44.12","from":"v0.44.11"},{"to":"v0.44.11","from":"v0.44.10"},{"to":"v0.44.10","from":"v0.44.9"},{"to":"v0.44.9","from":"v0.44.8"},{"to":"v0.44.8","from":"v0.44.7"},{"to":"v0.44.7","from":"v0.44.6"},{"to":"v0.44.6","from":"v0.44.5"},{"to":"v0.44.5","from":"v0.44.4"},{"to":"v0.44.4","from":"v0.44.3"},{"to":"v0.44.3","from":"v0.44.2"},{"to":"v0.44.2","from":"v0.44.1"},{"to":"v0.44.1","from":"v0.44.0"},{"to":"v0.44.0","from":"v0.43.2"},{"to":"v0.43.2","from":"v0.43.1"},{"to":"v0.43.1","from":"v0.43.0"},{"to":"v0.43.0","from":"v0.42.26"},{"to":"v0.42.26","from":"v0.42.25"},{"to":"v0.42.25","from":"v0.42.24"},{"to":"v0.42.24","from":"v0.42.23"},{"to":"v0.42.23","from":"v0.42.22"},{"to":"v0.42.22","from":"v0.42.21"},{"to":"v0.42.21","from":"v0.42.20"},{"to":"v0.42.20","from":"v0.42.19"},{"to":"v0.42.19","from":"v0.42.18"},{"to":"v0.42.18","from":"v0.42.17"},{"to":"v0.42.17","from":"v0.42.16"},{"to":"v0.42.16","from":"v0.42.15"},{"to":"v0.42.15","from":"v0.42.14"},{"to":"v0.42.14","from":"v0.42.13"},{"to":"v0.42.13","from":"v0.42.12"},{"to":"v0.42.12","from":"v0.42.10"},{"to":"v0.42.10","from":"v0.42.9"},{"to":"v0.42.9","from":"v0.42.8"},{"to":"v0.42.8","from":"v0.42.7"},{"to":"v0.42.7","from":"v0.42.6"},{"to":"v0.42.6","from":"v0.42.5"},{"to":"v0.42.5","from":"v0.42.4"},{"to":"v0.42.4","from":"v0.42.3"},{"to":"v0.42.3","from":"v0.42.2"},{"to":"v0.42.2","from":"v0.42.1"},{"to":"v0.42.1","from":"v0.42.0"},{"to":"v0.42.0","from":"v0.41.16"},{"to":"v0.41.16","from":"v0.41.15"},{"to":"v0.41.15","from":"v0.41.14"},{"to":"v0.41.14","from":"v0.41.13"},{"to":"v0.41.13","from":"v0.41.12"},{"to":"v0.41.12","from":"v0.41.11"},{"to":"v0.41.11","from":"v0.41.10"},{"to":"v0.41.10","from":"v0.41.9"},{"to":"v0.41.9","from":"v0.41.8"},{"to":"v0.41.8","from":"v0.41.7"},{"to":"v0.41.7","from":"v0.41.6"},{"to":"v0.41.6","from":"v0.41.5"},{"to":"v0.41.5","from":"v0.41.4"},{"to":"v0.41.4","from":"v0.41.3"},{"to":"v0.41.3","from":"v0.41.2"},{"to":"v0.41.2","from":"v0.41.1"},{"to":"v0.41.1","from":"v0.41.0"},{"to":"v0.41.0","from":"v0.40.10"},{"to":"v0.40.10","from":"v0.40.9"},{"to":"v0.40.9","from":"v0.40.8"},{"to":"v0.40.8","from":"v0.40.7"},{"to":"v0.40.7","from":"v0.40.6"},{"to":"v0.40.6","from":"v0.40.5"},{"to":"v0.40.5","from":"v0.40.4"},{"to":"v0.40.4","from":"v0.40.3"},{"to":"v0.40.3","from":"v0.40.2"},{"to":"v0.40.2","from":"v0.40.1"},{"to":"v0.40.1","from":"v0.40.0"},{"to":"v0.40.0","from":"v0.39.8"},{"to":"v0.39.8","from":"v0.39.7"},{"to":"v0.39.7","from":"v0.39.6"},{"to":"v0.39.6","from":"v0.39.5"},{"to":"v0.39.5","from":"v0.39.4"},{"to":"v0.39.4","from":"v0.39.3"},{"to":"v0.39.3","from":"v0.39.2"},{"to":"v0.39.2","from":"v0.39.1"},{"to":"v0.39.1","from":"v0.39.0"},{"to":"v0.39.0","from":"v0.38.8"},{"to":"v0.38.8","from":"v0.38.7"},{"to":"v0.38.7","from":"v0.38.6"},{"to":"v0.38.6","from":"v0.38.5"},{"to":"v0.38.5","from":"v0.38.4"},{"to":"v0.38.4","from":"v0.38.3"},{"to":"v0.38.3","from":"v0.38.2"},{"to":"v0.38.2","from":"v0.38.1"},{"to":"v0.38.1","from":"v0.38.0"},{"to":"v0.38.0","from":"v0.37.11"},{"to":"v0.37.11","from":"v0.37.10"},{"to":"v0.37.10","from":"v0.37.9"},{"to":"v0.37.9","from":"v0.37.8"},{"to":"v0.37.8","from":"v0.37.7"},{"to":"v0.37.7","from":"v0.37.6"},{"to":"v0.37.6","from":"v0.37.5"},{"to":"v0.37.5","from":"v0.37.4"},{"to":"v0.37.4","from":"v0.37.3"},{"to":"v0.37.3","from":"v0.37.2"},{"to":"v0.37.2","from":"v0.37.1"},{"to":"v0.37.1","from":"v0.37.0"},{"to":"v0.37.0","from":"v0.36.28"},{"to":"v0.36.28","from":"v0.36.27"},{"to":"v0.36.27","from":"v0.36.26"},{"to":"v0.36.26","from":"v0.36.25"},{"to":"v0.36.25","from":"v0.36.24"},{"to":"v0.36.24","from":"v0.36.23"},{"to":"v0.36.23","from":"v0.36.22"},{"to":"v0.36.22","from":"v0.36.21"},{"to":"v0.36.21","from":"v0.36.20"},{"to":"v0.36.20","from":"v0.36.19"},{"to":"v0.36.19","from":"v0.36.18"},{"to":"v0.36.18","from":"v0.36.17"},{"to":"v0.36.17","from":"v0.36.16"},{"to":"v0.36.16","from":"v0.36.15"},{"to":"v0.36.15","from":"v0.36.14"},{"to":"v0.36.14","from":"v0.36.13"},{"to":"v0.36.13","from":"v0.36.12"},{"to":"v0.36.12","from":"v0.36.11"},{"to":"v0.36.11","from":"v0.36.10"},{"to":"v0.36.10","from":"v0.36.9"},{"to":"v0.36.9","from":"v0.36.8"},{"to":"v0.36.8","from":"v0.36.7"},{"to":"v0.36.7","from":"v0.36.6"},{"to":"v0.36.6","from":"v0.36.5"},{"to":"v0.36.5","from":"v0.36.4"},{"to":"v0.36.4","from":"v0.36.3"},{"to":"v0.36.3","from":"v0.36.2"},{"to":"v0.36.2","from":"v0.36.1"},{"to":"v0.36.1","from":"v0.36.0"},{"to":"v0.36.0","from":"v0.35.6"},{"to":"v0.35.6","from":"v0.35.5"},{"to":"v0.35.5","from":"v0.35.4"},{"to":"v0.35.4","from":"v0.35.3"},{"to":"v0.35.3","from":"v0.35.2"},{"to":"v0.35.2","from":"v0.35.1"},{"to":"v0.35.1","from":"v0.35.0"},{"to":"v0.35.0","from":"v0.34.8"},{"to":"v0.34.8","from":"v0.34.7"},{"to":"v0.34.7","from":"v0.34.6"},{"to":"v0.34.6","from":"v0.34.5"},{"to":"v0.34.5","from":"v0.34.4"},{"to":"v0.34.4","from":"v0.34.3"},{"to":"v0.34.3","from":"v0.34.2"},{"to":"v0.34.2","from":"v0.34.1"},{"to":"v0.34.1","from":"v0.34.0"},{"to":"v0.34.0","from":"v0.33.31"},{"to":"v0.33.31","from":"v0.33.30"},{"to":"v0.33.30","from":"v0.33.29"},{"to":"v0.33.29","from":"v0.33.28"},{"to":"v0.33.28","from":"v0.33.27"},{"to":"v0.33.27","from":"v0.33.26"},{"to":"v0.33.26","from":"v0.33.25"},{"to":"v0.33.25","from":"v0.33.24"},{"to":"v0.33.24","from":"v0.33.23"},{"to":"v0.33.23","from":"v0.33.22"},{"to":"v0.33.22","from":"v0.33.21"},{"to":"v0.33.21","from":"v0.33.20"},{"to":"v0.33.20","from":"v0.33.19"},{"to":"v0.33.19","from":"v0.33.18"},{"to":"v0.33.18","from":"v0.33.17"},{"to":"v0.33.17","from":"v0.33.16"},{"to":"v0.33.16","from":"v0.33.15"},{"to":"v0.33.15","from":"v0.33.14"},{"to":"v0.33.14","from":"v0.33.13"},{"to":"v0.33.13","from":"v0.33.12"},{"to":"v0.33.12","from":"v0.33.11"},{"to":"v0.33.11","from":"v0.33.10"},{"to":"v0.33.10","from":"v0.33.9"},{"to":"v0.33.9","from":"v0.33.8"},{"to":"v0.33.8","from":"v0.33.7"},{"to":"v0.33.7","from":"v0.33.6"},{"to":"v0.33.6","from":"v0.33.5"},{"to":"v0.33.5","from":"v0.33.4"},{"to":"v0.33.4","from":"v0.33.3"},{"to":"v0.33.3","from":"v0.33.2"},{"to":"v0.33.2","from":"v0.33.1"},{"to":"v0.33.1","from":"v0.33.0"},{"to":"v0.33.0","from":"v0.32.6"},{"to":"v0.32.6","from":"v0.32.5"},{"to":"v0.32.5","from":"v0.32.4"},{"to":"v0.32.4","from":"v0.32.3"},{"to":"v0.32.3","from":"v0.32.2"},{"to":"v0.32.2","from":"v0.32.1"},{"to":"v0.32.1","from":"v0.32.0"},{"to":"v0.32.0","from":"v0.31.2"},{"to":"v0.31.2","from":"v0.31.1"},{"to":"v0.31.1","from":"v0.31.0"},{"to":"v0.31.0","from":"v0.30.9"},{"to":"v0.30.9","from":"v0.30.8"},{"to":"v0.30.8","from":"v0.30.7"},{"to":"v0.30.7","from":"v0.30.6"},{"to":"v0.30.6","from":"v0.30.5"},{"to":"v0.30.5","from":"v0.30.4"},{"to":"v0.30.4","from":"v0.30.3"},{"to":"v0.30.3","from":"v0.30.2"},{"to":"v0.30.2","from":"v0.30.1"},{"to":"v0.30.1","from":"v0.30.0"},{"to":"v0.30.0","from":"v0.29.4"},{"to":"v0.29.4","from":"v0.29.3"},{"to":"v0.29.3","from":"v0.29.2"},{"to":"v0.29.2","from":"v0.29.1"},{"to":"v0.29.1","from":"v0.29.0"},{"to":"v0.29.0","from":"v0.28.9"},{"to":"v0.28.9","from":"v0.28.8"},{"to":"v0.28.8","from":"v0.28.7"},{"to":"v0.28.7","from":"v0.28.6"},{"to":"v0.28.6","from":"v0.28.5"},{"to":"v0.28.5","from":"v0.28.4"},{"to":"v0.28.4","from":"v0.28.3"},{"to":"v0.28.3","from":"v0.28.2"},{"to":"v0.28.2","from":"v0.28.1"},{"to":"v0.28.1","from":"v0.28.0"},{"to":"v0.28.0","from":"v0.27.9"},{"to":"v0.27.9","from":"v0.27.8"},{"to":"v0.27.8","from":"v0.27.7"},{"to":"v0.27.7","from":"v0.27.6"},{"to":"v0.27.6","from":"v0.27.5"},{"to":"v0.27.5","from":"v0.27.4"},{"to":"v0.27.4","from":"v0.27.3"},{"to":"v0.27.3","from":"v0.27.2"},{"to":"v0.27.2","from":"v0.27.1"},{"to":"v0.27.1","from":"v0.27.0"},{"to":"v0.27.0","from":"v0.26.2"},{"to":"v0.26.2","from":"v0.26.1"},{"to":"v0.26.1","from":"v0.26.0"},{"to":"v0.26.0","from":"v0.25.0"},{"to":"v0.25.0","from":"v0.24.1"},{"to":"v0.24.1","from":"v0.24.0"},{"to":"v0.24.0","from":"v0.23.7"},{"to":"v0.23.7","from":"v0.23.6"},{"to":"v0.23.6","from":"v0.23.5"},{"to":"v0.23.5","from":"v0.23.4"},{"to":"v0.23.4","from":"v0.23.3"},{"to":"v0.23.3","from":"v0.23.2"},{"to":"v0.23.2","from":"v0.23.1"},{"to":"v0.23.1","from":"v0.23.0"},{"to":"v0.23.0","from":"v0.22.3"},{"to":"v0.22.3","from":"v0.22.2"},{"to":"v0.22.2","from":"v0.22.1"},{"to":"v0.22.1","from":"v0.22.0"},{"to":"v0.22.0","from":"v0.21.0"},{"to":"v0.21.0","from":"v0.20.5"},{"to":"v0.20.5","from":"v0.20.4"},{"to":"v0.20.4","from":"v0.20.3"},{"to":"v0.20.3","from":"v0.20.2"},{"to":"v0.20.2","from":"v0.20.1"},{"to":"v0.20.1","from":"v0.20.0"},{"to":"v0.20.0","from":"v0.19.5"},{"to":"v0.19.5","from":"v0.19.4"},{"to":"v0.19.4","from":"v0.19.3"},{"to":"v0.19.3","from":"v0.19.2"},{"to":"v0.19.2","from":"v0.19.1"},{"to":"v0.19.1","from":"v0.19.0"},{"to":"v0.19.0","from":"6181a540729a7179d7a9d41489dfc241335cf1b5"}]
|
|
1
|
+
[{"to":"v0.49.51","from":"v0.49.50"},{"to":"v0.49.50","from":"v0.49.49"},{"to":"v0.49.49","from":"v0.49.48"},{"to":"v0.49.48","from":"v0.49.47"},{"to":"v0.49.47","from":"v0.49.46"},{"to":"v0.49.46","from":"v0.49.45"},{"to":"v0.49.45","from":"v0.49.44"},{"to":"v0.49.44","from":"v0.49.43"},{"to":"v0.49.43","from":"v0.49.42"},{"to":"v0.49.42","from":"v0.49.41"},{"to":"v0.49.41","from":"v0.49.40"},{"to":"v0.49.40","from":"v0.49.39"},{"to":"v0.49.39","from":"v0.49.38"},{"to":"v0.49.38","from":"v0.49.37"},{"to":"v0.49.37","from":"v0.49.36"},{"to":"v0.49.36","from":"v0.49.35"},{"to":"v0.49.35","from":"v0.49.34"},{"to":"v0.49.34","from":"v0.49.32"},{"to":"v0.49.32","from":"v0.49.31"},{"to":"v0.49.31","from":"v0.49.30"},{"to":"v0.49.30","from":"v0.49.29"},{"to":"v0.49.29","from":"v0.49.28"},{"to":"v0.49.28","from":"v0.49.27"},{"to":"v0.49.27","from":"v0.49.26"},{"to":"v0.49.26","from":"v0.49.25"},{"to":"v0.49.25","from":"v0.49.24"},{"to":"v0.49.24","from":"v0.49.23"},{"to":"v0.49.23","from":"v0.49.22"},{"to":"v0.49.22","from":"v0.49.21"},{"to":"v0.49.21","from":"v0.49.20"},{"to":"v0.49.20","from":"v0.49.19"},{"to":"v0.49.19","from":"v0.49.18"},{"to":"v0.49.18","from":"v0.49.17"},{"to":"v0.49.17","from":"v0.49.16"},{"to":"v0.49.16","from":"v0.49.15"},{"to":"v0.49.15","from":"v0.49.14"},{"to":"v0.49.14","from":"v0.49.12"},{"to":"v0.49.12","from":"v0.49.11"},{"to":"v0.49.11","from":"v0.49.9"},{"to":"v0.49.9","from":"v0.49.8"},{"to":"v0.49.8","from":"v0.49.7"},{"to":"v0.49.7","from":"v0.49.6"},{"to":"v0.49.6","from":"v0.49.5"},{"to":"v0.49.5","from":"v0.49.4"},{"to":"v0.49.4","from":"v0.49.3"},{"to":"v0.49.3","from":"v0.49.2"},{"to":"v0.49.2","from":"v0.49.1"},{"to":"v0.49.1","from":"v0.49.0"},{"to":"v0.49.0","from":"v0.48.23"},{"to":"v0.48.23","from":"v0.48.22"},{"to":"v0.48.22","from":"v0.48.21"},{"to":"v0.48.21","from":"v0.48.19"},{"to":"v0.48.19","from":"v0.48.18"},{"to":"v0.48.18","from":"v0.48.17"},{"to":"v0.48.17","from":"v0.48.16"},{"to":"v0.48.16","from":"v0.48.15"},{"to":"v0.48.15","from":"v0.48.14"},{"to":"v0.48.14","from":"v0.48.13"},{"to":"v0.48.13","from":"v0.48.12"},{"to":"v0.48.12","from":"v0.48.11"},{"to":"v0.48.11","from":"v0.48.10"},{"to":"v0.48.10","from":"v0.48.9"},{"to":"v0.48.9","from":"v0.48.7"},{"to":"v0.48.7","from":"v0.48.6"},{"to":"v0.48.6","from":"v0.48.5"},{"to":"v0.48.5","from":"v0.48.4"},{"to":"v0.48.4","from":"v0.48.3"},{"to":"v0.48.3","from":"v0.48.2"},{"to":"v0.48.2","from":"v0.48.1"},{"to":"v0.48.1","from":"v0.48.0"},{"to":"v0.48.0","from":"v0.47.1"},{"to":"v0.47.1","from":"v0.47.0"},{"to":"v0.47.0","from":"v0.46.0"},{"to":"v0.46.0","from":"v0.45.4"},{"to":"v0.45.4","from":"v0.45.3"},{"to":"v0.45.3","from":"v0.45.2"},{"to":"v0.45.2","from":"v0.45.1"},{"to":"v0.45.1","from":"v0.45.0"},{"to":"v0.45.0","from":"v0.44.13"},{"to":"v0.44.13","from":"v0.44.12"},{"to":"v0.44.12","from":"v0.44.11"},{"to":"v0.44.11","from":"v0.44.10"},{"to":"v0.44.10","from":"v0.44.9"},{"to":"v0.44.9","from":"v0.44.8"},{"to":"v0.44.8","from":"v0.44.7"},{"to":"v0.44.7","from":"v0.44.6"},{"to":"v0.44.6","from":"v0.44.5"},{"to":"v0.44.5","from":"v0.44.4"},{"to":"v0.44.4","from":"v0.44.3"},{"to":"v0.44.3","from":"v0.44.2"},{"to":"v0.44.2","from":"v0.44.1"},{"to":"v0.44.1","from":"v0.44.0"},{"to":"v0.44.0","from":"v0.43.2"},{"to":"v0.43.2","from":"v0.43.1"},{"to":"v0.43.1","from":"v0.43.0"},{"to":"v0.43.0","from":"v0.42.26"},{"to":"v0.42.26","from":"v0.42.25"},{"to":"v0.42.25","from":"v0.42.24"},{"to":"v0.42.24","from":"v0.42.23"},{"to":"v0.42.23","from":"v0.42.22"},{"to":"v0.42.22","from":"v0.42.21"},{"to":"v0.42.21","from":"v0.42.20"},{"to":"v0.42.20","from":"v0.42.19"},{"to":"v0.42.19","from":"v0.42.18"},{"to":"v0.42.18","from":"v0.42.17"},{"to":"v0.42.17","from":"v0.42.16"},{"to":"v0.42.16","from":"v0.42.15"},{"to":"v0.42.15","from":"v0.42.14"},{"to":"v0.42.14","from":"v0.42.13"},{"to":"v0.42.13","from":"v0.42.12"},{"to":"v0.42.12","from":"v0.42.10"},{"to":"v0.42.10","from":"v0.42.9"},{"to":"v0.42.9","from":"v0.42.8"},{"to":"v0.42.8","from":"v0.42.7"},{"to":"v0.42.7","from":"v0.42.6"},{"to":"v0.42.6","from":"v0.42.5"},{"to":"v0.42.5","from":"v0.42.4"},{"to":"v0.42.4","from":"v0.42.3"},{"to":"v0.42.3","from":"v0.42.2"},{"to":"v0.42.2","from":"v0.42.1"},{"to":"v0.42.1","from":"v0.42.0"},{"to":"v0.42.0","from":"v0.41.16"},{"to":"v0.41.16","from":"v0.41.15"},{"to":"v0.41.15","from":"v0.41.14"},{"to":"v0.41.14","from":"v0.41.13"},{"to":"v0.41.13","from":"v0.41.12"},{"to":"v0.41.12","from":"v0.41.11"},{"to":"v0.41.11","from":"v0.41.10"},{"to":"v0.41.10","from":"v0.41.9"},{"to":"v0.41.9","from":"v0.41.8"},{"to":"v0.41.8","from":"v0.41.7"},{"to":"v0.41.7","from":"v0.41.6"},{"to":"v0.41.6","from":"v0.41.5"},{"to":"v0.41.5","from":"v0.41.4"},{"to":"v0.41.4","from":"v0.41.3"},{"to":"v0.41.3","from":"v0.41.2"},{"to":"v0.41.2","from":"v0.41.1"},{"to":"v0.41.1","from":"v0.41.0"},{"to":"v0.41.0","from":"v0.40.10"},{"to":"v0.40.10","from":"v0.40.9"},{"to":"v0.40.9","from":"v0.40.8"},{"to":"v0.40.8","from":"v0.40.7"},{"to":"v0.40.7","from":"v0.40.6"},{"to":"v0.40.6","from":"v0.40.5"},{"to":"v0.40.5","from":"v0.40.4"},{"to":"v0.40.4","from":"v0.40.3"},{"to":"v0.40.3","from":"v0.40.2"},{"to":"v0.40.2","from":"v0.40.1"},{"to":"v0.40.1","from":"v0.40.0"},{"to":"v0.40.0","from":"v0.39.8"},{"to":"v0.39.8","from":"v0.39.7"},{"to":"v0.39.7","from":"v0.39.6"},{"to":"v0.39.6","from":"v0.39.5"},{"to":"v0.39.5","from":"v0.39.4"},{"to":"v0.39.4","from":"v0.39.3"},{"to":"v0.39.3","from":"v0.39.2"},{"to":"v0.39.2","from":"v0.39.1"},{"to":"v0.39.1","from":"v0.39.0"},{"to":"v0.39.0","from":"v0.38.8"},{"to":"v0.38.8","from":"v0.38.7"},{"to":"v0.38.7","from":"v0.38.6"},{"to":"v0.38.6","from":"v0.38.5"},{"to":"v0.38.5","from":"v0.38.4"},{"to":"v0.38.4","from":"v0.38.3"},{"to":"v0.38.3","from":"v0.38.2"},{"to":"v0.38.2","from":"v0.38.1"},{"to":"v0.38.1","from":"v0.38.0"},{"to":"v0.38.0","from":"v0.37.11"},{"to":"v0.37.11","from":"v0.37.10"},{"to":"v0.37.10","from":"v0.37.9"},{"to":"v0.37.9","from":"v0.37.8"},{"to":"v0.37.8","from":"v0.37.7"},{"to":"v0.37.7","from":"v0.37.6"},{"to":"v0.37.6","from":"v0.37.5"},{"to":"v0.37.5","from":"v0.37.4"},{"to":"v0.37.4","from":"v0.37.3"},{"to":"v0.37.3","from":"v0.37.2"},{"to":"v0.37.2","from":"v0.37.1"},{"to":"v0.37.1","from":"v0.37.0"},{"to":"v0.37.0","from":"v0.36.28"},{"to":"v0.36.28","from":"v0.36.27"},{"to":"v0.36.27","from":"v0.36.26"},{"to":"v0.36.26","from":"v0.36.25"},{"to":"v0.36.25","from":"v0.36.24"},{"to":"v0.36.24","from":"v0.36.23"},{"to":"v0.36.23","from":"v0.36.22"},{"to":"v0.36.22","from":"v0.36.21"},{"to":"v0.36.21","from":"v0.36.20"},{"to":"v0.36.20","from":"v0.36.19"},{"to":"v0.36.19","from":"v0.36.18"},{"to":"v0.36.18","from":"v0.36.17"},{"to":"v0.36.17","from":"v0.36.16"},{"to":"v0.36.16","from":"v0.36.15"},{"to":"v0.36.15","from":"v0.36.14"},{"to":"v0.36.14","from":"v0.36.13"},{"to":"v0.36.13","from":"v0.36.12"},{"to":"v0.36.12","from":"v0.36.11"},{"to":"v0.36.11","from":"v0.36.10"},{"to":"v0.36.10","from":"v0.36.9"},{"to":"v0.36.9","from":"v0.36.8"},{"to":"v0.36.8","from":"v0.36.7"},{"to":"v0.36.7","from":"v0.36.6"},{"to":"v0.36.6","from":"v0.36.5"},{"to":"v0.36.5","from":"v0.36.4"},{"to":"v0.36.4","from":"v0.36.3"},{"to":"v0.36.3","from":"v0.36.2"},{"to":"v0.36.2","from":"v0.36.1"},{"to":"v0.36.1","from":"v0.36.0"},{"to":"v0.36.0","from":"v0.35.6"},{"to":"v0.35.6","from":"v0.35.5"},{"to":"v0.35.5","from":"v0.35.4"},{"to":"v0.35.4","from":"v0.35.3"},{"to":"v0.35.3","from":"v0.35.2"},{"to":"v0.35.2","from":"v0.35.1"},{"to":"v0.35.1","from":"v0.35.0"},{"to":"v0.35.0","from":"v0.34.8"},{"to":"v0.34.8","from":"v0.34.7"},{"to":"v0.34.7","from":"v0.34.6"},{"to":"v0.34.6","from":"v0.34.5"},{"to":"v0.34.5","from":"v0.34.4"},{"to":"v0.34.4","from":"v0.34.3"},{"to":"v0.34.3","from":"v0.34.2"},{"to":"v0.34.2","from":"v0.34.1"},{"to":"v0.34.1","from":"v0.34.0"},{"to":"v0.34.0","from":"v0.33.31"},{"to":"v0.33.31","from":"v0.33.30"},{"to":"v0.33.30","from":"v0.33.29"},{"to":"v0.33.29","from":"v0.33.28"},{"to":"v0.33.28","from":"v0.33.27"},{"to":"v0.33.27","from":"v0.33.26"},{"to":"v0.33.26","from":"v0.33.25"},{"to":"v0.33.25","from":"v0.33.24"},{"to":"v0.33.24","from":"v0.33.23"},{"to":"v0.33.23","from":"v0.33.22"},{"to":"v0.33.22","from":"v0.33.21"},{"to":"v0.33.21","from":"v0.33.20"},{"to":"v0.33.20","from":"v0.33.19"},{"to":"v0.33.19","from":"v0.33.18"},{"to":"v0.33.18","from":"v0.33.17"},{"to":"v0.33.17","from":"v0.33.16"},{"to":"v0.33.16","from":"v0.33.15"},{"to":"v0.33.15","from":"v0.33.14"},{"to":"v0.33.14","from":"v0.33.13"},{"to":"v0.33.13","from":"v0.33.12"},{"to":"v0.33.12","from":"v0.33.11"},{"to":"v0.33.11","from":"v0.33.10"},{"to":"v0.33.10","from":"v0.33.9"},{"to":"v0.33.9","from":"v0.33.8"},{"to":"v0.33.8","from":"v0.33.7"},{"to":"v0.33.7","from":"v0.33.6"},{"to":"v0.33.6","from":"v0.33.5"},{"to":"v0.33.5","from":"v0.33.4"},{"to":"v0.33.4","from":"v0.33.3"},{"to":"v0.33.3","from":"v0.33.2"},{"to":"v0.33.2","from":"v0.33.1"},{"to":"v0.33.1","from":"v0.33.0"},{"to":"v0.33.0","from":"v0.32.6"},{"to":"v0.32.6","from":"v0.32.5"},{"to":"v0.32.5","from":"v0.32.4"},{"to":"v0.32.4","from":"v0.32.3"},{"to":"v0.32.3","from":"v0.32.2"},{"to":"v0.32.2","from":"v0.32.1"},{"to":"v0.32.1","from":"v0.32.0"},{"to":"v0.32.0","from":"v0.31.2"},{"to":"v0.31.2","from":"v0.31.1"},{"to":"v0.31.1","from":"v0.31.0"},{"to":"v0.31.0","from":"v0.30.9"},{"to":"v0.30.9","from":"v0.30.8"},{"to":"v0.30.8","from":"v0.30.7"},{"to":"v0.30.7","from":"v0.30.6"},{"to":"v0.30.6","from":"v0.30.5"},{"to":"v0.30.5","from":"v0.30.4"},{"to":"v0.30.4","from":"v0.30.3"},{"to":"v0.30.3","from":"v0.30.2"},{"to":"v0.30.2","from":"v0.30.1"},{"to":"v0.30.1","from":"v0.30.0"},{"to":"v0.30.0","from":"v0.29.4"},{"to":"v0.29.4","from":"v0.29.3"},{"to":"v0.29.3","from":"v0.29.2"},{"to":"v0.29.2","from":"v0.29.1"},{"to":"v0.29.1","from":"v0.29.0"},{"to":"v0.29.0","from":"v0.28.9"},{"to":"v0.28.9","from":"v0.28.8"},{"to":"v0.28.8","from":"v0.28.7"},{"to":"v0.28.7","from":"v0.28.6"},{"to":"v0.28.6","from":"v0.28.5"},{"to":"v0.28.5","from":"v0.28.4"},{"to":"v0.28.4","from":"v0.28.3"},{"to":"v0.28.3","from":"v0.28.2"},{"to":"v0.28.2","from":"v0.28.1"},{"to":"v0.28.1","from":"v0.28.0"},{"to":"v0.28.0","from":"v0.27.9"},{"to":"v0.27.9","from":"v0.27.8"},{"to":"v0.27.8","from":"v0.27.7"},{"to":"v0.27.7","from":"v0.27.6"},{"to":"v0.27.6","from":"v0.27.5"},{"to":"v0.27.5","from":"v0.27.4"},{"to":"v0.27.4","from":"v0.27.3"},{"to":"v0.27.3","from":"v0.27.2"},{"to":"v0.27.2","from":"v0.27.1"},{"to":"v0.27.1","from":"v0.27.0"},{"to":"v0.27.0","from":"v0.26.2"},{"to":"v0.26.2","from":"v0.26.1"},{"to":"v0.26.1","from":"v0.26.0"},{"to":"v0.26.0","from":"v0.25.0"},{"to":"v0.25.0","from":"v0.24.1"},{"to":"v0.24.1","from":"v0.24.0"},{"to":"v0.24.0","from":"v0.23.7"},{"to":"v0.23.7","from":"v0.23.6"},{"to":"v0.23.6","from":"v0.23.5"},{"to":"v0.23.5","from":"v0.23.4"},{"to":"v0.23.4","from":"v0.23.3"},{"to":"v0.23.3","from":"v0.23.2"},{"to":"v0.23.2","from":"v0.23.1"},{"to":"v0.23.1","from":"v0.23.0"},{"to":"v0.23.0","from":"v0.22.3"},{"to":"v0.22.3","from":"v0.22.2"},{"to":"v0.22.2","from":"v0.22.1"},{"to":"v0.22.1","from":"v0.22.0"},{"to":"v0.22.0","from":"v0.21.0"},{"to":"v0.21.0","from":"v0.20.5"},{"to":"v0.20.5","from":"v0.20.4"},{"to":"v0.20.4","from":"v0.20.3"},{"to":"v0.20.3","from":"v0.20.2"},{"to":"v0.20.2","from":"v0.20.1"},{"to":"v0.20.1","from":"v0.20.0"},{"to":"v0.20.0","from":"v0.19.5"},{"to":"v0.19.5","from":"v0.19.4"},{"to":"v0.19.4","from":"v0.19.3"},{"to":"v0.19.3","from":"v0.19.2"},{"to":"v0.19.2","from":"v0.19.1"},{"to":"v0.19.1","from":"v0.19.0"},{"to":"v0.19.0","from":"6181a540729a7179d7a9d41489dfc241335cf1b5"}]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oc",
|
|
3
|
-
"version": "0.49.
|
|
3
|
+
"version": "0.49.51",
|
|
4
4
|
"description": "A framework for developing and distributing html components",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"multer": "^1.4.3",
|
|
104
104
|
"nice-cache": "^0.0.5",
|
|
105
105
|
"oc-client": "^4.0.1",
|
|
106
|
-
"oc-client-browser": "^1.7.
|
|
106
|
+
"oc-client-browser": "^1.7.11",
|
|
107
107
|
"oc-empty-response-handler": "^1.0.2",
|
|
108
108
|
"oc-get-unix-utc-timestamp": "^1.0.6",
|
|
109
109
|
"oc-s3-storage-adapter": "^2.1.1",
|