sim 2.1.8-dev.101.1 → 2.1.8-dev.95.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/README.md +1 -18
- package/dist/config/paths.d.ts +0 -11
- package/dist/contract/types.d.ts +0 -12
- package/dist/generated/v2-api.d.ts +13 -542
- package/dist/index.js +23 -678
- package/dist/runtime/request.d.ts +6 -4
- package/dist/runtime.d.ts +0 -1
- package/dist/runtime.js +8713 -9535
- package/package.json +1 -1
- package/dist/embed.d.ts +0 -39
- package/dist/update/check.d.ts +0 -53
|
@@ -54,11 +54,13 @@ export declare function readArgumentSource(raw: string, flagName: string): Promi
|
|
|
54
54
|
from: string;
|
|
55
55
|
}>;
|
|
56
56
|
/**
|
|
57
|
-
* Reads a primitive list from argv or a newline-delimited file.
|
|
58
|
-
*
|
|
59
|
-
*
|
|
57
|
+
* Reads a primitive list from argv or a newline-delimited file.
|
|
58
|
+
*
|
|
59
|
+
* Exported for the one augmentation that has to read a list before the
|
|
60
|
+
* generated path does (`workflows runs get --select-output`), so a `@-` or
|
|
61
|
+
* `@path` source is read exactly once, by whichever of the two sees it first.
|
|
60
62
|
*/
|
|
61
|
-
export declare function readListValues(raw: unknown, flagName: string
|
|
63
|
+
export declare function readListValues(raw: unknown, flagName: string): Promise<string[]>;
|
|
62
64
|
/**
|
|
63
65
|
* Rewrites one folder path into the API's canonical wire form.
|
|
64
66
|
*
|