@camstack/types 1.2.131 → 1.2.132
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/capabilities/pipeline-analytics.cap.d.ts +3 -0
- package/dist/capabilities/recording.cap.d.ts +62 -0
- package/dist/capabilities/storage-migration.cap.d.ts +149 -0
- package/dist/generated/addon-api.d.ts +42 -0
- package/dist/generated/method-access-map.d.ts +1 -1
- package/dist/generated/method-device-selectors.d.ts +2 -2
- package/dist/generated/system-proxy.d.ts +2 -2
- package/dist/index.js +193 -9
- package/dist/index.mjs +189 -10
- package/dist/interfaces/relocate.d.ts +92 -0
- package/dist/interfaces/storage-location.d.ts +4 -5
- package/package.json +1 -1
|
@@ -33,11 +33,10 @@ export type StorageLocationType = z.infer<typeof StorageLocationTypeSchema>;
|
|
|
33
33
|
* The default location for a type uses `id === <type>:default` by
|
|
34
34
|
* convention (the bare type ref like `'backups'` resolves to it).
|
|
35
35
|
*
|
|
36
|
-
* `isSystem
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
* deleting it is rejected at the cap level.
|
|
36
|
+
* `isSystem` is a legacy persisted flag. Seed still creates the initial
|
|
37
|
+
* `<type>:default` locations; the flag is no longer a lock, a badge, or a
|
|
38
|
+
* prune selector. New writes leave it false. Deletion is gated on uniqueness
|
|
39
|
+
* / last-enabled, not on this bit.
|
|
41
40
|
*/
|
|
42
41
|
export declare const StorageLocationSchema: z.ZodObject<{
|
|
43
42
|
id: z.ZodString;
|