@schemastore/warp-workflows 1.0.1 → 1.0.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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +2 -12
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -10,5 +10,5 @@ Files were exported from https://github.com/ffflorian/schemastore-updater/tree/m
10
10
 
11
11
  ## Additional Details
12
12
 
13
- * Last updated: Sun, Mar 15, 2026, 21:50:46 GMT
13
+ * Last updated: Fri, Mar 27, 2026, 22:09:39 GMT
14
14
  * Dependencies: none
package/index.d.ts CHANGED
@@ -40,16 +40,6 @@ export type AuthorUrl = string | null;
40
40
  * https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#shells
41
41
  */
42
42
  export type Shells = ('Zsh' | 'zsh' | 'Bash' | 'bash' | 'Fish' | 'fish')[];
43
- /**
44
- * A name of the current argument
45
- * https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#argumentsname
46
- */
47
- export type Name1 = string;
48
- /**
49
- * A description of the current argument
50
- * https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#argumentsdescription
51
- */
52
- export type Description1 = string | null;
53
43
  /**
54
44
  * A default value of the current argument
55
45
  * https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#argumentsdefault_value
@@ -60,8 +50,8 @@ export type DefaultValue = boolean | number | string | null;
60
50
  * https://github.com/warpdotdev/warp-workflows/blob/main/FORMAT.md#arguments
61
51
  */
62
52
  export type Arguments = {
63
- name: Name1;
64
- description?: Description1;
53
+ name: Name;
54
+ description?: Description;
65
55
  default_value?: DefaultValue;
66
56
  }[];
67
57
 
package/package.json CHANGED
@@ -6,5 +6,5 @@
6
6
  "private": false,
7
7
  "repository": "https://github.com/ffflorian/schemastore-updater",
8
8
  "types": "index.d.ts",
9
- "version": "1.0.1"
9
+ "version": "1.0.2"
10
10
  }