@paradigma-inc/flywheel 0.1.108 → 0.1.115
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 +23 -8
- package/package.json +1 -1
- package/skills/flywheel/getting-started/flywheel-tutorial-overview.md +1 -1
- package/skills/flywheel/setting-up-flywheel/how-can-i-get-an-authorized-client_id-for-the-oauth-flow.md +31 -40
- package/skills/flywheel/setting-up-flywheel/other-hosts-installation.md +8 -1
- package/skills/flywheel-llm-proof-paper/scripts/__pycache__/check_paper.cpython-312.pyc +0 -0
- package/src/runtime/required-runtime-commands.json +3 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js +2 -2
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.d.ts +16 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.js +36 -14
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.d.ts +2 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.js +15 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js +9 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js +20 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.d.ts +21 -21
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js +268 -262
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.d.ts +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.js +206 -66
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.js +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.js +2 -2
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.js +1 -2
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.js.map +1 -1
- package/src/runtime/vendor/manifest.json +10 -1
- package/src/update/cache.mjs +17 -2
- package/skills/flywheel-llm-proof-paper/scripts/__pycache__/check_paper.cpython-311.pyc +0 -0
|
@@ -1,272 +1,278 @@
|
|
|
1
|
-
import { artifactsGetCommand } from
|
|
2
|
-
import { artifactsListCommand } from
|
|
3
|
-
import { authLoginCommand } from
|
|
4
|
-
import { authStatusCommand } from
|
|
5
|
-
import { computeStatusCommand } from
|
|
6
|
-
import { adminGraphsExportCommand } from
|
|
7
|
-
import { adminGraphsExportStreamCommand } from
|
|
8
|
-
import { adminGraphsListCommand } from
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
1
|
+
import { artifactsGetCommand } from "./artifacts-get.js";
|
|
2
|
+
import { artifactsListCommand } from "./artifacts-list.js";
|
|
3
|
+
import { authLoginCommand } from "./auth-login.js";
|
|
4
|
+
import { authStatusCommand } from "./auth-status.js";
|
|
5
|
+
import { computeStatusCommand } from "./compute-status.js";
|
|
6
|
+
import { adminGraphsExportCommand } from "./admin-graphs-export.js";
|
|
7
|
+
import { adminGraphsExportStreamCommand } from "./admin-graphs-export-stream.js";
|
|
8
|
+
import { adminGraphsListCommand } from "./admin-graphs-list.js";
|
|
9
|
+
import { adminTestUsersCreateCommand } from "./admin-test-users-create.js";
|
|
10
|
+
import { adminTestUsersDeleteCommand } from "./admin-test-users-delete.js";
|
|
11
|
+
import { adminTestUsersLoginCommand } from "./admin-test-users-login.js";
|
|
12
|
+
import { exportSubgraphCommand } from "./export-subgraph.js";
|
|
13
|
+
import { nodesChildrenCommand } from "./nodes-children.js";
|
|
14
|
+
import { nodesCommitCommand } from "./nodes-commit.js";
|
|
15
|
+
import { nodesCommitNewCommand } from "./nodes-commit-new.js";
|
|
16
|
+
import { nodesDeleteCommand } from "./nodes-delete.js";
|
|
17
|
+
import { nodesGetCommand } from "./nodes-get.js";
|
|
18
|
+
import { nodesListCommand } from "./nodes-list.js";
|
|
19
|
+
import { nodesParentsCommand } from "./nodes-parents.js";
|
|
20
|
+
import { nodesRenderTreeCommand } from "./nodes-render-tree.js";
|
|
21
|
+
import { nodesStageLeaseAcquireCommand } from "./nodes-stage-lease-acquire.js";
|
|
22
|
+
import { profileListCommand } from "./profile-list.js";
|
|
23
|
+
import { profileShowCommand } from "./profile-show.js";
|
|
24
|
+
import { profileSetCommand } from "./profile-set.js";
|
|
25
|
+
import { profileUnsetCommand } from "./profile-unset.js";
|
|
26
|
+
import { tagsCreateCommand } from "./tags-create.js";
|
|
27
|
+
import { tagsUpdateCommand } from "./tags-update.js";
|
|
28
|
+
import { tagsDeleteCommand } from "./tags-delete.js";
|
|
29
|
+
import { tagsAssignCommand } from "./tags-assign.js";
|
|
30
|
+
import { nodesSharingGetCommand } from "./nodes-sharing-get.js";
|
|
31
|
+
import { nodesSharingSetCommand } from "./nodes-sharing-set.js";
|
|
32
|
+
import { nodesSharingSetBulkCommand } from "./nodes-sharing-set-bulk.js";
|
|
33
|
+
import { nodesSharingSummariesCommand } from "./nodes-sharing-summaries.js";
|
|
34
|
+
import { nodesResolveSlugCommand } from "./nodes-resolve-slug.js";
|
|
35
|
+
import { adminNodesAuditListCommand } from "./admin-nodes-audit-list.js";
|
|
36
|
+
import { nodesRenderAncestryCommand } from "./nodes-render-ancestry.js";
|
|
37
|
+
import { nodesRenderSummaryCommand } from "./nodes-render-summary.js";
|
|
38
|
+
import { nodesAddParentCommand } from "./nodes-add-parent.js";
|
|
39
|
+
import { nodesRemoveParentCommand } from "./nodes-remove-parent.js";
|
|
40
|
+
import { nodesBranchCommand } from "./nodes-branch.js";
|
|
41
|
+
import { nodesMergeCommand } from "./nodes-merge.js";
|
|
42
|
+
import { nodesDeleteBulkCommand } from "./nodes-delete-bulk.js";
|
|
43
|
+
import { nodesFilesCommand } from "./nodes-files.js";
|
|
44
|
+
import { nodesStageLeaseHeartbeatCommand } from "./nodes-stage-lease-heartbeat.js";
|
|
45
|
+
import { nodesStageLeaseReleaseCommand } from "./nodes-stage-lease-release.js";
|
|
46
|
+
import { campaignSnapshotCommand } from "./campaign-snapshot.js";
|
|
47
|
+
import { remoteArtifactsRefreshCommand } from "./remote-artifacts-refresh.js";
|
|
48
|
+
import { remoteArtifactsResolveCommand } from "./remote-artifacts-resolve.js";
|
|
49
|
+
import { nodesCreateCommand } from "./nodes-create.js";
|
|
50
|
+
import { artifactsUploadPrepareCommand } from "./artifacts-upload-prepare.js";
|
|
51
|
+
import { artifactsUploadFinalizeCommand } from "./artifacts-upload-finalize.js";
|
|
52
|
+
import { artifactsUploadCommand } from "./artifacts-upload.js";
|
|
53
|
+
import { artifactsDeleteBulkCommand } from "./artifacts-delete-bulk.js";
|
|
54
|
+
import { artifactsDeleteCommand } from "./artifacts-delete.js";
|
|
55
|
+
import { artifactsNoteSetCommand } from "./artifacts-note-set.js";
|
|
56
|
+
import { hooksListCommand } from "./hooks-list.js";
|
|
57
|
+
import { hooksCreateCommand } from "./hooks-create.js";
|
|
58
|
+
import { hooksUpdateCommand } from "./hooks-update.js";
|
|
59
|
+
import { hooksDeleteCommand } from "./hooks-delete.js";
|
|
60
|
+
import { hooksSetEnabledCommand } from "./hooks-set-enabled.js";
|
|
61
|
+
import { hooksRunsListCommand } from "./hooks-runs-list.js";
|
|
62
|
+
import { hooksSecretsListCommand } from "./hooks-secrets-list.js";
|
|
63
|
+
import { hooksSecretsCreateCommand } from "./hooks-secrets-create.js";
|
|
64
|
+
import { hooksSecretsUpdateCommand } from "./hooks-secrets-update.js";
|
|
65
|
+
import { hooksSecretsDeleteCommand } from "./hooks-secrets-delete.js";
|
|
66
|
+
import { executionsLaunchCommand } from "./executions-launch.js";
|
|
67
|
+
import { executionsListCommand } from "./executions-list.js";
|
|
68
|
+
import { executionsTerminateCommand } from "./executions-terminate.js";
|
|
69
|
+
import { computeOptionsCommand } from "./compute-options.js";
|
|
70
|
+
import { computeFundingCommand } from "./compute-funding.js";
|
|
71
|
+
import { computeConnectionCommand } from "./compute-connection.js";
|
|
72
|
+
import { computeAcquireCommand } from "./compute-acquire.js";
|
|
73
|
+
import { computeReleaseCommand } from "./compute-release.js";
|
|
74
|
+
import { computeReleaseAllCommand } from "./compute-release-all.js";
|
|
75
|
+
import { approvalSessionsHeartbeatCommand } from "./approval-sessions-heartbeat.js";
|
|
76
|
+
import { approvalSessionsListCommand } from "./approval-sessions-list.js";
|
|
77
|
+
import { approvalSessionsExpireCommand } from "./approval-sessions-expire.js";
|
|
78
|
+
import { computeGrantsListCommand } from "./compute-grants-list.js";
|
|
79
|
+
import { computeGrantsRequestApprovalCommand } from "./compute-grants-request-approval.js";
|
|
80
|
+
import { campaignBudgetsListCommand } from "./campaign-budgets-list.js";
|
|
81
|
+
import { campaignBudgetsCreateCommand } from "./campaign-budgets-create.js";
|
|
82
|
+
import { campaignBudgetsUpdateCommand } from "./campaign-budgets-update.js";
|
|
83
|
+
import { campaignBudgetsRevokeCommand } from "./campaign-budgets-revoke.js";
|
|
84
|
+
import { adminComputePolicyGetCommand } from "./admin-compute-policy-get.js";
|
|
85
|
+
import { adminComputePolicySetCommand } from "./admin-compute-policy-set.js";
|
|
86
|
+
import { computeBudgetsCommand } from "./compute-budgets.js";
|
|
87
|
+
import { machinesListCommand } from "./machines-list.js";
|
|
88
|
+
import { blobsGetCommand } from "./blobs-get.js";
|
|
89
|
+
import { filesListCommand } from "./files-list.js";
|
|
90
|
+
import { exportHistoryCommand } from "./export-history.js";
|
|
91
|
+
import { importSubgraphCommand } from "./import-subgraph.js";
|
|
92
|
+
import { exportSummaryCommand } from "./export-summary.js";
|
|
93
|
+
import { exportSummaryStreamCommand } from "./export-summary-stream.js";
|
|
94
|
+
import { exportSummaryPdfCommand } from "./export-summary-pdf.js";
|
|
95
|
+
import { exportSummaryRenderPdfCommand } from "./export-summary-render-pdf.js";
|
|
96
|
+
import { updatesListCommand } from "./updates-list.js";
|
|
97
|
+
import { updatesHideCommand, updatesUnhideCommand } from "./updates-hide.js";
|
|
98
|
+
import { updatesHideAllActiveCommand } from "./updates-hide-all-active.js";
|
|
99
|
+
import { feedbackCreateCommand } from "./feedback-create.js";
|
|
100
|
+
import { graphGetCommand } from "./graph-get.js";
|
|
101
|
+
import { accountGetCommand } from "./account-get.js";
|
|
102
|
+
import { accountMergeProofCommand } from "./account-merge-proof.js";
|
|
103
|
+
import { accountMergePreviewCommand } from "./account-merge-preview.js";
|
|
104
|
+
import { accountMergeCommand } from "./account-merge.js";
|
|
105
|
+
import { accountDetachCommand } from "./account-detach.js";
|
|
106
|
+
import { accountEmailsAddCommand } from "./account-emails-add.js";
|
|
107
|
+
import { accountEmailsRemoveCommand } from "./account-emails-remove.js";
|
|
108
|
+
import { accountEmailsSetPrimaryCommand } from "./account-emails-set-primary.js";
|
|
109
|
+
import { creditsBalanceCommand } from "./credits-balance.js";
|
|
110
|
+
import { creditsTransactionsCommand } from "./credits-transactions.js";
|
|
111
|
+
import { creditsUsageCommand } from "./credits-usage.js";
|
|
112
|
+
import { creditsPurchaseCommand } from "./credits-purchase.js";
|
|
113
|
+
import { creditsSubscribeCommand } from "./credits-subscribe.js";
|
|
114
|
+
import { creditsBillingPortalCommand } from "./credits-billing-portal.js";
|
|
115
|
+
import { creditsSubscriptionCommand } from "./credits-subscription.js";
|
|
116
|
+
import { creditsReferralCommand } from "./credits-referral.js";
|
|
117
|
+
import { creditsReferralClaimCommand } from "./credits-referral-claim.js";
|
|
118
|
+
import { githubStatusCommand } from "./github-status.js";
|
|
119
|
+
import { githubLinkCommand } from "./github-link.js";
|
|
120
|
+
import { githubRefreshReposCommand } from "./github-refresh-repos.js";
|
|
121
|
+
import { githubDisconnectCommand } from "./github-disconnect.js";
|
|
122
|
+
import { integrationsStatusCommand } from "./integrations-status.js";
|
|
123
|
+
import { integrationsWandbSetCommand } from "./integrations-wandb-set.js";
|
|
124
|
+
import { integrationsWandbRemoveCommand } from "./integrations-wandb-remove.js";
|
|
125
|
+
import { integrationsHuggingfaceSetCommand } from "./integrations-huggingface-set.js";
|
|
126
|
+
import { integrationsHuggingfaceRemoveCommand } from "./integrations-huggingface-remove.js";
|
|
127
|
+
import { apiKeysListCommand } from "./api-keys-list.js";
|
|
128
|
+
import { apiKeysCreateCommand } from "./api-keys-create.js";
|
|
129
|
+
import { apiKeysDeleteCommand } from "./api-keys-delete.js";
|
|
130
|
+
import { apiKeysRotateCommand } from "./api-keys-rotate.js";
|
|
128
131
|
// FLY-416: removed — legacy /setup-exchange replaced by RFC 8628 device flow.
|
|
129
132
|
// import { apiKeysSetupExchangeCreateCommand } from './api-keys-setup-exchange-create.js';
|
|
130
133
|
// import { apiKeysSetupExchangeRedeemCommand } from './api-keys-setup-exchange-redeem.js';
|
|
131
|
-
import { authKeychainSetCommand } from
|
|
132
|
-
import { authKeychainClearCommand } from
|
|
133
|
-
import { envSwitchCommand, envListCommand } from
|
|
134
|
+
import { authKeychainSetCommand } from "./auth-keychain-set.js";
|
|
135
|
+
import { authKeychainClearCommand } from "./auth-keychain-clear.js";
|
|
136
|
+
import { envSwitchCommand, envListCommand } from "./env.js";
|
|
134
137
|
export { artifactsGetCommand, artifactsListCommand, authLoginCommand, authStatusCommand, computeStatusCommand, exportSubgraphCommand, graphGetCommand, nodesChildrenCommand, nodesCommitCommand, nodesCommitNewCommand, nodesDeleteCommand, nodesGetCommand, nodesListCommand, nodesParentsCommand, nodesRenderTreeCommand, nodesStageLeaseAcquireCommand, profileListCommand, profileShowCommand, profileSetCommand, profileUnsetCommand, };
|
|
135
138
|
export const MVP_COMMAND_HANDLERS = {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
139
|
+
"auth:status": authStatusCommand,
|
|
140
|
+
"auth:login": authLoginCommand,
|
|
141
|
+
"nodes:list": nodesListCommand,
|
|
142
|
+
"nodes:get": nodesGetCommand,
|
|
143
|
+
"nodes:children": nodesChildrenCommand,
|
|
144
|
+
"nodes:parents": nodesParentsCommand,
|
|
145
|
+
"nodes:commit-new": nodesCommitNewCommand,
|
|
146
|
+
"nodes:stage:lease:acquire": nodesStageLeaseAcquireCommand,
|
|
147
|
+
"nodes:commit": nodesCommitCommand,
|
|
148
|
+
"nodes:delete": nodesDeleteCommand,
|
|
149
|
+
"nodes:render:tree": nodesRenderTreeCommand,
|
|
150
|
+
"artifacts:list": artifactsListCommand,
|
|
151
|
+
"artifacts:get": artifactsGetCommand,
|
|
152
|
+
"compute:status": computeStatusCommand,
|
|
153
|
+
"export:subgraph": exportSubgraphCommand,
|
|
154
|
+
"profile:list": profileListCommand,
|
|
155
|
+
"profile:show": profileShowCommand,
|
|
156
|
+
"profile:set": profileSetCommand,
|
|
157
|
+
"profile:unset": profileUnsetCommand,
|
|
158
|
+
"tags:create": tagsCreateCommand,
|
|
159
|
+
"tags:update": tagsUpdateCommand,
|
|
160
|
+
"tags:delete": tagsDeleteCommand,
|
|
161
|
+
"tags:assign": tagsAssignCommand,
|
|
162
|
+
"nodes:sharing:get": nodesSharingGetCommand,
|
|
163
|
+
"nodes:sharing:set": nodesSharingSetCommand,
|
|
164
|
+
"nodes:sharing:set-bulk": nodesSharingSetBulkCommand,
|
|
165
|
+
"nodes:sharing:summaries": nodesSharingSummariesCommand,
|
|
166
|
+
"nodes:resolve-slug": nodesResolveSlugCommand,
|
|
167
|
+
"admin:nodes:audit:list": adminNodesAuditListCommand,
|
|
168
|
+
"nodes:render:ancestry": nodesRenderAncestryCommand,
|
|
169
|
+
"nodes:render:summary": nodesRenderSummaryCommand,
|
|
170
|
+
"nodes:add-parent": nodesAddParentCommand,
|
|
171
|
+
"nodes:remove-parent": nodesRemoveParentCommand,
|
|
172
|
+
"nodes:branch": nodesBranchCommand,
|
|
173
|
+
"nodes:merge": nodesMergeCommand,
|
|
174
|
+
"nodes:delete-bulk": nodesDeleteBulkCommand,
|
|
175
|
+
"nodes:files": nodesFilesCommand,
|
|
176
|
+
"nodes:stage:lease:heartbeat": nodesStageLeaseHeartbeatCommand,
|
|
177
|
+
"nodes:stage:lease:release": nodesStageLeaseReleaseCommand,
|
|
178
|
+
"campaign:snapshot": campaignSnapshotCommand,
|
|
179
|
+
"remote-artifacts:resolve": remoteArtifactsResolveCommand,
|
|
180
|
+
"remote-artifacts:refresh": remoteArtifactsRefreshCommand,
|
|
181
|
+
"nodes:create": nodesCreateCommand,
|
|
182
|
+
"artifacts:upload:prepare": artifactsUploadPrepareCommand,
|
|
183
|
+
"artifacts:upload:finalize": artifactsUploadFinalizeCommand,
|
|
184
|
+
"artifacts:upload": artifactsUploadCommand,
|
|
185
|
+
"artifacts:delete-bulk": artifactsDeleteBulkCommand,
|
|
186
|
+
"artifacts:delete": artifactsDeleteCommand,
|
|
187
|
+
"artifacts:note:set": artifactsNoteSetCommand,
|
|
188
|
+
"hooks:list": hooksListCommand,
|
|
189
|
+
"hooks:create": hooksCreateCommand,
|
|
190
|
+
"hooks:update": hooksUpdateCommand,
|
|
191
|
+
"hooks:delete": hooksDeleteCommand,
|
|
192
|
+
"hooks:set-enabled": hooksSetEnabledCommand,
|
|
193
|
+
"hooks:runs:list": hooksRunsListCommand,
|
|
194
|
+
"hooks:secrets:list": hooksSecretsListCommand,
|
|
195
|
+
"hooks:secrets:create": hooksSecretsCreateCommand,
|
|
196
|
+
"hooks:secrets:update": hooksSecretsUpdateCommand,
|
|
197
|
+
"hooks:secrets:delete": hooksSecretsDeleteCommand,
|
|
198
|
+
"executions:launch": executionsLaunchCommand,
|
|
199
|
+
"executions:list": executionsListCommand,
|
|
200
|
+
"executions:terminate": executionsTerminateCommand,
|
|
201
|
+
"compute:options": computeOptionsCommand,
|
|
202
|
+
"compute:funding": computeFundingCommand,
|
|
203
|
+
"compute:connection": computeConnectionCommand,
|
|
204
|
+
"compute:acquire": computeAcquireCommand,
|
|
205
|
+
"compute:release": computeReleaseCommand,
|
|
206
|
+
"compute:release-all": computeReleaseAllCommand,
|
|
207
|
+
"approval-sessions:heartbeat": approvalSessionsHeartbeatCommand,
|
|
208
|
+
"approval-sessions:list": approvalSessionsListCommand,
|
|
209
|
+
"approval-sessions:expire": approvalSessionsExpireCommand,
|
|
210
|
+
"compute-grants:list": computeGrantsListCommand,
|
|
211
|
+
"compute-grants:request-approval": computeGrantsRequestApprovalCommand,
|
|
212
|
+
"campaign-budgets:list": campaignBudgetsListCommand,
|
|
213
|
+
"campaign-budgets:create": campaignBudgetsCreateCommand,
|
|
214
|
+
"campaign-budgets:update": campaignBudgetsUpdateCommand,
|
|
215
|
+
"campaign-budgets:revoke": campaignBudgetsRevokeCommand,
|
|
216
|
+
"admin:compute:policy:get": adminComputePolicyGetCommand,
|
|
217
|
+
"admin:compute:policy:set": adminComputePolicySetCommand,
|
|
218
|
+
"compute:budgets": computeBudgetsCommand,
|
|
219
|
+
"machines:list": machinesListCommand,
|
|
220
|
+
"blobs:get": blobsGetCommand,
|
|
221
|
+
"files:list": filesListCommand,
|
|
222
|
+
"export:history": exportHistoryCommand,
|
|
223
|
+
"import:subgraph": importSubgraphCommand,
|
|
224
|
+
"export:summary": exportSummaryCommand,
|
|
225
|
+
"export:summary:stream": exportSummaryStreamCommand,
|
|
226
|
+
"export:summary:pdf": exportSummaryPdfCommand,
|
|
227
|
+
"export:summary:render-pdf": exportSummaryRenderPdfCommand,
|
|
228
|
+
"updates:list": updatesListCommand,
|
|
229
|
+
"updates:hide": updatesHideCommand,
|
|
230
|
+
"updates:hide-all-active": updatesHideAllActiveCommand,
|
|
231
|
+
"updates:unhide": updatesUnhideCommand,
|
|
232
|
+
"feedback:create": feedbackCreateCommand,
|
|
233
|
+
"graph:get": graphGetCommand,
|
|
234
|
+
"account:get": accountGetCommand,
|
|
235
|
+
"account:merge:proof": accountMergeProofCommand,
|
|
236
|
+
"account:merge:preview": accountMergePreviewCommand,
|
|
237
|
+
"account:merge": accountMergeCommand,
|
|
238
|
+
"account:detach": accountDetachCommand,
|
|
239
|
+
"account:emails:add": accountEmailsAddCommand,
|
|
240
|
+
"account:emails:remove": accountEmailsRemoveCommand,
|
|
241
|
+
"account:emails:set-primary": accountEmailsSetPrimaryCommand,
|
|
242
|
+
"credits:balance": creditsBalanceCommand,
|
|
243
|
+
"credits:transactions": creditsTransactionsCommand,
|
|
244
|
+
"credits:usage": creditsUsageCommand,
|
|
245
|
+
"credits:purchase": creditsPurchaseCommand,
|
|
246
|
+
"credits:subscribe": creditsSubscribeCommand,
|
|
247
|
+
"credits:billing-portal": creditsBillingPortalCommand,
|
|
248
|
+
"credits:subscription": creditsSubscriptionCommand,
|
|
249
|
+
"credits:referral": creditsReferralCommand,
|
|
250
|
+
"credits:referral:claim": creditsReferralClaimCommand,
|
|
251
|
+
"github:status": githubStatusCommand,
|
|
252
|
+
"github:link": githubLinkCommand,
|
|
253
|
+
"github:refresh-repos": githubRefreshReposCommand,
|
|
254
|
+
"github:disconnect": githubDisconnectCommand,
|
|
255
|
+
"integrations:status": integrationsStatusCommand,
|
|
256
|
+
"integrations:wandb:set": integrationsWandbSetCommand,
|
|
257
|
+
"integrations:wandb:remove": integrationsWandbRemoveCommand,
|
|
258
|
+
"integrations:huggingface:set": integrationsHuggingfaceSetCommand,
|
|
259
|
+
"integrations:huggingface:remove": integrationsHuggingfaceRemoveCommand,
|
|
260
|
+
"api-keys:list": apiKeysListCommand,
|
|
261
|
+
"api-keys:create": apiKeysCreateCommand,
|
|
262
|
+
"api-keys:delete": apiKeysDeleteCommand,
|
|
263
|
+
"api-keys:rotate": apiKeysRotateCommand,
|
|
261
264
|
// FLY-416: removed — legacy /setup-exchange replaced by RFC 8628 device flow.
|
|
262
265
|
// 'api-keys:setup-exchange:create': apiKeysSetupExchangeCreateCommand,
|
|
263
266
|
// 'api-keys:setup-exchange:redeem': apiKeysSetupExchangeRedeemCommand,
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
267
|
+
"auth:keychain:set": authKeychainSetCommand,
|
|
268
|
+
"auth:keychain:clear": authKeychainClearCommand,
|
|
269
|
+
"admin:graphs:list": adminGraphsListCommand,
|
|
270
|
+
"admin:graphs:export": adminGraphsExportCommand,
|
|
271
|
+
"admin:graphs:export:stream": adminGraphsExportStreamCommand,
|
|
272
|
+
"admin:test-users:create": adminTestUsersCreateCommand,
|
|
273
|
+
"admin:test-users:delete": adminTestUsersDeleteCommand,
|
|
274
|
+
"admin:test-users:login": adminTestUsersLoginCommand,
|
|
275
|
+
"env:list": envListCommand,
|
|
276
|
+
"env:switch": envSwitchCommand,
|
|
271
277
|
};
|
|
272
278
|
//# sourceMappingURL=index.js.map
|