heroku 10.14.0 → 10.15.0
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/lib/commands/telemetry/add.d.ts +1 -0
- package/lib/commands/telemetry/add.js +20 -2
- package/oclif.manifest.json +224 -228
- package/package.json +2 -2
|
@@ -9,6 +9,13 @@ class Add extends command_1.Command {
|
|
|
9
9
|
const { flags, args } = await this.parse(Add);
|
|
10
10
|
const { app, headers, space, signals, transport } = flags;
|
|
11
11
|
const { endpoint } = args;
|
|
12
|
+
// Allow splunk, but do not show splunk in error message until splunk transport is accepted as a feature
|
|
13
|
+
// When splunk transport is accepted as a feature, and options are added for the transport flag, this section should be removed
|
|
14
|
+
const publicTransports = ['http', 'grpc'];
|
|
15
|
+
const validTransports = [...publicTransports, 'splunk'];
|
|
16
|
+
if (!validTransports.includes(transport)) {
|
|
17
|
+
throw new Error(`Expected --transport=${transport} to be one of: ${publicTransports.join(', ')}`);
|
|
18
|
+
}
|
|
12
19
|
let id;
|
|
13
20
|
if (app) {
|
|
14
21
|
const { body: herokuApp } = await this.heroku.get(`/apps/${app}`, {
|
|
@@ -29,7 +36,7 @@ class Add extends command_1.Command {
|
|
|
29
36
|
signals: (0, util_1.validateAndFormatSignals)(signals),
|
|
30
37
|
exporter: {
|
|
31
38
|
endpoint,
|
|
32
|
-
type: (transport
|
|
39
|
+
type: this.getExporterType(transport),
|
|
33
40
|
headers: JSON.parse(exporterHeaders),
|
|
34
41
|
},
|
|
35
42
|
};
|
|
@@ -41,6 +48,16 @@ class Add extends command_1.Command {
|
|
|
41
48
|
});
|
|
42
49
|
core_1.ux.log(`successfully added drain ${drain.exporter.endpoint}`);
|
|
43
50
|
}
|
|
51
|
+
getExporterType(transport) {
|
|
52
|
+
switch (transport) {
|
|
53
|
+
case 'grpc':
|
|
54
|
+
return 'otlp';
|
|
55
|
+
case 'splunk':
|
|
56
|
+
return 'splunk';
|
|
57
|
+
default:
|
|
58
|
+
return 'otlphttp';
|
|
59
|
+
}
|
|
60
|
+
}
|
|
44
61
|
}
|
|
45
62
|
exports.default = Add;
|
|
46
63
|
Add.description = 'Add and configure a new telemetry drain. Defaults to collecting all telemetry unless otherwise specified.';
|
|
@@ -49,7 +66,8 @@ Add.flags = {
|
|
|
49
66
|
headers: command_1.flags.string({ description: 'custom headers to configure the drain in json format' }),
|
|
50
67
|
space: command_1.flags.string({ char: 's', description: 'space to add a drain to' }),
|
|
51
68
|
signals: command_1.flags.string({ default: 'all', description: 'comma-delimited list of signals to collect (traces, metrics, logs). Use "all" to collect all signals.' }),
|
|
52
|
-
transport
|
|
69
|
+
// If splunk transport is accepted as a feature, this should have options: ['http', 'grpc', 'splunk']
|
|
70
|
+
transport: command_1.flags.string({ default: 'http', description: 'transport protocol for the drain' }),
|
|
53
71
|
};
|
|
54
72
|
Add.args = {
|
|
55
73
|
endpoint: core_1.Args.string({ required: true, description: 'drain url' }),
|
package/oclif.manifest.json
CHANGED
|
@@ -2102,49 +2102,47 @@
|
|
|
2102
2102
|
"unlock.js"
|
|
2103
2103
|
]
|
|
2104
2104
|
},
|
|
2105
|
-
"
|
|
2106
|
-
"aliases": [
|
|
2105
|
+
"auth:login": {
|
|
2106
|
+
"aliases": [
|
|
2107
|
+
"login"
|
|
2108
|
+
],
|
|
2107
2109
|
"args": {},
|
|
2108
|
-
"description": "
|
|
2109
|
-
"flags": {},
|
|
2110
|
-
"hasDynamicHelp": false,
|
|
2111
|
-
"hidden": true,
|
|
2112
|
-
"hiddenAliases": [],
|
|
2113
|
-
"id": "autocomplete:create",
|
|
2114
|
-
"pluginAlias": "heroku",
|
|
2115
|
-
"pluginName": "heroku",
|
|
2116
|
-
"pluginType": "core",
|
|
2117
|
-
"strict": true,
|
|
2118
|
-
"isESM": false,
|
|
2119
|
-
"relativePath": [
|
|
2120
|
-
"lib",
|
|
2121
|
-
"commands",
|
|
2122
|
-
"autocomplete",
|
|
2123
|
-
"create.js"
|
|
2124
|
-
]
|
|
2125
|
-
},
|
|
2126
|
-
"autocomplete:doctor": {
|
|
2127
|
-
"aliases": [],
|
|
2128
|
-
"args": {
|
|
2129
|
-
"shell": {
|
|
2130
|
-
"description": "shell type",
|
|
2131
|
-
"name": "shell",
|
|
2132
|
-
"required": false
|
|
2133
|
-
}
|
|
2134
|
-
},
|
|
2135
|
-
"description": "autocomplete diagnostic",
|
|
2110
|
+
"description": "login with your Heroku credentials",
|
|
2136
2111
|
"flags": {
|
|
2137
|
-
"
|
|
2138
|
-
"description": "
|
|
2139
|
-
"name": "
|
|
2112
|
+
"browser": {
|
|
2113
|
+
"description": "browser to open SSO with (example: \"firefox\", \"safari\")",
|
|
2114
|
+
"name": "browser",
|
|
2115
|
+
"hasDynamicHelp": false,
|
|
2116
|
+
"multiple": false,
|
|
2117
|
+
"type": "option"
|
|
2118
|
+
},
|
|
2119
|
+
"sso": {
|
|
2120
|
+
"char": "s",
|
|
2121
|
+
"description": "login for enterprise users under SSO",
|
|
2122
|
+
"hidden": true,
|
|
2123
|
+
"name": "sso",
|
|
2124
|
+
"allowNo": false,
|
|
2125
|
+
"type": "boolean"
|
|
2126
|
+
},
|
|
2127
|
+
"interactive": {
|
|
2128
|
+
"char": "i",
|
|
2129
|
+
"description": "login with username/password",
|
|
2130
|
+
"name": "interactive",
|
|
2140
2131
|
"allowNo": false,
|
|
2141
2132
|
"type": "boolean"
|
|
2133
|
+
},
|
|
2134
|
+
"expires-in": {
|
|
2135
|
+
"char": "e",
|
|
2136
|
+
"description": "duration of token in seconds (default 30 days)",
|
|
2137
|
+
"name": "expires-in",
|
|
2138
|
+
"hasDynamicHelp": false,
|
|
2139
|
+
"multiple": false,
|
|
2140
|
+
"type": "option"
|
|
2142
2141
|
}
|
|
2143
2142
|
},
|
|
2144
2143
|
"hasDynamicHelp": false,
|
|
2145
|
-
"hidden": true,
|
|
2146
2144
|
"hiddenAliases": [],
|
|
2147
|
-
"id": "
|
|
2145
|
+
"id": "auth:login",
|
|
2148
2146
|
"pluginAlias": "heroku",
|
|
2149
2147
|
"pluginName": "heroku",
|
|
2150
2148
|
"pluginType": "core",
|
|
@@ -2153,38 +2151,20 @@
|
|
|
2153
2151
|
"relativePath": [
|
|
2154
2152
|
"lib",
|
|
2155
2153
|
"commands",
|
|
2156
|
-
"
|
|
2157
|
-
"
|
|
2154
|
+
"auth",
|
|
2155
|
+
"login.js"
|
|
2158
2156
|
]
|
|
2159
2157
|
},
|
|
2160
|
-
"
|
|
2161
|
-
"aliases": [
|
|
2162
|
-
|
|
2163
|
-
"shell": {
|
|
2164
|
-
"description": "shell type",
|
|
2165
|
-
"name": "shell",
|
|
2166
|
-
"required": false
|
|
2167
|
-
}
|
|
2168
|
-
},
|
|
2169
|
-
"description": "display autocomplete installation instructions",
|
|
2170
|
-
"examples": [
|
|
2171
|
-
"$ heroku autocomplete",
|
|
2172
|
-
"$ heroku autocomplete bash",
|
|
2173
|
-
"$ heroku autocomplete zsh",
|
|
2174
|
-
"$ heroku autocomplete --refresh-cache"
|
|
2158
|
+
"auth:logout": {
|
|
2159
|
+
"aliases": [
|
|
2160
|
+
"logout"
|
|
2175
2161
|
],
|
|
2176
|
-
"
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
"description": "refresh cache only (ignores displaying instructions)",
|
|
2180
|
-
"name": "refresh-cache",
|
|
2181
|
-
"allowNo": false,
|
|
2182
|
-
"type": "boolean"
|
|
2183
|
-
}
|
|
2184
|
-
},
|
|
2162
|
+
"args": {},
|
|
2163
|
+
"description": "clears local login credentials and invalidates API session",
|
|
2164
|
+
"flags": {},
|
|
2185
2165
|
"hasDynamicHelp": false,
|
|
2186
2166
|
"hiddenAliases": [],
|
|
2187
|
-
"id": "
|
|
2167
|
+
"id": "auth:logout",
|
|
2188
2168
|
"pluginAlias": "heroku",
|
|
2189
2169
|
"pluginName": "heroku",
|
|
2190
2170
|
"pluginType": "core",
|
|
@@ -2193,34 +2173,26 @@
|
|
|
2193
2173
|
"relativePath": [
|
|
2194
2174
|
"lib",
|
|
2195
2175
|
"commands",
|
|
2196
|
-
"
|
|
2197
|
-
"
|
|
2176
|
+
"auth",
|
|
2177
|
+
"logout.js"
|
|
2198
2178
|
]
|
|
2199
2179
|
},
|
|
2200
|
-
"
|
|
2180
|
+
"auth:token": {
|
|
2201
2181
|
"aliases": [],
|
|
2202
|
-
"args": {
|
|
2203
|
-
|
|
2204
|
-
"name": "completion"
|
|
2205
|
-
}
|
|
2206
|
-
},
|
|
2207
|
-
"description": "display arg or flag completion options (used internally by completion functions)",
|
|
2182
|
+
"args": {},
|
|
2183
|
+
"description": "outputs current CLI authentication token.\nBy default, the CLI auth token is only valid for 1 year. To generate a long-lived token, use heroku authorizations:create",
|
|
2208
2184
|
"flags": {
|
|
2209
|
-
"
|
|
2210
|
-
"char": "
|
|
2211
|
-
"description": "
|
|
2212
|
-
"
|
|
2213
|
-
"
|
|
2214
|
-
"
|
|
2215
|
-
"hasDynamicHelp": false,
|
|
2216
|
-
"multiple": false,
|
|
2217
|
-
"type": "option"
|
|
2185
|
+
"help": {
|
|
2186
|
+
"char": "h",
|
|
2187
|
+
"description": "Show CLI help.",
|
|
2188
|
+
"name": "help",
|
|
2189
|
+
"allowNo": false,
|
|
2190
|
+
"type": "boolean"
|
|
2218
2191
|
}
|
|
2219
2192
|
},
|
|
2220
2193
|
"hasDynamicHelp": false,
|
|
2221
|
-
"hidden": true,
|
|
2222
2194
|
"hiddenAliases": [],
|
|
2223
|
-
"id": "
|
|
2195
|
+
"id": "auth:token",
|
|
2224
2196
|
"pluginAlias": "heroku",
|
|
2225
2197
|
"pluginName": "heroku",
|
|
2226
2198
|
"pluginType": "core",
|
|
@@ -2229,25 +2201,20 @@
|
|
|
2229
2201
|
"relativePath": [
|
|
2230
2202
|
"lib",
|
|
2231
2203
|
"commands",
|
|
2232
|
-
"
|
|
2233
|
-
"
|
|
2204
|
+
"auth",
|
|
2205
|
+
"token.js"
|
|
2234
2206
|
]
|
|
2235
2207
|
},
|
|
2236
|
-
"
|
|
2237
|
-
"aliases": [
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
"required": false
|
|
2243
|
-
}
|
|
2244
|
-
},
|
|
2245
|
-
"description": "display autocomplete setup script for shell",
|
|
2208
|
+
"auth:whoami": {
|
|
2209
|
+
"aliases": [
|
|
2210
|
+
"whoami"
|
|
2211
|
+
],
|
|
2212
|
+
"args": {},
|
|
2213
|
+
"description": "display the current logged in user",
|
|
2246
2214
|
"flags": {},
|
|
2247
2215
|
"hasDynamicHelp": false,
|
|
2248
|
-
"hidden": true,
|
|
2249
2216
|
"hiddenAliases": [],
|
|
2250
|
-
"id": "
|
|
2217
|
+
"id": "auth:whoami",
|
|
2251
2218
|
"pluginAlias": "heroku",
|
|
2252
2219
|
"pluginName": "heroku",
|
|
2253
2220
|
"pluginType": "core",
|
|
@@ -2256,8 +2223,8 @@
|
|
|
2256
2223
|
"relativePath": [
|
|
2257
2224
|
"lib",
|
|
2258
2225
|
"commands",
|
|
2259
|
-
"
|
|
2260
|
-
"
|
|
2226
|
+
"auth",
|
|
2227
|
+
"whoami.js"
|
|
2261
2228
|
]
|
|
2262
2229
|
},
|
|
2263
2230
|
"authorizations:create": {
|
|
@@ -2500,6 +2467,164 @@
|
|
|
2500
2467
|
"update.js"
|
|
2501
2468
|
]
|
|
2502
2469
|
},
|
|
2470
|
+
"autocomplete:create": {
|
|
2471
|
+
"aliases": [],
|
|
2472
|
+
"args": {},
|
|
2473
|
+
"description": "create autocomplete setup scripts and completion functions",
|
|
2474
|
+
"flags": {},
|
|
2475
|
+
"hasDynamicHelp": false,
|
|
2476
|
+
"hidden": true,
|
|
2477
|
+
"hiddenAliases": [],
|
|
2478
|
+
"id": "autocomplete:create",
|
|
2479
|
+
"pluginAlias": "heroku",
|
|
2480
|
+
"pluginName": "heroku",
|
|
2481
|
+
"pluginType": "core",
|
|
2482
|
+
"strict": true,
|
|
2483
|
+
"isESM": false,
|
|
2484
|
+
"relativePath": [
|
|
2485
|
+
"lib",
|
|
2486
|
+
"commands",
|
|
2487
|
+
"autocomplete",
|
|
2488
|
+
"create.js"
|
|
2489
|
+
]
|
|
2490
|
+
},
|
|
2491
|
+
"autocomplete:doctor": {
|
|
2492
|
+
"aliases": [],
|
|
2493
|
+
"args": {
|
|
2494
|
+
"shell": {
|
|
2495
|
+
"description": "shell type",
|
|
2496
|
+
"name": "shell",
|
|
2497
|
+
"required": false
|
|
2498
|
+
}
|
|
2499
|
+
},
|
|
2500
|
+
"description": "autocomplete diagnostic",
|
|
2501
|
+
"flags": {
|
|
2502
|
+
"verbose": {
|
|
2503
|
+
"description": "list completable commands",
|
|
2504
|
+
"name": "verbose",
|
|
2505
|
+
"allowNo": false,
|
|
2506
|
+
"type": "boolean"
|
|
2507
|
+
}
|
|
2508
|
+
},
|
|
2509
|
+
"hasDynamicHelp": false,
|
|
2510
|
+
"hidden": true,
|
|
2511
|
+
"hiddenAliases": [],
|
|
2512
|
+
"id": "autocomplete:doctor",
|
|
2513
|
+
"pluginAlias": "heroku",
|
|
2514
|
+
"pluginName": "heroku",
|
|
2515
|
+
"pluginType": "core",
|
|
2516
|
+
"strict": true,
|
|
2517
|
+
"isESM": false,
|
|
2518
|
+
"relativePath": [
|
|
2519
|
+
"lib",
|
|
2520
|
+
"commands",
|
|
2521
|
+
"autocomplete",
|
|
2522
|
+
"doctor.js"
|
|
2523
|
+
]
|
|
2524
|
+
},
|
|
2525
|
+
"autocomplete": {
|
|
2526
|
+
"aliases": [],
|
|
2527
|
+
"args": {
|
|
2528
|
+
"shell": {
|
|
2529
|
+
"description": "shell type",
|
|
2530
|
+
"name": "shell",
|
|
2531
|
+
"required": false
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
"description": "display autocomplete installation instructions",
|
|
2535
|
+
"examples": [
|
|
2536
|
+
"$ heroku autocomplete",
|
|
2537
|
+
"$ heroku autocomplete bash",
|
|
2538
|
+
"$ heroku autocomplete zsh",
|
|
2539
|
+
"$ heroku autocomplete --refresh-cache"
|
|
2540
|
+
],
|
|
2541
|
+
"flags": {
|
|
2542
|
+
"refresh-cache": {
|
|
2543
|
+
"char": "r",
|
|
2544
|
+
"description": "refresh cache only (ignores displaying instructions)",
|
|
2545
|
+
"name": "refresh-cache",
|
|
2546
|
+
"allowNo": false,
|
|
2547
|
+
"type": "boolean"
|
|
2548
|
+
}
|
|
2549
|
+
},
|
|
2550
|
+
"hasDynamicHelp": false,
|
|
2551
|
+
"hiddenAliases": [],
|
|
2552
|
+
"id": "autocomplete",
|
|
2553
|
+
"pluginAlias": "heroku",
|
|
2554
|
+
"pluginName": "heroku",
|
|
2555
|
+
"pluginType": "core",
|
|
2556
|
+
"strict": true,
|
|
2557
|
+
"isESM": false,
|
|
2558
|
+
"relativePath": [
|
|
2559
|
+
"lib",
|
|
2560
|
+
"commands",
|
|
2561
|
+
"autocomplete",
|
|
2562
|
+
"index.js"
|
|
2563
|
+
]
|
|
2564
|
+
},
|
|
2565
|
+
"autocomplete:options": {
|
|
2566
|
+
"aliases": [],
|
|
2567
|
+
"args": {
|
|
2568
|
+
"completion": {
|
|
2569
|
+
"name": "completion"
|
|
2570
|
+
}
|
|
2571
|
+
},
|
|
2572
|
+
"description": "display arg or flag completion options (used internally by completion functions)",
|
|
2573
|
+
"flags": {
|
|
2574
|
+
"app": {
|
|
2575
|
+
"char": "a",
|
|
2576
|
+
"description": "app to run command against",
|
|
2577
|
+
"hidden": true,
|
|
2578
|
+
"name": "app",
|
|
2579
|
+
"required": false,
|
|
2580
|
+
"hasDynamicHelp": false,
|
|
2581
|
+
"multiple": false,
|
|
2582
|
+
"type": "option"
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
"hasDynamicHelp": false,
|
|
2586
|
+
"hidden": true,
|
|
2587
|
+
"hiddenAliases": [],
|
|
2588
|
+
"id": "autocomplete:options",
|
|
2589
|
+
"pluginAlias": "heroku",
|
|
2590
|
+
"pluginName": "heroku",
|
|
2591
|
+
"pluginType": "core",
|
|
2592
|
+
"strict": true,
|
|
2593
|
+
"isESM": false,
|
|
2594
|
+
"relativePath": [
|
|
2595
|
+
"lib",
|
|
2596
|
+
"commands",
|
|
2597
|
+
"autocomplete",
|
|
2598
|
+
"options.js"
|
|
2599
|
+
]
|
|
2600
|
+
},
|
|
2601
|
+
"autocomplete:script": {
|
|
2602
|
+
"aliases": [],
|
|
2603
|
+
"args": {
|
|
2604
|
+
"shell": {
|
|
2605
|
+
"description": "shell type",
|
|
2606
|
+
"name": "shell",
|
|
2607
|
+
"required": false
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"description": "display autocomplete setup script for shell",
|
|
2611
|
+
"flags": {},
|
|
2612
|
+
"hasDynamicHelp": false,
|
|
2613
|
+
"hidden": true,
|
|
2614
|
+
"hiddenAliases": [],
|
|
2615
|
+
"id": "autocomplete:script",
|
|
2616
|
+
"pluginAlias": "heroku",
|
|
2617
|
+
"pluginName": "heroku",
|
|
2618
|
+
"pluginType": "core",
|
|
2619
|
+
"strict": true,
|
|
2620
|
+
"isESM": false,
|
|
2621
|
+
"relativePath": [
|
|
2622
|
+
"lib",
|
|
2623
|
+
"commands",
|
|
2624
|
+
"autocomplete",
|
|
2625
|
+
"script.js"
|
|
2626
|
+
]
|
|
2627
|
+
},
|
|
2503
2628
|
"buildpacks:add": {
|
|
2504
2629
|
"aliases": [],
|
|
2505
2630
|
"args": {
|
|
@@ -2829,131 +2954,6 @@
|
|
|
2829
2954
|
"versions.js"
|
|
2830
2955
|
]
|
|
2831
2956
|
},
|
|
2832
|
-
"auth:login": {
|
|
2833
|
-
"aliases": [
|
|
2834
|
-
"login"
|
|
2835
|
-
],
|
|
2836
|
-
"args": {},
|
|
2837
|
-
"description": "login with your Heroku credentials",
|
|
2838
|
-
"flags": {
|
|
2839
|
-
"browser": {
|
|
2840
|
-
"description": "browser to open SSO with (example: \"firefox\", \"safari\")",
|
|
2841
|
-
"name": "browser",
|
|
2842
|
-
"hasDynamicHelp": false,
|
|
2843
|
-
"multiple": false,
|
|
2844
|
-
"type": "option"
|
|
2845
|
-
},
|
|
2846
|
-
"sso": {
|
|
2847
|
-
"char": "s",
|
|
2848
|
-
"description": "login for enterprise users under SSO",
|
|
2849
|
-
"hidden": true,
|
|
2850
|
-
"name": "sso",
|
|
2851
|
-
"allowNo": false,
|
|
2852
|
-
"type": "boolean"
|
|
2853
|
-
},
|
|
2854
|
-
"interactive": {
|
|
2855
|
-
"char": "i",
|
|
2856
|
-
"description": "login with username/password",
|
|
2857
|
-
"name": "interactive",
|
|
2858
|
-
"allowNo": false,
|
|
2859
|
-
"type": "boolean"
|
|
2860
|
-
},
|
|
2861
|
-
"expires-in": {
|
|
2862
|
-
"char": "e",
|
|
2863
|
-
"description": "duration of token in seconds (default 30 days)",
|
|
2864
|
-
"name": "expires-in",
|
|
2865
|
-
"hasDynamicHelp": false,
|
|
2866
|
-
"multiple": false,
|
|
2867
|
-
"type": "option"
|
|
2868
|
-
}
|
|
2869
|
-
},
|
|
2870
|
-
"hasDynamicHelp": false,
|
|
2871
|
-
"hiddenAliases": [],
|
|
2872
|
-
"id": "auth:login",
|
|
2873
|
-
"pluginAlias": "heroku",
|
|
2874
|
-
"pluginName": "heroku",
|
|
2875
|
-
"pluginType": "core",
|
|
2876
|
-
"strict": true,
|
|
2877
|
-
"isESM": false,
|
|
2878
|
-
"relativePath": [
|
|
2879
|
-
"lib",
|
|
2880
|
-
"commands",
|
|
2881
|
-
"auth",
|
|
2882
|
-
"login.js"
|
|
2883
|
-
]
|
|
2884
|
-
},
|
|
2885
|
-
"auth:logout": {
|
|
2886
|
-
"aliases": [
|
|
2887
|
-
"logout"
|
|
2888
|
-
],
|
|
2889
|
-
"args": {},
|
|
2890
|
-
"description": "clears local login credentials and invalidates API session",
|
|
2891
|
-
"flags": {},
|
|
2892
|
-
"hasDynamicHelp": false,
|
|
2893
|
-
"hiddenAliases": [],
|
|
2894
|
-
"id": "auth:logout",
|
|
2895
|
-
"pluginAlias": "heroku",
|
|
2896
|
-
"pluginName": "heroku",
|
|
2897
|
-
"pluginType": "core",
|
|
2898
|
-
"strict": true,
|
|
2899
|
-
"isESM": false,
|
|
2900
|
-
"relativePath": [
|
|
2901
|
-
"lib",
|
|
2902
|
-
"commands",
|
|
2903
|
-
"auth",
|
|
2904
|
-
"logout.js"
|
|
2905
|
-
]
|
|
2906
|
-
},
|
|
2907
|
-
"auth:token": {
|
|
2908
|
-
"aliases": [],
|
|
2909
|
-
"args": {},
|
|
2910
|
-
"description": "outputs current CLI authentication token.\nBy default, the CLI auth token is only valid for 1 year. To generate a long-lived token, use heroku authorizations:create",
|
|
2911
|
-
"flags": {
|
|
2912
|
-
"help": {
|
|
2913
|
-
"char": "h",
|
|
2914
|
-
"description": "Show CLI help.",
|
|
2915
|
-
"name": "help",
|
|
2916
|
-
"allowNo": false,
|
|
2917
|
-
"type": "boolean"
|
|
2918
|
-
}
|
|
2919
|
-
},
|
|
2920
|
-
"hasDynamicHelp": false,
|
|
2921
|
-
"hiddenAliases": [],
|
|
2922
|
-
"id": "auth:token",
|
|
2923
|
-
"pluginAlias": "heroku",
|
|
2924
|
-
"pluginName": "heroku",
|
|
2925
|
-
"pluginType": "core",
|
|
2926
|
-
"strict": true,
|
|
2927
|
-
"isESM": false,
|
|
2928
|
-
"relativePath": [
|
|
2929
|
-
"lib",
|
|
2930
|
-
"commands",
|
|
2931
|
-
"auth",
|
|
2932
|
-
"token.js"
|
|
2933
|
-
]
|
|
2934
|
-
},
|
|
2935
|
-
"auth:whoami": {
|
|
2936
|
-
"aliases": [
|
|
2937
|
-
"whoami"
|
|
2938
|
-
],
|
|
2939
|
-
"args": {},
|
|
2940
|
-
"description": "display the current logged in user",
|
|
2941
|
-
"flags": {},
|
|
2942
|
-
"hasDynamicHelp": false,
|
|
2943
|
-
"hiddenAliases": [],
|
|
2944
|
-
"id": "auth:whoami",
|
|
2945
|
-
"pluginAlias": "heroku",
|
|
2946
|
-
"pluginName": "heroku",
|
|
2947
|
-
"pluginType": "core",
|
|
2948
|
-
"strict": true,
|
|
2949
|
-
"isESM": false,
|
|
2950
|
-
"relativePath": [
|
|
2951
|
-
"lib",
|
|
2952
|
-
"commands",
|
|
2953
|
-
"auth",
|
|
2954
|
-
"whoami.js"
|
|
2955
|
-
]
|
|
2956
|
-
},
|
|
2957
2957
|
"certs:add": {
|
|
2958
2958
|
"aliases": [],
|
|
2959
2959
|
"args": {
|
|
@@ -10232,10 +10232,6 @@
|
|
|
10232
10232
|
"default": "http",
|
|
10233
10233
|
"hasDynamicHelp": false,
|
|
10234
10234
|
"multiple": false,
|
|
10235
|
-
"options": [
|
|
10236
|
-
"http",
|
|
10237
|
-
"grpc"
|
|
10238
|
-
],
|
|
10239
10235
|
"type": "option"
|
|
10240
10236
|
}
|
|
10241
10237
|
},
|
|
@@ -15019,5 +15015,5 @@
|
|
|
15019
15015
|
]
|
|
15020
15016
|
}
|
|
15021
15017
|
},
|
|
15022
|
-
"version": "10.
|
|
15018
|
+
"version": "10.15.0"
|
|
15023
15019
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.15.0",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -398,5 +398,5 @@
|
|
|
398
398
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
399
399
|
},
|
|
400
400
|
"types": "lib/index.d.ts",
|
|
401
|
-
"gitHead": "
|
|
401
|
+
"gitHead": "4bb523cfac62a21ed79b4cbd1016d1699827ae76"
|
|
402
402
|
}
|