@rbleattler/omp-ts-typegen 0.2025.1650004 → 0.2025.1660004
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/cache/schema.json +14 -1
- package/dist/types/omp.d.ts +1 -1
- package/dist/types/omp.js +1 -1
- package/package.json +1 -1
- package/src/types/omp.ts +1 -1
- package/theme-validation-details.md +1 -1
- package/theme-validation.md +1 -1
package/cache/schema.json
CHANGED
|
@@ -3393,7 +3393,8 @@
|
|
|
3393
3393
|
"mixed",
|
|
3394
3394
|
"letter",
|
|
3395
3395
|
"unique",
|
|
3396
|
-
"powerlevel"
|
|
3396
|
+
"powerlevel",
|
|
3397
|
+
"fish"
|
|
3397
3398
|
],
|
|
3398
3399
|
"default": "agnoster"
|
|
3399
3400
|
},
|
|
@@ -3484,6 +3485,18 @@
|
|
|
3484
3485
|
"title": "Display the Cygwin (Linux) style path",
|
|
3485
3486
|
"description": "Display the Cygwin (Linux) style path using cygpath -u $PWD.",
|
|
3486
3487
|
"default": false
|
|
3488
|
+
},
|
|
3489
|
+
"dir_length": {
|
|
3490
|
+
"type": "integer",
|
|
3491
|
+
"title": "Directory Length",
|
|
3492
|
+
"description": "The length of the directory name to display in fish style.",
|
|
3493
|
+
"default": 1
|
|
3494
|
+
},
|
|
3495
|
+
"full_length_dirs": {
|
|
3496
|
+
"type": "integer",
|
|
3497
|
+
"title": "Full Length Dirs",
|
|
3498
|
+
"description": "Indicates how many full length directory names should be displayed in fish style.",
|
|
3499
|
+
"default": 1
|
|
3487
3500
|
}
|
|
3488
3501
|
}
|
|
3489
3502
|
}
|
package/dist/types/omp.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Oh My Posh TypeScript definitions
|
|
3
3
|
*
|
|
4
4
|
* Generated from schema: https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/schema.json
|
|
5
|
-
* Generated on: 2025-06-
|
|
5
|
+
* Generated on: 2025-06-15T00:04:29.393Z
|
|
6
6
|
*
|
|
7
7
|
* @see https://ohmyposh.dev/docs/
|
|
8
8
|
*/
|
package/dist/types/omp.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Oh My Posh TypeScript definitions
|
|
4
4
|
*
|
|
5
5
|
* Generated from schema: https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/schema.json
|
|
6
|
-
* Generated on: 2025-06-
|
|
6
|
+
* Generated on: 2025-06-15T00:04:29.393Z
|
|
7
7
|
*
|
|
8
8
|
* @see https://ohmyposh.dev/docs/
|
|
9
9
|
*/
|
package/package.json
CHANGED
package/src/types/omp.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Oh My Posh TypeScript definitions
|
|
3
3
|
*
|
|
4
4
|
* Generated from schema: https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/refs/heads/main/themes/schema.json
|
|
5
|
-
* Generated on: 2025-06-
|
|
5
|
+
* Generated on: 2025-06-15T00:04:29.393Z
|
|
6
6
|
*
|
|
7
7
|
* @see https://ohmyposh.dev/docs/
|
|
8
8
|
*/
|
package/theme-validation.md
CHANGED