@manabrew/protocol 4.0.0 → 4.1.1
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/deck/index.d.ts +1 -0
- package/dist/prompts/common.d.ts +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/deck/index.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ export type DeckCardIdentity = {
|
|
|
75
75
|
name: string;
|
|
76
76
|
setCode: string;
|
|
77
77
|
cardNumber: string;
|
|
78
|
+
oracleId?: string;
|
|
78
79
|
foil?: boolean;
|
|
79
80
|
};
|
|
80
81
|
export type DeckFormat = "standard" | "pioneer" | "modern" | "legacy" | "vintage" | "pauper" | "commander" | "brawl" | "oathbreaker" | "draft" | "sealed";
|
package/dist/prompts/common.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export type PaymentAction = {
|
|
|
63
63
|
"type": "payLife";
|
|
64
64
|
amount: number;
|
|
65
65
|
});
|
|
66
|
-
export type PaymentResourceKind = "convoke" | "improvise" | "delve";
|
|
66
|
+
export type PaymentResourceKind = "convoke" | "improvise" | "delve" | "waterbend";
|
|
67
67
|
/**
|
|
68
68
|
* Mirrors the engine's `PlayCardMode`.
|
|
69
69
|
*/
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.1.1";
|
|
2
2
|
export declare const PROTOCOL_VERSION = 4;
|
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-protocol --bin gen-protocol`. Do not edit.
|
|
5
|
-
exports.VERSION = "4.
|
|
5
|
+
exports.VERSION = "4.1.1";
|
|
6
6
|
exports.PROTOCOL_VERSION = 4;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manabrew/protocol",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
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": {
|