balena-cli 23.2.2-build-renovate-aws-actions-configure-aws-credentials-5-x-c02beae8933efbe4f780f0d98154709fe9bc4e68-1 → 23.2.3-build-renovate-apple-actions-import-codesign-certs-5-x-9b7160e9a031f517e4fe9da9df68f3e2bf859998-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/CHANGELOG.md +5 -1
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +355 -355
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,13 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## 23.2.3 - 2025-12-02
|
|
8
|
+
|
|
9
|
+
* Update apple-actions/import-codesign-certs action to v5 [balena-renovate[bot]]
|
|
10
|
+
|
|
7
11
|
## 23.2.2 - 2025-12-02
|
|
8
12
|
|
|
9
|
-
* Update
|
|
13
|
+
* Update actions/download-artifact action to v6 [balena-renovate[bot]]
|
|
10
14
|
|
|
11
15
|
## 23.2.1 - 2025-12-02
|
|
12
16
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-cli",
|
|
3
|
-
"version": "23.2.
|
|
3
|
+
"version": "23.2.3-build-renovate-apple-actions-import-codesign-certs-5-x-9b7160e9a031f517e4fe9da9df68f3e2bf859998-1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "balena-cli",
|
|
9
|
-
"version": "23.2.
|
|
9
|
+
"version": "23.2.3-build-renovate-apple-actions-import-codesign-certs-5-x-9b7160e9a031f517e4fe9da9df68f3e2bf859998-1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
package/oclif.manifest.json
CHANGED
|
@@ -3597,6 +3597,136 @@
|
|
|
3597
3597
|
"versions.js"
|
|
3598
3598
|
]
|
|
3599
3599
|
},
|
|
3600
|
+
"preload": {
|
|
3601
|
+
"aliases": [],
|
|
3602
|
+
"args": {
|
|
3603
|
+
"image": {
|
|
3604
|
+
"description": "the image file path",
|
|
3605
|
+
"name": "image",
|
|
3606
|
+
"required": true
|
|
3607
|
+
}
|
|
3608
|
+
},
|
|
3609
|
+
"description": "Preload a release on a disk image (or Edison zip archive).\n\nPreload a release (service images/containers) from a balena fleet, and optionally\na balenaOS splash screen, in a previously downloaded '.img' balenaOS image file\nin the local disk (a zip file is only accepted for the Intel Edison device type).\nAfter preloading, the balenaOS image file can be flashed to a device's SD card.\nWhen the device boots, it will not need to download the release, as it was\npreloaded. This is usually combined with release pinning\n(https://www.balena.io/docs/learn/deploy/release-strategy/release-policy/)\nto avoid the device downloading a newer release straight away, if available.\nCheck also the Preloading and Preregistering section of the balena CLI's advanced\nmasterclass document:\nhttps://www.balena.io/docs/learn/more/masterclasses/advanced-cli/#5-preloading-and-preregistering\n\nFleets may be specified by fleet name or slug. Fleet slugs are\nthe recommended option, as they are unique and unambiguous. Slugs can be\nlisted with the `balena fleet list` command. Note that slugs may change if the\nfleet is renamed. Fleet names are not unique and may result in \"Fleet is\nambiguous\" errors at any time (even if it \"used to work in the past\"), for\nexample if the name clashes with a newly created public fleet, or with fleets\nfrom other balena accounts that you may be invited to join under any role.\nFor this reason, fleet names are especially discouraged in scripts (e.g. CI\nenvironments).\n\nNote that the this command requires Docker to be installed, as further detailed\nin the balena CLI's installation instructions:\nhttps://github.com/balena-io/balena-cli/blob/master/INSTALL.md\nThe `--dockerHost` and `--dockerPort` flags allow a remote Docker engine to\nbe used, however the image file must be accessible to the remote Docker engine\non the same path given on the command line. This is because Docker's bind mount\nfeature is used to \"share\" the image with a container that performs the preload.",
|
|
3610
|
+
"examples": [
|
|
3611
|
+
"$ balena preload balena.img --fleet MyFleet --commit e1f2592fc6ee949e68756d4f4a48e49bff8d72a0",
|
|
3612
|
+
"$ balena preload balena.img --fleet myorg/myfleet --splash-image image.png",
|
|
3613
|
+
"$ balena preload balena.img"
|
|
3614
|
+
],
|
|
3615
|
+
"flags": {
|
|
3616
|
+
"fleet": {
|
|
3617
|
+
"char": "f",
|
|
3618
|
+
"description": "fleet name or slug (preferred)",
|
|
3619
|
+
"name": "fleet",
|
|
3620
|
+
"hasDynamicHelp": false,
|
|
3621
|
+
"multiple": false,
|
|
3622
|
+
"type": "option"
|
|
3623
|
+
},
|
|
3624
|
+
"commit": {
|
|
3625
|
+
"char": "c",
|
|
3626
|
+
"description": "The commit hash of the release to preload. Use \"current\" to specify the current\nrelease (ignored if no appId is given). The current release is usually also the\nlatest, but can be pinned to a specific release. See:\nhttps://www.balena.io/docs/learn/deploy/release-strategy/release-policy/\nhttps://www.balena.io/docs/learn/more/masterclasses/fleet-management/#63-pin-using-the-api\nhttps://github.com/balena-io-examples/staged-releases",
|
|
3627
|
+
"name": "commit",
|
|
3628
|
+
"hasDynamicHelp": false,
|
|
3629
|
+
"multiple": false,
|
|
3630
|
+
"type": "option"
|
|
3631
|
+
},
|
|
3632
|
+
"splash-image": {
|
|
3633
|
+
"char": "s",
|
|
3634
|
+
"description": "path to a png image to replace the splash screen",
|
|
3635
|
+
"name": "splash-image",
|
|
3636
|
+
"hasDynamicHelp": false,
|
|
3637
|
+
"multiple": false,
|
|
3638
|
+
"type": "option"
|
|
3639
|
+
},
|
|
3640
|
+
"dont-check-arch": {
|
|
3641
|
+
"description": "disable architecture compatibility check between image and fleet",
|
|
3642
|
+
"name": "dont-check-arch",
|
|
3643
|
+
"allowNo": false,
|
|
3644
|
+
"type": "boolean"
|
|
3645
|
+
},
|
|
3646
|
+
"pin-device-to-release": {
|
|
3647
|
+
"char": "p",
|
|
3648
|
+
"description": "pin the preloaded device to the preloaded release on provision",
|
|
3649
|
+
"name": "pin-device-to-release",
|
|
3650
|
+
"allowNo": true,
|
|
3651
|
+
"type": "boolean"
|
|
3652
|
+
},
|
|
3653
|
+
"additional-space": {
|
|
3654
|
+
"description": "expand the image by this amount of bytes instead of automatically estimating the required amount",
|
|
3655
|
+
"name": "additional-space",
|
|
3656
|
+
"hasDynamicHelp": false,
|
|
3657
|
+
"multiple": false,
|
|
3658
|
+
"type": "option"
|
|
3659
|
+
},
|
|
3660
|
+
"add-certificate": {
|
|
3661
|
+
"description": "Add the given certificate (in PEM format) to /etc/ssl/certs in the preloading container.\nThe file name must end with '.crt' and must not be already contained in the preloader's\n/etc/ssl/certs folder.\nCan be repeated to add multiple certificates.",
|
|
3662
|
+
"name": "add-certificate",
|
|
3663
|
+
"hasDynamicHelp": false,
|
|
3664
|
+
"multiple": true,
|
|
3665
|
+
"type": "option"
|
|
3666
|
+
},
|
|
3667
|
+
"docker": {
|
|
3668
|
+
"char": "P",
|
|
3669
|
+
"description": "Path to a local docker socket (e.g. /var/run/docker.sock)",
|
|
3670
|
+
"name": "docker",
|
|
3671
|
+
"hasDynamicHelp": false,
|
|
3672
|
+
"multiple": false,
|
|
3673
|
+
"type": "option"
|
|
3674
|
+
},
|
|
3675
|
+
"dockerHost": {
|
|
3676
|
+
"char": "h",
|
|
3677
|
+
"description": "Docker daemon hostname or IP address (dev machine or balena device) ",
|
|
3678
|
+
"name": "dockerHost",
|
|
3679
|
+
"hasDynamicHelp": false,
|
|
3680
|
+
"multiple": false,
|
|
3681
|
+
"type": "option"
|
|
3682
|
+
},
|
|
3683
|
+
"dockerPort": {
|
|
3684
|
+
"description": "Docker daemon TCP port number (hint: 2375 for balena devices)",
|
|
3685
|
+
"name": "dockerPort",
|
|
3686
|
+
"hasDynamicHelp": false,
|
|
3687
|
+
"multiple": false,
|
|
3688
|
+
"type": "option"
|
|
3689
|
+
},
|
|
3690
|
+
"ca": {
|
|
3691
|
+
"description": "Docker host TLS certificate authority file",
|
|
3692
|
+
"name": "ca",
|
|
3693
|
+
"hasDynamicHelp": false,
|
|
3694
|
+
"multiple": false,
|
|
3695
|
+
"type": "option"
|
|
3696
|
+
},
|
|
3697
|
+
"cert": {
|
|
3698
|
+
"description": "Docker host TLS certificate file",
|
|
3699
|
+
"name": "cert",
|
|
3700
|
+
"hasDynamicHelp": false,
|
|
3701
|
+
"multiple": false,
|
|
3702
|
+
"type": "option"
|
|
3703
|
+
},
|
|
3704
|
+
"key": {
|
|
3705
|
+
"description": "Docker host TLS key file",
|
|
3706
|
+
"name": "key",
|
|
3707
|
+
"hasDynamicHelp": false,
|
|
3708
|
+
"multiple": false,
|
|
3709
|
+
"type": "option"
|
|
3710
|
+
}
|
|
3711
|
+
},
|
|
3712
|
+
"hasDynamicHelp": false,
|
|
3713
|
+
"hiddenAliases": [],
|
|
3714
|
+
"id": "preload",
|
|
3715
|
+
"pluginAlias": "balena-cli",
|
|
3716
|
+
"pluginName": "balena-cli",
|
|
3717
|
+
"pluginType": "core",
|
|
3718
|
+
"strict": true,
|
|
3719
|
+
"enableJsonFlag": false,
|
|
3720
|
+
"authenticated": true,
|
|
3721
|
+
"primary": true,
|
|
3722
|
+
"isESM": false,
|
|
3723
|
+
"relativePath": [
|
|
3724
|
+
"build",
|
|
3725
|
+
"commands",
|
|
3726
|
+
"preload",
|
|
3727
|
+
"index.js"
|
|
3728
|
+
]
|
|
3729
|
+
},
|
|
3600
3730
|
"push": {
|
|
3601
3731
|
"aliases": [],
|
|
3602
3732
|
"args": {
|
|
@@ -3762,160 +3892,6 @@
|
|
|
3762
3892
|
"index.js"
|
|
3763
3893
|
]
|
|
3764
3894
|
},
|
|
3765
|
-
"preload": {
|
|
3766
|
-
"aliases": [],
|
|
3767
|
-
"args": {
|
|
3768
|
-
"image": {
|
|
3769
|
-
"description": "the image file path",
|
|
3770
|
-
"name": "image",
|
|
3771
|
-
"required": true
|
|
3772
|
-
}
|
|
3773
|
-
},
|
|
3774
|
-
"description": "Preload a release on a disk image (or Edison zip archive).\n\nPreload a release (service images/containers) from a balena fleet, and optionally\na balenaOS splash screen, in a previously downloaded '.img' balenaOS image file\nin the local disk (a zip file is only accepted for the Intel Edison device type).\nAfter preloading, the balenaOS image file can be flashed to a device's SD card.\nWhen the device boots, it will not need to download the release, as it was\npreloaded. This is usually combined with release pinning\n(https://www.balena.io/docs/learn/deploy/release-strategy/release-policy/)\nto avoid the device downloading a newer release straight away, if available.\nCheck also the Preloading and Preregistering section of the balena CLI's advanced\nmasterclass document:\nhttps://www.balena.io/docs/learn/more/masterclasses/advanced-cli/#5-preloading-and-preregistering\n\nFleets may be specified by fleet name or slug. Fleet slugs are\nthe recommended option, as they are unique and unambiguous. Slugs can be\nlisted with the `balena fleet list` command. Note that slugs may change if the\nfleet is renamed. Fleet names are not unique and may result in \"Fleet is\nambiguous\" errors at any time (even if it \"used to work in the past\"), for\nexample if the name clashes with a newly created public fleet, or with fleets\nfrom other balena accounts that you may be invited to join under any role.\nFor this reason, fleet names are especially discouraged in scripts (e.g. CI\nenvironments).\n\nNote that the this command requires Docker to be installed, as further detailed\nin the balena CLI's installation instructions:\nhttps://github.com/balena-io/balena-cli/blob/master/INSTALL.md\nThe `--dockerHost` and `--dockerPort` flags allow a remote Docker engine to\nbe used, however the image file must be accessible to the remote Docker engine\non the same path given on the command line. This is because Docker's bind mount\nfeature is used to \"share\" the image with a container that performs the preload.",
|
|
3775
|
-
"examples": [
|
|
3776
|
-
"$ balena preload balena.img --fleet MyFleet --commit e1f2592fc6ee949e68756d4f4a48e49bff8d72a0",
|
|
3777
|
-
"$ balena preload balena.img --fleet myorg/myfleet --splash-image image.png",
|
|
3778
|
-
"$ balena preload balena.img"
|
|
3779
|
-
],
|
|
3780
|
-
"flags": {
|
|
3781
|
-
"fleet": {
|
|
3782
|
-
"char": "f",
|
|
3783
|
-
"description": "fleet name or slug (preferred)",
|
|
3784
|
-
"name": "fleet",
|
|
3785
|
-
"hasDynamicHelp": false,
|
|
3786
|
-
"multiple": false,
|
|
3787
|
-
"type": "option"
|
|
3788
|
-
},
|
|
3789
|
-
"commit": {
|
|
3790
|
-
"char": "c",
|
|
3791
|
-
"description": "The commit hash of the release to preload. Use \"current\" to specify the current\nrelease (ignored if no appId is given). The current release is usually also the\nlatest, but can be pinned to a specific release. See:\nhttps://www.balena.io/docs/learn/deploy/release-strategy/release-policy/\nhttps://www.balena.io/docs/learn/more/masterclasses/fleet-management/#63-pin-using-the-api\nhttps://github.com/balena-io-examples/staged-releases",
|
|
3792
|
-
"name": "commit",
|
|
3793
|
-
"hasDynamicHelp": false,
|
|
3794
|
-
"multiple": false,
|
|
3795
|
-
"type": "option"
|
|
3796
|
-
},
|
|
3797
|
-
"splash-image": {
|
|
3798
|
-
"char": "s",
|
|
3799
|
-
"description": "path to a png image to replace the splash screen",
|
|
3800
|
-
"name": "splash-image",
|
|
3801
|
-
"hasDynamicHelp": false,
|
|
3802
|
-
"multiple": false,
|
|
3803
|
-
"type": "option"
|
|
3804
|
-
},
|
|
3805
|
-
"dont-check-arch": {
|
|
3806
|
-
"description": "disable architecture compatibility check between image and fleet",
|
|
3807
|
-
"name": "dont-check-arch",
|
|
3808
|
-
"allowNo": false,
|
|
3809
|
-
"type": "boolean"
|
|
3810
|
-
},
|
|
3811
|
-
"pin-device-to-release": {
|
|
3812
|
-
"char": "p",
|
|
3813
|
-
"description": "pin the preloaded device to the preloaded release on provision",
|
|
3814
|
-
"name": "pin-device-to-release",
|
|
3815
|
-
"allowNo": true,
|
|
3816
|
-
"type": "boolean"
|
|
3817
|
-
},
|
|
3818
|
-
"additional-space": {
|
|
3819
|
-
"description": "expand the image by this amount of bytes instead of automatically estimating the required amount",
|
|
3820
|
-
"name": "additional-space",
|
|
3821
|
-
"hasDynamicHelp": false,
|
|
3822
|
-
"multiple": false,
|
|
3823
|
-
"type": "option"
|
|
3824
|
-
},
|
|
3825
|
-
"add-certificate": {
|
|
3826
|
-
"description": "Add the given certificate (in PEM format) to /etc/ssl/certs in the preloading container.\nThe file name must end with '.crt' and must not be already contained in the preloader's\n/etc/ssl/certs folder.\nCan be repeated to add multiple certificates.",
|
|
3827
|
-
"name": "add-certificate",
|
|
3828
|
-
"hasDynamicHelp": false,
|
|
3829
|
-
"multiple": true,
|
|
3830
|
-
"type": "option"
|
|
3831
|
-
},
|
|
3832
|
-
"docker": {
|
|
3833
|
-
"char": "P",
|
|
3834
|
-
"description": "Path to a local docker socket (e.g. /var/run/docker.sock)",
|
|
3835
|
-
"name": "docker",
|
|
3836
|
-
"hasDynamicHelp": false,
|
|
3837
|
-
"multiple": false,
|
|
3838
|
-
"type": "option"
|
|
3839
|
-
},
|
|
3840
|
-
"dockerHost": {
|
|
3841
|
-
"char": "h",
|
|
3842
|
-
"description": "Docker daemon hostname or IP address (dev machine or balena device) ",
|
|
3843
|
-
"name": "dockerHost",
|
|
3844
|
-
"hasDynamicHelp": false,
|
|
3845
|
-
"multiple": false,
|
|
3846
|
-
"type": "option"
|
|
3847
|
-
},
|
|
3848
|
-
"dockerPort": {
|
|
3849
|
-
"description": "Docker daemon TCP port number (hint: 2375 for balena devices)",
|
|
3850
|
-
"name": "dockerPort",
|
|
3851
|
-
"hasDynamicHelp": false,
|
|
3852
|
-
"multiple": false,
|
|
3853
|
-
"type": "option"
|
|
3854
|
-
},
|
|
3855
|
-
"ca": {
|
|
3856
|
-
"description": "Docker host TLS certificate authority file",
|
|
3857
|
-
"name": "ca",
|
|
3858
|
-
"hasDynamicHelp": false,
|
|
3859
|
-
"multiple": false,
|
|
3860
|
-
"type": "option"
|
|
3861
|
-
},
|
|
3862
|
-
"cert": {
|
|
3863
|
-
"description": "Docker host TLS certificate file",
|
|
3864
|
-
"name": "cert",
|
|
3865
|
-
"hasDynamicHelp": false,
|
|
3866
|
-
"multiple": false,
|
|
3867
|
-
"type": "option"
|
|
3868
|
-
},
|
|
3869
|
-
"key": {
|
|
3870
|
-
"description": "Docker host TLS key file",
|
|
3871
|
-
"name": "key",
|
|
3872
|
-
"hasDynamicHelp": false,
|
|
3873
|
-
"multiple": false,
|
|
3874
|
-
"type": "option"
|
|
3875
|
-
}
|
|
3876
|
-
},
|
|
3877
|
-
"hasDynamicHelp": false,
|
|
3878
|
-
"hiddenAliases": [],
|
|
3879
|
-
"id": "preload",
|
|
3880
|
-
"pluginAlias": "balena-cli",
|
|
3881
|
-
"pluginName": "balena-cli",
|
|
3882
|
-
"pluginType": "core",
|
|
3883
|
-
"strict": true,
|
|
3884
|
-
"enableJsonFlag": false,
|
|
3885
|
-
"authenticated": true,
|
|
3886
|
-
"primary": true,
|
|
3887
|
-
"isESM": false,
|
|
3888
|
-
"relativePath": [
|
|
3889
|
-
"build",
|
|
3890
|
-
"commands",
|
|
3891
|
-
"preload",
|
|
3892
|
-
"index.js"
|
|
3893
|
-
]
|
|
3894
|
-
},
|
|
3895
|
-
"settings": {
|
|
3896
|
-
"aliases": [],
|
|
3897
|
-
"args": {},
|
|
3898
|
-
"description": "Print current settings.\n\nUse this command to display the current balena CLI settings.",
|
|
3899
|
-
"examples": [
|
|
3900
|
-
"$ balena settings"
|
|
3901
|
-
],
|
|
3902
|
-
"flags": {},
|
|
3903
|
-
"hasDynamicHelp": false,
|
|
3904
|
-
"hiddenAliases": [],
|
|
3905
|
-
"id": "settings",
|
|
3906
|
-
"pluginAlias": "balena-cli",
|
|
3907
|
-
"pluginName": "balena-cli",
|
|
3908
|
-
"pluginType": "core",
|
|
3909
|
-
"strict": true,
|
|
3910
|
-
"enableJsonFlag": false,
|
|
3911
|
-
"isESM": false,
|
|
3912
|
-
"relativePath": [
|
|
3913
|
-
"build",
|
|
3914
|
-
"commands",
|
|
3915
|
-
"settings",
|
|
3916
|
-
"index.js"
|
|
3917
|
-
]
|
|
3918
|
-
},
|
|
3919
3895
|
"release:finalize": {
|
|
3920
3896
|
"aliases": [],
|
|
3921
3897
|
"args": {
|
|
@@ -4098,6 +4074,30 @@
|
|
|
4098
4074
|
"validate.js"
|
|
4099
4075
|
]
|
|
4100
4076
|
},
|
|
4077
|
+
"settings": {
|
|
4078
|
+
"aliases": [],
|
|
4079
|
+
"args": {},
|
|
4080
|
+
"description": "Print current settings.\n\nUse this command to display the current balena CLI settings.",
|
|
4081
|
+
"examples": [
|
|
4082
|
+
"$ balena settings"
|
|
4083
|
+
],
|
|
4084
|
+
"flags": {},
|
|
4085
|
+
"hasDynamicHelp": false,
|
|
4086
|
+
"hiddenAliases": [],
|
|
4087
|
+
"id": "settings",
|
|
4088
|
+
"pluginAlias": "balena-cli",
|
|
4089
|
+
"pluginName": "balena-cli",
|
|
4090
|
+
"pluginType": "core",
|
|
4091
|
+
"strict": true,
|
|
4092
|
+
"enableJsonFlag": false,
|
|
4093
|
+
"isESM": false,
|
|
4094
|
+
"relativePath": [
|
|
4095
|
+
"build",
|
|
4096
|
+
"commands",
|
|
4097
|
+
"settings",
|
|
4098
|
+
"index.js"
|
|
4099
|
+
]
|
|
4100
|
+
},
|
|
4101
4101
|
"release-asset:delete": {
|
|
4102
4102
|
"aliases": [],
|
|
4103
4103
|
"args": {
|
|
@@ -4189,7 +4189,155 @@
|
|
|
4189
4189
|
},
|
|
4190
4190
|
"hasDynamicHelp": false,
|
|
4191
4191
|
"hiddenAliases": [],
|
|
4192
|
-
"id": "release-asset:download",
|
|
4192
|
+
"id": "release-asset:download",
|
|
4193
|
+
"pluginAlias": "balena-cli",
|
|
4194
|
+
"pluginName": "balena-cli",
|
|
4195
|
+
"pluginType": "core",
|
|
4196
|
+
"strict": true,
|
|
4197
|
+
"enableJsonFlag": false,
|
|
4198
|
+
"authenticated": true,
|
|
4199
|
+
"isESM": false,
|
|
4200
|
+
"relativePath": [
|
|
4201
|
+
"build",
|
|
4202
|
+
"commands",
|
|
4203
|
+
"release-asset",
|
|
4204
|
+
"download.js"
|
|
4205
|
+
]
|
|
4206
|
+
},
|
|
4207
|
+
"release-asset:list": {
|
|
4208
|
+
"aliases": [],
|
|
4209
|
+
"args": {
|
|
4210
|
+
"commitOrId": {
|
|
4211
|
+
"description": "the commit or ID of the release",
|
|
4212
|
+
"name": "commitOrId",
|
|
4213
|
+
"required": true
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
"description": "List all release assets.\n\nList all assets for a specific release.",
|
|
4217
|
+
"examples": [
|
|
4218
|
+
"$ balena release-asset list 1234567",
|
|
4219
|
+
"$ balena release-asset list a777f7345fe3d655c1c981aa642e5555"
|
|
4220
|
+
],
|
|
4221
|
+
"flags": {
|
|
4222
|
+
"json": {
|
|
4223
|
+
"description": "Format output as json.",
|
|
4224
|
+
"helpGroup": "GLOBAL",
|
|
4225
|
+
"name": "json",
|
|
4226
|
+
"allowNo": false,
|
|
4227
|
+
"type": "boolean"
|
|
4228
|
+
}
|
|
4229
|
+
},
|
|
4230
|
+
"hasDynamicHelp": false,
|
|
4231
|
+
"hiddenAliases": [],
|
|
4232
|
+
"id": "release-asset:list",
|
|
4233
|
+
"pluginAlias": "balena-cli",
|
|
4234
|
+
"pluginName": "balena-cli",
|
|
4235
|
+
"pluginType": "core",
|
|
4236
|
+
"strict": true,
|
|
4237
|
+
"enableJsonFlag": true,
|
|
4238
|
+
"authenticated": true,
|
|
4239
|
+
"isESM": false,
|
|
4240
|
+
"relativePath": [
|
|
4241
|
+
"build",
|
|
4242
|
+
"commands",
|
|
4243
|
+
"release-asset",
|
|
4244
|
+
"list.js"
|
|
4245
|
+
]
|
|
4246
|
+
},
|
|
4247
|
+
"release-asset:upload": {
|
|
4248
|
+
"aliases": [],
|
|
4249
|
+
"args": {
|
|
4250
|
+
"commitOrId": {
|
|
4251
|
+
"description": "the commit or ID of the release",
|
|
4252
|
+
"name": "commitOrId",
|
|
4253
|
+
"required": true
|
|
4254
|
+
},
|
|
4255
|
+
"filePath": {
|
|
4256
|
+
"description": "path to the file to upload",
|
|
4257
|
+
"name": "filePath",
|
|
4258
|
+
"required": true
|
|
4259
|
+
}
|
|
4260
|
+
},
|
|
4261
|
+
"description": "Upload a release asset.\n\nUpload a file as a release asset with the specified key. If the asset already exists,\nyou can use the --overwrite flag to replace it. You can customize the upload behavior with\n--chunk-size and --parallel-chunks options for larger files.",
|
|
4262
|
+
"examples": [
|
|
4263
|
+
"$ balena release-asset upload 1234567 ./path/to/config.json --key config.json",
|
|
4264
|
+
"$ balena release-asset upload a777f7345fe3d655c1c981aa642e5555 ./app.tar.gz --key app.tar.gz --overwrite",
|
|
4265
|
+
"$ balena release-asset upload 1234567 ./file.bin --key large-file.bin --chunk-size 10485760 --parallel-chunks 10"
|
|
4266
|
+
],
|
|
4267
|
+
"flags": {
|
|
4268
|
+
"key": {
|
|
4269
|
+
"description": "the key for the release asset",
|
|
4270
|
+
"name": "key",
|
|
4271
|
+
"required": true,
|
|
4272
|
+
"hasDynamicHelp": false,
|
|
4273
|
+
"multiple": false,
|
|
4274
|
+
"type": "option"
|
|
4275
|
+
},
|
|
4276
|
+
"overwrite": {
|
|
4277
|
+
"description": "overwrite the asset if it already exists",
|
|
4278
|
+
"name": "overwrite",
|
|
4279
|
+
"allowNo": false,
|
|
4280
|
+
"type": "boolean"
|
|
4281
|
+
},
|
|
4282
|
+
"chunk-size": {
|
|
4283
|
+
"description": "chunk size in bytes for multipart upload (minimum 5MB)",
|
|
4284
|
+
"name": "chunk-size",
|
|
4285
|
+
"default": 5242880,
|
|
4286
|
+
"hasDynamicHelp": false,
|
|
4287
|
+
"multiple": false,
|
|
4288
|
+
"type": "option"
|
|
4289
|
+
},
|
|
4290
|
+
"parallel-chunks": {
|
|
4291
|
+
"description": "number of chunks to upload in parallel",
|
|
4292
|
+
"name": "parallel-chunks",
|
|
4293
|
+
"default": 5,
|
|
4294
|
+
"hasDynamicHelp": false,
|
|
4295
|
+
"multiple": false,
|
|
4296
|
+
"type": "option"
|
|
4297
|
+
}
|
|
4298
|
+
},
|
|
4299
|
+
"hasDynamicHelp": false,
|
|
4300
|
+
"hiddenAliases": [],
|
|
4301
|
+
"id": "release-asset:upload",
|
|
4302
|
+
"pluginAlias": "balena-cli",
|
|
4303
|
+
"pluginName": "balena-cli",
|
|
4304
|
+
"pluginType": "core",
|
|
4305
|
+
"strict": true,
|
|
4306
|
+
"enableJsonFlag": false,
|
|
4307
|
+
"authenticated": true,
|
|
4308
|
+
"isESM": false,
|
|
4309
|
+
"relativePath": [
|
|
4310
|
+
"build",
|
|
4311
|
+
"commands",
|
|
4312
|
+
"release-asset",
|
|
4313
|
+
"upload.js"
|
|
4314
|
+
]
|
|
4315
|
+
},
|
|
4316
|
+
"ssh-key:add": {
|
|
4317
|
+
"aliases": [],
|
|
4318
|
+
"args": {
|
|
4319
|
+
"name": {
|
|
4320
|
+
"description": "the SSH key name",
|
|
4321
|
+
"name": "name",
|
|
4322
|
+
"required": true
|
|
4323
|
+
},
|
|
4324
|
+
"path": {
|
|
4325
|
+
"description": "the path to the public key file",
|
|
4326
|
+
"name": "path",
|
|
4327
|
+
"required": true
|
|
4328
|
+
}
|
|
4329
|
+
},
|
|
4330
|
+
"description": "Add an SSH key to balenaCloud.\n\nAdd an SSH key to the balenaCloud account of the logged in user.\n\nIf `path` is omitted, the command will attempt to read the SSH key from stdin.\n\nAbout SSH keys\nAn \"SSH key\" actually consists of a public/private key pair. A typical name\nfor the private key file is \"id_rsa\", and a typical name for the public key\nfile is \"id_rsa.pub\". Both key files are saved to your computer (with the\nprivate key optionally protected by a password), but only the public key is\nsaved to your balena account. This means that if you change computers or\notherwise lose the private key, you cannot recover the private key through\nyour balena account. You can however add new keys, and delete the old ones.\n\nTo generate a new SSH key pair, a nice guide can be found in GitHub's docs:\nhttps://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent\nSkip the step about adding the key to a GitHub account, and instead add it to\nyour balena account.",
|
|
4331
|
+
"examples": [
|
|
4332
|
+
"$ balena ssh-key add Main ~/.ssh/id_rsa.pub",
|
|
4333
|
+
"$ cat ~/.ssh/id_rsa.pub | balena ssh-key add Main",
|
|
4334
|
+
"# Windows 10 (cmd.exe prompt) example",
|
|
4335
|
+
"$ balena ssh-key add Main %userprofile%.sshid_rsa.pub"
|
|
4336
|
+
],
|
|
4337
|
+
"flags": {},
|
|
4338
|
+
"hasDynamicHelp": false,
|
|
4339
|
+
"hiddenAliases": [],
|
|
4340
|
+
"id": "ssh-key:add",
|
|
4193
4341
|
"pluginAlias": "balena-cli",
|
|
4194
4342
|
"pluginName": "balena-cli",
|
|
4195
4343
|
"pluginType": "core",
|
|
@@ -4200,105 +4348,92 @@
|
|
|
4200
4348
|
"relativePath": [
|
|
4201
4349
|
"build",
|
|
4202
4350
|
"commands",
|
|
4203
|
-
"
|
|
4204
|
-
"
|
|
4351
|
+
"ssh-key",
|
|
4352
|
+
"add.js"
|
|
4205
4353
|
]
|
|
4206
4354
|
},
|
|
4207
|
-
"
|
|
4355
|
+
"ssh-key": {
|
|
4208
4356
|
"aliases": [],
|
|
4209
4357
|
"args": {
|
|
4210
|
-
"
|
|
4211
|
-
"description": "
|
|
4212
|
-
"name": "
|
|
4358
|
+
"id": {
|
|
4359
|
+
"description": "balenaCloud ID for the SSH key",
|
|
4360
|
+
"name": "id",
|
|
4213
4361
|
"required": true
|
|
4214
4362
|
}
|
|
4215
4363
|
},
|
|
4216
|
-
"description": "
|
|
4364
|
+
"description": "Display an SSH key.\n\nDisplay a single SSH key registered in balenaCloud for the logged in user.",
|
|
4217
4365
|
"examples": [
|
|
4218
|
-
"$ balena
|
|
4219
|
-
"$ balena release-asset list a777f7345fe3d655c1c981aa642e5555"
|
|
4366
|
+
"$ balena ssh-key 17"
|
|
4220
4367
|
],
|
|
4221
|
-
"flags": {
|
|
4222
|
-
"json": {
|
|
4223
|
-
"description": "Format output as json.",
|
|
4224
|
-
"helpGroup": "GLOBAL",
|
|
4225
|
-
"name": "json",
|
|
4226
|
-
"allowNo": false,
|
|
4227
|
-
"type": "boolean"
|
|
4228
|
-
}
|
|
4229
|
-
},
|
|
4368
|
+
"flags": {},
|
|
4230
4369
|
"hasDynamicHelp": false,
|
|
4231
4370
|
"hiddenAliases": [],
|
|
4232
|
-
"id": "
|
|
4371
|
+
"id": "ssh-key",
|
|
4233
4372
|
"pluginAlias": "balena-cli",
|
|
4234
4373
|
"pluginName": "balena-cli",
|
|
4235
4374
|
"pluginType": "core",
|
|
4236
4375
|
"strict": true,
|
|
4237
|
-
"enableJsonFlag":
|
|
4376
|
+
"enableJsonFlag": false,
|
|
4238
4377
|
"authenticated": true,
|
|
4239
4378
|
"isESM": false,
|
|
4240
4379
|
"relativePath": [
|
|
4241
4380
|
"build",
|
|
4242
4381
|
"commands",
|
|
4243
|
-
"
|
|
4382
|
+
"ssh-key",
|
|
4383
|
+
"index.js"
|
|
4384
|
+
]
|
|
4385
|
+
},
|
|
4386
|
+
"ssh-key:list": {
|
|
4387
|
+
"aliases": [],
|
|
4388
|
+
"args": {},
|
|
4389
|
+
"description": "List the SSH keys in balenaCloud.\n\nList all SSH keys registered in balenaCloud for the logged in user.",
|
|
4390
|
+
"examples": [
|
|
4391
|
+
"$ balena ssh-key list"
|
|
4392
|
+
],
|
|
4393
|
+
"flags": {},
|
|
4394
|
+
"hasDynamicHelp": false,
|
|
4395
|
+
"hiddenAliases": [],
|
|
4396
|
+
"id": "ssh-key:list",
|
|
4397
|
+
"pluginAlias": "balena-cli",
|
|
4398
|
+
"pluginName": "balena-cli",
|
|
4399
|
+
"pluginType": "core",
|
|
4400
|
+
"strict": true,
|
|
4401
|
+
"enableJsonFlag": false,
|
|
4402
|
+
"authenticated": true,
|
|
4403
|
+
"isESM": false,
|
|
4404
|
+
"relativePath": [
|
|
4405
|
+
"build",
|
|
4406
|
+
"commands",
|
|
4407
|
+
"ssh-key",
|
|
4244
4408
|
"list.js"
|
|
4245
4409
|
]
|
|
4246
4410
|
},
|
|
4247
|
-
"
|
|
4411
|
+
"ssh-key:rm": {
|
|
4248
4412
|
"aliases": [],
|
|
4249
4413
|
"args": {
|
|
4250
|
-
"
|
|
4251
|
-
"description": "
|
|
4252
|
-
"name": "
|
|
4253
|
-
"required": true
|
|
4254
|
-
},
|
|
4255
|
-
"filePath": {
|
|
4256
|
-
"description": "path to the file to upload",
|
|
4257
|
-
"name": "filePath",
|
|
4414
|
+
"id": {
|
|
4415
|
+
"description": "balenaCloud ID for the SSH key",
|
|
4416
|
+
"name": "id",
|
|
4258
4417
|
"required": true
|
|
4259
4418
|
}
|
|
4260
4419
|
},
|
|
4261
|
-
"description": "
|
|
4420
|
+
"description": "Remove an SSH key from balenaCloud.\n\nRemove a single SSH key registered in balenaCloud for the logged in user.\n\nThe --yes option may be used to avoid interactive confirmation.",
|
|
4262
4421
|
"examples": [
|
|
4263
|
-
"$ balena
|
|
4264
|
-
"$ balena
|
|
4265
|
-
"$ balena release-asset upload 1234567 ./file.bin --key large-file.bin --chunk-size 10485760 --parallel-chunks 10"
|
|
4422
|
+
"$ balena ssh-key rm 17",
|
|
4423
|
+
"$ balena ssh-key rm 17 --yes"
|
|
4266
4424
|
],
|
|
4267
4425
|
"flags": {
|
|
4268
|
-
"
|
|
4269
|
-
"
|
|
4270
|
-
"
|
|
4271
|
-
"
|
|
4272
|
-
"hasDynamicHelp": false,
|
|
4273
|
-
"multiple": false,
|
|
4274
|
-
"type": "option"
|
|
4275
|
-
},
|
|
4276
|
-
"overwrite": {
|
|
4277
|
-
"description": "overwrite the asset if it already exists",
|
|
4278
|
-
"name": "overwrite",
|
|
4426
|
+
"yes": {
|
|
4427
|
+
"char": "y",
|
|
4428
|
+
"description": "answer \"yes\" to all questions (non interactive use)",
|
|
4429
|
+
"name": "yes",
|
|
4279
4430
|
"allowNo": false,
|
|
4280
4431
|
"type": "boolean"
|
|
4281
|
-
},
|
|
4282
|
-
"chunk-size": {
|
|
4283
|
-
"description": "chunk size in bytes for multipart upload (minimum 5MB)",
|
|
4284
|
-
"name": "chunk-size",
|
|
4285
|
-
"default": 5242880,
|
|
4286
|
-
"hasDynamicHelp": false,
|
|
4287
|
-
"multiple": false,
|
|
4288
|
-
"type": "option"
|
|
4289
|
-
},
|
|
4290
|
-
"parallel-chunks": {
|
|
4291
|
-
"description": "number of chunks to upload in parallel",
|
|
4292
|
-
"name": "parallel-chunks",
|
|
4293
|
-
"default": 5,
|
|
4294
|
-
"hasDynamicHelp": false,
|
|
4295
|
-
"multiple": false,
|
|
4296
|
-
"type": "option"
|
|
4297
4432
|
}
|
|
4298
4433
|
},
|
|
4299
4434
|
"hasDynamicHelp": false,
|
|
4300
4435
|
"hiddenAliases": [],
|
|
4301
|
-
"id": "
|
|
4436
|
+
"id": "ssh-key:rm",
|
|
4302
4437
|
"pluginAlias": "balena-cli",
|
|
4303
4438
|
"pluginName": "balena-cli",
|
|
4304
4439
|
"pluginType": "core",
|
|
@@ -4309,8 +4444,8 @@
|
|
|
4309
4444
|
"relativePath": [
|
|
4310
4445
|
"build",
|
|
4311
4446
|
"commands",
|
|
4312
|
-
"
|
|
4313
|
-
"
|
|
4447
|
+
"ssh-key",
|
|
4448
|
+
"rm.js"
|
|
4314
4449
|
]
|
|
4315
4450
|
},
|
|
4316
4451
|
"support": {
|
|
@@ -4594,141 +4729,6 @@
|
|
|
4594
4729
|
"set.js"
|
|
4595
4730
|
]
|
|
4596
4731
|
},
|
|
4597
|
-
"ssh-key:add": {
|
|
4598
|
-
"aliases": [],
|
|
4599
|
-
"args": {
|
|
4600
|
-
"name": {
|
|
4601
|
-
"description": "the SSH key name",
|
|
4602
|
-
"name": "name",
|
|
4603
|
-
"required": true
|
|
4604
|
-
},
|
|
4605
|
-
"path": {
|
|
4606
|
-
"description": "the path to the public key file",
|
|
4607
|
-
"name": "path",
|
|
4608
|
-
"required": true
|
|
4609
|
-
}
|
|
4610
|
-
},
|
|
4611
|
-
"description": "Add an SSH key to balenaCloud.\n\nAdd an SSH key to the balenaCloud account of the logged in user.\n\nIf `path` is omitted, the command will attempt to read the SSH key from stdin.\n\nAbout SSH keys\nAn \"SSH key\" actually consists of a public/private key pair. A typical name\nfor the private key file is \"id_rsa\", and a typical name for the public key\nfile is \"id_rsa.pub\". Both key files are saved to your computer (with the\nprivate key optionally protected by a password), but only the public key is\nsaved to your balena account. This means that if you change computers or\notherwise lose the private key, you cannot recover the private key through\nyour balena account. You can however add new keys, and delete the old ones.\n\nTo generate a new SSH key pair, a nice guide can be found in GitHub's docs:\nhttps://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent\nSkip the step about adding the key to a GitHub account, and instead add it to\nyour balena account.",
|
|
4612
|
-
"examples": [
|
|
4613
|
-
"$ balena ssh-key add Main ~/.ssh/id_rsa.pub",
|
|
4614
|
-
"$ cat ~/.ssh/id_rsa.pub | balena ssh-key add Main",
|
|
4615
|
-
"# Windows 10 (cmd.exe prompt) example",
|
|
4616
|
-
"$ balena ssh-key add Main %userprofile%.sshid_rsa.pub"
|
|
4617
|
-
],
|
|
4618
|
-
"flags": {},
|
|
4619
|
-
"hasDynamicHelp": false,
|
|
4620
|
-
"hiddenAliases": [],
|
|
4621
|
-
"id": "ssh-key:add",
|
|
4622
|
-
"pluginAlias": "balena-cli",
|
|
4623
|
-
"pluginName": "balena-cli",
|
|
4624
|
-
"pluginType": "core",
|
|
4625
|
-
"strict": true,
|
|
4626
|
-
"enableJsonFlag": false,
|
|
4627
|
-
"authenticated": true,
|
|
4628
|
-
"isESM": false,
|
|
4629
|
-
"relativePath": [
|
|
4630
|
-
"build",
|
|
4631
|
-
"commands",
|
|
4632
|
-
"ssh-key",
|
|
4633
|
-
"add.js"
|
|
4634
|
-
]
|
|
4635
|
-
},
|
|
4636
|
-
"ssh-key": {
|
|
4637
|
-
"aliases": [],
|
|
4638
|
-
"args": {
|
|
4639
|
-
"id": {
|
|
4640
|
-
"description": "balenaCloud ID for the SSH key",
|
|
4641
|
-
"name": "id",
|
|
4642
|
-
"required": true
|
|
4643
|
-
}
|
|
4644
|
-
},
|
|
4645
|
-
"description": "Display an SSH key.\n\nDisplay a single SSH key registered in balenaCloud for the logged in user.",
|
|
4646
|
-
"examples": [
|
|
4647
|
-
"$ balena ssh-key 17"
|
|
4648
|
-
],
|
|
4649
|
-
"flags": {},
|
|
4650
|
-
"hasDynamicHelp": false,
|
|
4651
|
-
"hiddenAliases": [],
|
|
4652
|
-
"id": "ssh-key",
|
|
4653
|
-
"pluginAlias": "balena-cli",
|
|
4654
|
-
"pluginName": "balena-cli",
|
|
4655
|
-
"pluginType": "core",
|
|
4656
|
-
"strict": true,
|
|
4657
|
-
"enableJsonFlag": false,
|
|
4658
|
-
"authenticated": true,
|
|
4659
|
-
"isESM": false,
|
|
4660
|
-
"relativePath": [
|
|
4661
|
-
"build",
|
|
4662
|
-
"commands",
|
|
4663
|
-
"ssh-key",
|
|
4664
|
-
"index.js"
|
|
4665
|
-
]
|
|
4666
|
-
},
|
|
4667
|
-
"ssh-key:list": {
|
|
4668
|
-
"aliases": [],
|
|
4669
|
-
"args": {},
|
|
4670
|
-
"description": "List the SSH keys in balenaCloud.\n\nList all SSH keys registered in balenaCloud for the logged in user.",
|
|
4671
|
-
"examples": [
|
|
4672
|
-
"$ balena ssh-key list"
|
|
4673
|
-
],
|
|
4674
|
-
"flags": {},
|
|
4675
|
-
"hasDynamicHelp": false,
|
|
4676
|
-
"hiddenAliases": [],
|
|
4677
|
-
"id": "ssh-key:list",
|
|
4678
|
-
"pluginAlias": "balena-cli",
|
|
4679
|
-
"pluginName": "balena-cli",
|
|
4680
|
-
"pluginType": "core",
|
|
4681
|
-
"strict": true,
|
|
4682
|
-
"enableJsonFlag": false,
|
|
4683
|
-
"authenticated": true,
|
|
4684
|
-
"isESM": false,
|
|
4685
|
-
"relativePath": [
|
|
4686
|
-
"build",
|
|
4687
|
-
"commands",
|
|
4688
|
-
"ssh-key",
|
|
4689
|
-
"list.js"
|
|
4690
|
-
]
|
|
4691
|
-
},
|
|
4692
|
-
"ssh-key:rm": {
|
|
4693
|
-
"aliases": [],
|
|
4694
|
-
"args": {
|
|
4695
|
-
"id": {
|
|
4696
|
-
"description": "balenaCloud ID for the SSH key",
|
|
4697
|
-
"name": "id",
|
|
4698
|
-
"required": true
|
|
4699
|
-
}
|
|
4700
|
-
},
|
|
4701
|
-
"description": "Remove an SSH key from balenaCloud.\n\nRemove a single SSH key registered in balenaCloud for the logged in user.\n\nThe --yes option may be used to avoid interactive confirmation.",
|
|
4702
|
-
"examples": [
|
|
4703
|
-
"$ balena ssh-key rm 17",
|
|
4704
|
-
"$ balena ssh-key rm 17 --yes"
|
|
4705
|
-
],
|
|
4706
|
-
"flags": {
|
|
4707
|
-
"yes": {
|
|
4708
|
-
"char": "y",
|
|
4709
|
-
"description": "answer \"yes\" to all questions (non interactive use)",
|
|
4710
|
-
"name": "yes",
|
|
4711
|
-
"allowNo": false,
|
|
4712
|
-
"type": "boolean"
|
|
4713
|
-
}
|
|
4714
|
-
},
|
|
4715
|
-
"hasDynamicHelp": false,
|
|
4716
|
-
"hiddenAliases": [],
|
|
4717
|
-
"id": "ssh-key:rm",
|
|
4718
|
-
"pluginAlias": "balena-cli",
|
|
4719
|
-
"pluginName": "balena-cli",
|
|
4720
|
-
"pluginType": "core",
|
|
4721
|
-
"strict": true,
|
|
4722
|
-
"enableJsonFlag": false,
|
|
4723
|
-
"authenticated": true,
|
|
4724
|
-
"isESM": false,
|
|
4725
|
-
"relativePath": [
|
|
4726
|
-
"build",
|
|
4727
|
-
"commands",
|
|
4728
|
-
"ssh-key",
|
|
4729
|
-
"rm.js"
|
|
4730
|
-
]
|
|
4731
|
-
},
|
|
4732
4732
|
"util:available-drives": {
|
|
4733
4733
|
"aliases": [],
|
|
4734
4734
|
"args": {},
|
|
@@ -4777,5 +4777,5 @@
|
|
|
4777
4777
|
]
|
|
4778
4778
|
}
|
|
4779
4779
|
},
|
|
4780
|
-
"version": "23.2.
|
|
4780
|
+
"version": "23.2.3"
|
|
4781
4781
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balena-cli",
|
|
3
|
-
"version": "23.2.
|
|
3
|
+
"version": "23.2.3-build-renovate-apple-actions-import-codesign-certs-5-x-9b7160e9a031f517e4fe9da9df68f3e2bf859998-1",
|
|
4
4
|
"description": "The official balena Command Line Interface",
|
|
5
5
|
"main": "./build/app.js",
|
|
6
6
|
"homepage": "https://github.com/balena-io/balena-cli",
|
|
@@ -262,6 +262,6 @@
|
|
|
262
262
|
"balena-request": "14.0.6"
|
|
263
263
|
},
|
|
264
264
|
"versionist": {
|
|
265
|
-
"publishedAt": "2025-12-
|
|
265
|
+
"publishedAt": "2025-12-02T14:10:32.507Z"
|
|
266
266
|
}
|
|
267
267
|
}
|