@manabrew/protocol 5.1.0 → 5.2.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.
@@ -133,7 +133,7 @@ export type DeckEditorTag = {
133
133
  icon?: string;
134
134
  };
135
135
  export type DeckEditorViewMode = "list" | "visual" | "stack";
136
- export type DeckFormat = "standard" | "pioneer" | "modern" | "legacy" | "vintage" | "pauper" | "commander" | "brawl" | "oathbreaker" | "draft" | "sealed";
136
+ export type DeckFormat = "standard" | "pioneer" | "modern" | "legacy" | "vintage" | "pauper" | "premodern" | "commander" | "brawl" | "oathbreaker" | "draft" | "sealed";
137
137
  export type DeckLabel = {
138
138
  name: string;
139
139
  color?: string;
@@ -74,7 +74,7 @@ export type CombatAssignmentDto = {
74
74
  };
75
75
  export type DayTime = "neither" | "day" | "night";
76
76
  export type EngineKind = "Manabrew" | "Forge" | "Ironsmith";
77
- export type GameFormat = "Any" | "Standard" | "Pioneer" | "Modern" | "Legacy" | "Vintage" | "Pauper" | "Commander" | "Brawl" | "Oathbreaker" | "Draft" | "Sealed";
77
+ export type GameFormat = "Any" | "Standard" | "Pioneer" | "Modern" | "Legacy" | "Vintage" | "Pauper" | "Premodern" | "Commander" | "Brawl" | "Oathbreaker" | "Draft" | "Sealed";
78
78
  export type GameViewDto = {
79
79
  gameId: string;
80
80
  turn: number;
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "5.0.1";
1
+ export declare const VERSION = "5.4.1";
2
2
  export declare const PROTOCOL_VERSION = 5;
package/dist/version.js CHANGED
@@ -2,5 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PROTOCOL_VERSION = exports.VERSION = void 0;
4
4
  // AUTO-GENERATED by `cargo run -p manabrew-relay-protocol --bin gen-protocol`. Do not edit.
5
- exports.VERSION = "5.0.1";
5
+ exports.VERSION = "5.4.1";
6
6
  exports.PROTOCOL_VERSION = 5;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manabrew/protocol",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "TypeScript types for the Manabrew wire protocol — the engine↔client message contract for the Manabrew Magic: The Gathering client.",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "repository": {