@highstate/library 0.9.32 → 0.9.34
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/highstate.library.msgpack +0 -0
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/common/files.ts +11 -0
- package/src/nixos.ts +3 -0
- package/src/third-party/yandex.ts +3 -3
Binary file
|
package/dist/index.js
CHANGED
@@ -3318,10 +3318,16 @@ var inlineFlake = defineUnit({
|
|
3318
3318
|
* The code of the `flake.nix` file.
|
3319
3319
|
*
|
3320
3320
|
* In this code you can reference other flakes, modules, files, and folders by their names.
|
3321
|
+
* The inputs for them will be automatically added to the `inputs` attribute of the flake.
|
3322
|
+
*
|
3323
|
+
* You can run this component to see the generated `flake.nix` file in pages.
|
3321
3324
|
*/
|
3322
3325
|
code: $addArgumentDescription(z.string().meta({ language: "nix" }), `The code of the \`flake.nix\` file.
|
3323
3326
|
|
3324
|
-
In this code you can reference other flakes, modules, files, and folders by their names
|
3327
|
+
In this code you can reference other flakes, modules, files, and folders by their names.
|
3328
|
+
The inputs for them will be automatically added to the \`inputs\` attribute of the flake.
|
3329
|
+
|
3330
|
+
You can run this component to see the generated \`flake.nix\` file in pages.`)
|
3325
3331
|
},
|
3326
3332
|
inputs: {
|
3327
3333
|
files: {
|
@@ -4810,7 +4816,7 @@ __export(yandex_exports, {
|
|
4810
4816
|
virtualMachine: () => virtualMachine3
|
4811
4817
|
});
|
4812
4818
|
var cloudEntity = defineEntity({
|
4813
|
-
type: "yandex.cloud.
|
4819
|
+
type: "yandex.cloud.v0",
|
4814
4820
|
schema: z.object({
|
4815
4821
|
token: z.string().optional(),
|
4816
4822
|
serviceAccountKeyFile: z.string().optional(),
|
@@ -4824,7 +4830,7 @@ var cloudEntity = defineEntity({
|
|
4824
4830
|
}
|
4825
4831
|
});
|
4826
4832
|
var connection4 = defineUnit({
|
4827
|
-
type: "yandex.connection.
|
4833
|
+
type: "yandex.connection.v0",
|
4828
4834
|
args: {
|
4829
4835
|
/**
|
4830
4836
|
* The availability zone for resources.
|
@@ -4868,7 +4874,7 @@ var connection4 = defineUnit({
|
|
4868
4874
|
}
|
4869
4875
|
});
|
4870
4876
|
var virtualMachine3 = defineUnit({
|
4871
|
-
type: "yandex.virtual-machine.
|
4877
|
+
type: "yandex.virtual-machine.v0",
|
4872
4878
|
args: {
|
4873
4879
|
/**
|
4874
4880
|
* The platform ID for the instance.
|