@openspecui/core 2.1.1 → 2.1.2

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +8 -8
  2. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -2511,19 +2511,19 @@ declare const PtyCreateMessageSchema: z.ZodObject<{
2511
2511
  }, "strip", z.ZodTypeAny, {
2512
2512
  type: "create";
2513
2513
  requestId: string;
2514
- cols?: number | undefined;
2515
- rows?: number | undefined;
2516
2514
  command?: string | undefined;
2517
2515
  args?: string[] | undefined;
2516
+ cols?: number | undefined;
2517
+ rows?: number | undefined;
2518
2518
  closeTip?: string | undefined;
2519
2519
  closeCallbackUrl?: string | Record<string, string> | undefined;
2520
2520
  }, {
2521
2521
  type: "create";
2522
2522
  requestId: string;
2523
- cols?: number | undefined;
2524
- rows?: number | undefined;
2525
2523
  command?: string | undefined;
2526
2524
  args?: string[] | undefined;
2525
+ cols?: number | undefined;
2526
+ rows?: number | undefined;
2527
2527
  closeTip?: string | undefined;
2528
2528
  closeCallbackUrl?: string | Record<string, string> | undefined;
2529
2529
  }>;
@@ -2601,19 +2601,19 @@ declare const PtyClientMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
2601
2601
  }, "strip", z.ZodTypeAny, {
2602
2602
  type: "create";
2603
2603
  requestId: string;
2604
- cols?: number | undefined;
2605
- rows?: number | undefined;
2606
2604
  command?: string | undefined;
2607
2605
  args?: string[] | undefined;
2606
+ cols?: number | undefined;
2607
+ rows?: number | undefined;
2608
2608
  closeTip?: string | undefined;
2609
2609
  closeCallbackUrl?: string | Record<string, string> | undefined;
2610
2610
  }, {
2611
2611
  type: "create";
2612
2612
  requestId: string;
2613
- cols?: number | undefined;
2614
- rows?: number | undefined;
2615
2613
  command?: string | undefined;
2616
2614
  args?: string[] | undefined;
2615
+ cols?: number | undefined;
2616
+ rows?: number | undefined;
2617
2617
  closeTip?: string | undefined;
2618
2618
  closeCallbackUrl?: string | Record<string, string> | undefined;
2619
2619
  }>, z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openspecui/core",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Core OpenSpec adapter and parser",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",