@winible/winible-typed 2.104.0 → 2.106.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/README.md +3 -0
- package/dist/shared-types/index.js +11 -0
- package/dist/shared-types/index.js.map +1 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -67,6 +67,7 @@ We use npm and [semantic versioning](#semantic-versioning) for making changes to
|
|
|
67
67
|
### Releasing a new version
|
|
68
68
|
|
|
69
69
|
Version releases are now **fully automated** when PRs are merged to main. The workflow will:
|
|
70
|
+
|
|
70
71
|
- Automatically bump the version
|
|
71
72
|
- Publish to npm
|
|
72
73
|
- Create a git tag
|
|
@@ -125,3 +126,5 @@ Given a version number MAJOR.MINOR.PATCH, we increment the:
|
|
|
125
126
|
1. MAJOR version when you make incompatible API changes (1.x.x)
|
|
126
127
|
2. MINOR version when you add functionality in a backward compatible manner (x.1.x)
|
|
127
128
|
3. PATCH version when you make backward compatible bug fixes (x.x.1)
|
|
129
|
+
|
|
130
|
+
.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Shared TypeScript types for use across frontend and backend projects
|
|
4
|
+
* These types are plain objects without Sequelize model properties.
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.BetStatusType = exports.BetTypeEnum = void 0;
|
|
8
|
+
var types_1 = require("../src/types");
|
|
9
|
+
Object.defineProperty(exports, "BetTypeEnum", { enumerable: true, get: function () { return types_1.BetType; } });
|
|
10
|
+
Object.defineProperty(exports, "BetStatusType", { enumerable: true, get: function () { return types_1.BetStatusType; } });
|
|
11
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../shared-types/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAOH,sCAAqE;AAA5D,oGAAA,OAAO,OAAe;AAAE,sGAAA,aAAa,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@winible/winible-typed",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.106.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"./event-collector-models": "./dist/event-collector-models/index.js",
|
|
11
11
|
"./utils": "./dist/utils/index.js",
|
|
12
12
|
"./utils/lambdaUtils": "./dist/utils/lambdaUtils/index.js",
|
|
13
|
-
"./opticodds": "./dist/opticodds/index.js"
|
|
13
|
+
"./opticodds": "./dist/opticodds/index.js",
|
|
14
|
+
"./shared-types": "./dist/shared-types/index.js"
|
|
14
15
|
},
|
|
15
16
|
"scripts": {
|
|
16
17
|
"start": "nf start",
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"@types/jsonwebtoken": "^8.5.8",
|
|
85
86
|
"@types/mixpanel": "^2.14.4",
|
|
86
87
|
"@types/node": "^17.0.36",
|
|
88
|
+
"@types/pg": "^8.15.6",
|
|
87
89
|
"@types/sequelize": "^4.28.13",
|
|
88
90
|
"dotenv-cli": "^10.0.0",
|
|
89
91
|
"ioredis-mock": "^8.9.0",
|