@balena/sbvr-types 9.0.1 → 9.0.2
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/.versionbot/CHANGELOG.yml +12 -1
- package/CHANGELOG.md +6 -1
- package/out/index.d.ts +2 -2
- package/package.json +2 -2
- package/src/index.ts +2 -2
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Change the exported Types to an interface so that they can be augmented
|
|
3
|
+
hash: 29de4665e63bd4b5f1cfe75d3018ec29e10c1889
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Thodoris Greasidis
|
|
9
|
+
version: 9.0.2
|
|
10
|
+
title: ""
|
|
11
|
+
date: 2024-09-04T08:36:04.170Z
|
|
1
12
|
- commits:
|
|
2
13
|
- subject: Update @balena/lint to v8.2.7
|
|
3
14
|
hash: 630ca7d6cbe4fed2d41827205215a2f28a971aea
|
|
@@ -8,7 +19,7 @@
|
|
|
8
19
|
author: Josh Bowling
|
|
9
20
|
version: 9.0.1
|
|
10
21
|
title: ""
|
|
11
|
-
date: 2024-08-
|
|
22
|
+
date: 2024-08-05T08:18:14.129Z
|
|
12
23
|
- commits:
|
|
13
24
|
- subject: Update BigInteger and BigSerial TsTypes
|
|
14
25
|
hash: 45d3cd6262f094a0c43ffe308dccab4968c074be
|
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,13 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v9.0.2
|
|
8
|
+
## (2024-09-04)
|
|
9
|
+
|
|
10
|
+
* Change the exported Types to an interface so that they can be augmented [Thodoris Greasidis]
|
|
11
|
+
|
|
7
12
|
# v9.0.1
|
|
8
|
-
## (2024-08-
|
|
13
|
+
## (2024-08-05)
|
|
9
14
|
|
|
10
15
|
* Update @balena/lint to v8.2.7 [Josh Bowling]
|
|
11
16
|
|
package/out/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import * as Text from './types/text';
|
|
|
22
22
|
import * as Time from './types/time';
|
|
23
23
|
import * as WebResource from './types/web-resource';
|
|
24
24
|
export { WebResource as WebResourceType } from './types/web-resource';
|
|
25
|
-
export
|
|
25
|
+
export interface Types {
|
|
26
26
|
'Big Integer': BigInteger.Types;
|
|
27
27
|
'Big Serial': BigSerial.Types;
|
|
28
28
|
Boolean: Boolean.Types;
|
|
@@ -44,7 +44,7 @@ export type Types = {
|
|
|
44
44
|
Text: Text.Types;
|
|
45
45
|
Time: Time.Types;
|
|
46
46
|
WebResource: WebResource.Types;
|
|
47
|
-
}
|
|
47
|
+
}
|
|
48
48
|
declare const _default: {
|
|
49
49
|
'Big Integer': typeof BigInteger;
|
|
50
50
|
'Big Serial': typeof BigSerial;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/sbvr-types",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.2",
|
|
4
4
|
"description": "SBVR type definitions.",
|
|
5
5
|
"main": "out",
|
|
6
6
|
"scripts": {
|
|
@@ -51,6 +51,6 @@
|
|
|
51
51
|
"npm": ">=8.1.0"
|
|
52
52
|
},
|
|
53
53
|
"versionist": {
|
|
54
|
-
"publishedAt": "2024-
|
|
54
|
+
"publishedAt": "2024-09-04T08:36:04.305Z"
|
|
55
55
|
}
|
|
56
56
|
}
|
package/src/index.ts
CHANGED
|
@@ -26,7 +26,7 @@ import * as WebResource from './types/web-resource';
|
|
|
26
26
|
|
|
27
27
|
export { WebResource as WebResourceType } from './types/web-resource';
|
|
28
28
|
|
|
29
|
-
export
|
|
29
|
+
export interface Types {
|
|
30
30
|
'Big Integer': BigInteger.Types;
|
|
31
31
|
'Big Serial': BigSerial.Types;
|
|
32
32
|
// eslint-disable-next-line id-denylist
|
|
@@ -49,7 +49,7 @@ export type Types = {
|
|
|
49
49
|
Text: Text.Types;
|
|
50
50
|
Time: Time.Types;
|
|
51
51
|
WebResource: WebResource.Types;
|
|
52
|
-
}
|
|
52
|
+
}
|
|
53
53
|
|
|
54
54
|
export default {
|
|
55
55
|
'Big Integer': BigInteger,
|