seatsio 83.0.0 → 84.0.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.
|
@@ -135,9 +135,6 @@ var Events = /** @class */ (function () {
|
|
|
135
135
|
};
|
|
136
136
|
Events.prototype.update = function (eventKey, params) {
|
|
137
137
|
var requestParameters = {};
|
|
138
|
-
if (params.chartKey !== undefined) {
|
|
139
|
-
requestParameters.chartKey = params.chartKey;
|
|
140
|
-
}
|
|
141
138
|
if (params.key !== undefined) {
|
|
142
139
|
requestParameters.eventKey = params.key;
|
|
143
140
|
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { AbstractEventParams } from './AbstractEventParams';
|
|
2
2
|
export declare class UpdateEventParams extends AbstractEventParams {
|
|
3
|
-
chartKey?: string;
|
|
4
3
|
isInThePast?: boolean;
|
|
5
|
-
withChartKey(chartKey: string): this;
|
|
6
4
|
withIsInThePast(isInThePast: boolean): this;
|
|
7
5
|
}
|
|
@@ -22,10 +22,6 @@ var UpdateEventParams = /** @class */ (function (_super) {
|
|
|
22
22
|
function UpdateEventParams() {
|
|
23
23
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
24
24
|
}
|
|
25
|
-
UpdateEventParams.prototype.withChartKey = function (chartKey) {
|
|
26
|
-
this.chartKey = chartKey;
|
|
27
|
-
return this;
|
|
28
|
-
};
|
|
29
25
|
UpdateEventParams.prototype.withIsInThePast = function (isInThePast) {
|
|
30
26
|
this.isInThePast = isInThePast;
|
|
31
27
|
return this;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seatsio",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "84.0.0",
|
|
4
4
|
"main": "dist/src/index.js",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@jest/globals": "29.7.0",
|
|
25
|
-
"@types/jest": "29.5.
|
|
26
|
-
"@types/node": "22.7
|
|
25
|
+
"@types/jest": "29.5.14",
|
|
26
|
+
"@types/node": "22.8.7",
|
|
27
27
|
"@types/uuid": "10.0.0",
|
|
28
28
|
"@typescript-eslint/eslint-plugin": "5.62.0",
|
|
29
29
|
"@typescript-eslint/parser": "5.62.0",
|
|
30
|
-
"ctix": "2.
|
|
30
|
+
"ctix": "2.7.0",
|
|
31
31
|
"eslint": "8.57.1",
|
|
32
32
|
"eslint-config-standard": "17.1.0",
|
|
33
|
-
"eslint-plugin-import": "2.
|
|
33
|
+
"eslint-plugin-import": "2.31.0",
|
|
34
34
|
"eslint-plugin-n": "16.6.2",
|
|
35
35
|
"eslint-plugin-promise": "6.6.0",
|
|
36
36
|
"jest": "29.7.0",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"prettier": "3.3.3",
|
|
39
39
|
"semver": "7.6.3",
|
|
40
40
|
"ts-jest": "29.2.5",
|
|
41
|
-
"typescript": "5.6.
|
|
42
|
-
"uuid": "
|
|
43
|
-
"zx": "8.
|
|
41
|
+
"typescript": "5.6.3",
|
|
42
|
+
"uuid": "11.0.2",
|
|
43
|
+
"zx": "8.2.0"
|
|
44
44
|
}
|
|
45
45
|
}
|