tering-serieuze-types 3.10.0 → 4.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.
- package/dist/index.js +2 -0
- package/package.json +1 -1
- package/src/button.ts +2 -1
- package/src/index.ts +0 -2
- package/src/user.ts +2 -1
package/dist/index.js
CHANGED
|
@@ -389,6 +389,7 @@ __decorateClass([
|
|
|
389
389
|
], ToggleBoolDto.prototype, "field", 2);
|
|
390
390
|
var WsUpdateStoreDto = class {
|
|
391
391
|
mutation;
|
|
392
|
+
// oxlint-disable-next-line typescript/no-explicit-any -- base class; subclasses narrow via override
|
|
392
393
|
payload;
|
|
393
394
|
};
|
|
394
395
|
var WsUpdateStoreSetAccount = class extends WsUpdateStoreDto {
|
|
@@ -399,6 +400,7 @@ var WsUpdateStoreSetAccount = class extends WsUpdateStoreDto {
|
|
|
399
400
|
var WebsocketAction = class {
|
|
400
401
|
serviceName;
|
|
401
402
|
methodName;
|
|
403
|
+
// oxlint-disable-next-line typescript/no-explicit-any -- intentionally polymorphic; per-action shape
|
|
402
404
|
data;
|
|
403
405
|
};
|
|
404
406
|
__decorateClass([
|
package/package.json
CHANGED
package/src/button.ts
CHANGED
package/src/index.ts
CHANGED
package/src/user.ts
CHANGED
|
@@ -96,7 +96,8 @@ export class ToggleBoolDto {
|
|
|
96
96
|
export class WsUpdateStoreDto {
|
|
97
97
|
mutation: string;
|
|
98
98
|
|
|
99
|
-
|
|
99
|
+
// oxlint-disable-next-line typescript/no-explicit-any -- base class; subclasses narrow via override
|
|
100
|
+
payload: any;
|
|
100
101
|
}
|
|
101
102
|
|
|
102
103
|
export class WsUpdateStoreSetAccount extends WsUpdateStoreDto {
|