heroku 10.11.0 → 10.12.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/pg/settings/{explain-data-connector-details.d.ts → data-connector-details-logs.d.ts} +2 -1
- package/lib/commands/pg/settings/{explain-data-connector-details.js → data-connector-details-logs.js} +7 -6
- package/lib/lib/pg/types.d.ts +1 -1
- package/oclif.manifest.json +247 -245
- package/package.json +2 -2
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type BooleanAsString, PGSettingsCommand } from '../../../lib/pg/setter';
|
|
2
2
|
import type { Setting, SettingKey } from '../../../lib/pg/types';
|
|
3
|
-
export default class
|
|
3
|
+
export default class DataConnectorDetailsLogs extends PGSettingsCommand {
|
|
4
|
+
static aliases: string[];
|
|
4
5
|
static description: string;
|
|
5
6
|
static flags: {
|
|
6
7
|
app: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
|
|
@@ -5,10 +5,10 @@ const core_1 = require("@oclif/core");
|
|
|
5
5
|
const tsheredoc_1 = require("tsheredoc");
|
|
6
6
|
const setter_1 = require("../../../lib/pg/setter");
|
|
7
7
|
const nls_1 = require("../../../nls");
|
|
8
|
-
class
|
|
8
|
+
class DataConnectorDetailsLogs extends setter_1.PGSettingsCommand {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
|
-
this.settingKey = '
|
|
11
|
+
this.settingKey = 'data_connector_details_logs';
|
|
12
12
|
}
|
|
13
13
|
convertValue(val) {
|
|
14
14
|
return (0, setter_1.booleanConverter)(val);
|
|
@@ -20,15 +20,16 @@ class ExplainDataConnectorDetails extends setter_1.PGSettingsCommand {
|
|
|
20
20
|
return 'Data replication slot details will no longer be logged.';
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
exports.default =
|
|
24
|
-
|
|
23
|
+
exports.default = DataConnectorDetailsLogs;
|
|
24
|
+
DataConnectorDetailsLogs.aliases = ['pg:settings:explain-data-connector-details'];
|
|
25
|
+
DataConnectorDetailsLogs.description = (0, tsheredoc_1.default)(`
|
|
25
26
|
displays stats on replication slots on your database, the default value is "off"
|
|
26
27
|
`);
|
|
27
|
-
|
|
28
|
+
DataConnectorDetailsLogs.flags = {
|
|
28
29
|
app: command_1.flags.app({ required: true }),
|
|
29
30
|
remote: command_1.flags.remote(),
|
|
30
31
|
};
|
|
31
|
-
|
|
32
|
+
DataConnectorDetailsLogs.args = {
|
|
32
33
|
database: core_1.Args.string({ description: `${(0, nls_1.nls)('pg:database:arg:description')} ${(0, nls_1.nls)('pg:database:arg:description:default:suffix')}` }),
|
|
33
34
|
value: core_1.Args.string({ description: 'boolean indicating if data replication slot details get logged' }),
|
|
34
35
|
};
|
package/lib/lib/pg/types.d.ts
CHANGED
|
@@ -170,7 +170,7 @@ export declare type PgDatabaseConfig = {
|
|
|
170
170
|
value: boolean;
|
|
171
171
|
};
|
|
172
172
|
};
|
|
173
|
-
export declare type SettingKey = 'log_lock_waits' | 'log_connections' | 'log_min_duration_statement' | 'log_min_error_statement' | 'log_statement' | 'track_functions' | 'pgbouncer_max_client_conn' | 'pg_bouncer_max_db_conns' | 'pg_bouncer_default_pool_size' | '
|
|
173
|
+
export declare type SettingKey = 'log_lock_waits' | 'log_connections' | 'log_min_duration_statement' | 'log_min_error_statement' | 'log_statement' | 'track_functions' | 'pgbouncer_max_client_conn' | 'pg_bouncer_max_db_conns' | 'pg_bouncer_default_pool_size' | 'data_connector_details_logs' | 'auto_explain' | 'auto_explain.log_min_duration' | 'auto_explain.log_analyze' | 'auto_explain.log_triggers' | 'auto_explain.log_buffers' | 'auto_explain.log_verbose' | 'auto_explain.log_nested_statements' | 'auto_explain.log_format';
|
|
174
174
|
export declare type Setting<T> = {
|
|
175
175
|
value: T;
|
|
176
176
|
values: Record<string, string>;
|
package/oclif.manifest.json
CHANGED
|
@@ -2227,246 +2227,6 @@
|
|
|
2227
2227
|
"whoami.js"
|
|
2228
2228
|
]
|
|
2229
2229
|
},
|
|
2230
|
-
"authorizations:create": {
|
|
2231
|
-
"aliases": [],
|
|
2232
|
-
"args": {},
|
|
2233
|
-
"description": "create a new OAuth authorization",
|
|
2234
|
-
"examples": [
|
|
2235
|
-
"$ heroku authorizations:create --description \"For use with Anvil\""
|
|
2236
|
-
],
|
|
2237
|
-
"flags": {
|
|
2238
|
-
"description": {
|
|
2239
|
-
"char": "d",
|
|
2240
|
-
"description": "set a custom authorization",
|
|
2241
|
-
"name": "description",
|
|
2242
|
-
"hasDynamicHelp": false,
|
|
2243
|
-
"multiple": false,
|
|
2244
|
-
"type": "option"
|
|
2245
|
-
},
|
|
2246
|
-
"short": {
|
|
2247
|
-
"char": "S",
|
|
2248
|
-
"description": "only output token",
|
|
2249
|
-
"name": "short",
|
|
2250
|
-
"allowNo": false,
|
|
2251
|
-
"type": "boolean"
|
|
2252
|
-
},
|
|
2253
|
-
"json": {
|
|
2254
|
-
"char": "j",
|
|
2255
|
-
"description": "output in json format",
|
|
2256
|
-
"name": "json",
|
|
2257
|
-
"allowNo": false,
|
|
2258
|
-
"type": "boolean"
|
|
2259
|
-
},
|
|
2260
|
-
"scope": {
|
|
2261
|
-
"char": "s",
|
|
2262
|
-
"description": "set custom OAuth scopes",
|
|
2263
|
-
"name": "scope",
|
|
2264
|
-
"hasDynamicHelp": false,
|
|
2265
|
-
"multiple": false,
|
|
2266
|
-
"type": "option"
|
|
2267
|
-
},
|
|
2268
|
-
"expires-in": {
|
|
2269
|
-
"char": "e",
|
|
2270
|
-
"description": "set expiration in seconds (default no expiration)",
|
|
2271
|
-
"name": "expires-in",
|
|
2272
|
-
"hasDynamicHelp": false,
|
|
2273
|
-
"multiple": false,
|
|
2274
|
-
"type": "option"
|
|
2275
|
-
}
|
|
2276
|
-
},
|
|
2277
|
-
"hasDynamicHelp": false,
|
|
2278
|
-
"hiddenAliases": [],
|
|
2279
|
-
"id": "authorizations:create",
|
|
2280
|
-
"pluginAlias": "heroku",
|
|
2281
|
-
"pluginName": "heroku",
|
|
2282
|
-
"pluginType": "core",
|
|
2283
|
-
"strict": true,
|
|
2284
|
-
"isESM": false,
|
|
2285
|
-
"relativePath": [
|
|
2286
|
-
"lib",
|
|
2287
|
-
"commands",
|
|
2288
|
-
"authorizations",
|
|
2289
|
-
"create.js"
|
|
2290
|
-
]
|
|
2291
|
-
},
|
|
2292
|
-
"authorizations": {
|
|
2293
|
-
"aliases": [],
|
|
2294
|
-
"args": {},
|
|
2295
|
-
"description": "list OAuth authorizations",
|
|
2296
|
-
"examples": [
|
|
2297
|
-
"$ heroku authorizations"
|
|
2298
|
-
],
|
|
2299
|
-
"flags": {
|
|
2300
|
-
"json": {
|
|
2301
|
-
"char": "j",
|
|
2302
|
-
"description": "output in json format",
|
|
2303
|
-
"name": "json",
|
|
2304
|
-
"allowNo": false,
|
|
2305
|
-
"type": "boolean"
|
|
2306
|
-
}
|
|
2307
|
-
},
|
|
2308
|
-
"hasDynamicHelp": false,
|
|
2309
|
-
"hiddenAliases": [],
|
|
2310
|
-
"id": "authorizations",
|
|
2311
|
-
"pluginAlias": "heroku",
|
|
2312
|
-
"pluginName": "heroku",
|
|
2313
|
-
"pluginType": "core",
|
|
2314
|
-
"strict": true,
|
|
2315
|
-
"isESM": false,
|
|
2316
|
-
"relativePath": [
|
|
2317
|
-
"lib",
|
|
2318
|
-
"commands",
|
|
2319
|
-
"authorizations",
|
|
2320
|
-
"index.js"
|
|
2321
|
-
]
|
|
2322
|
-
},
|
|
2323
|
-
"authorizations:info": {
|
|
2324
|
-
"aliases": [],
|
|
2325
|
-
"args": {
|
|
2326
|
-
"id": {
|
|
2327
|
-
"description": "ID of the authorization",
|
|
2328
|
-
"name": "id",
|
|
2329
|
-
"required": true
|
|
2330
|
-
}
|
|
2331
|
-
},
|
|
2332
|
-
"description": "show an existing OAuth authorization",
|
|
2333
|
-
"flags": {
|
|
2334
|
-
"json": {
|
|
2335
|
-
"char": "j",
|
|
2336
|
-
"description": "output in json format",
|
|
2337
|
-
"name": "json",
|
|
2338
|
-
"allowNo": false,
|
|
2339
|
-
"type": "boolean"
|
|
2340
|
-
}
|
|
2341
|
-
},
|
|
2342
|
-
"hasDynamicHelp": false,
|
|
2343
|
-
"hiddenAliases": [],
|
|
2344
|
-
"id": "authorizations:info",
|
|
2345
|
-
"pluginAlias": "heroku",
|
|
2346
|
-
"pluginName": "heroku",
|
|
2347
|
-
"pluginType": "core",
|
|
2348
|
-
"strict": true,
|
|
2349
|
-
"isESM": false,
|
|
2350
|
-
"relativePath": [
|
|
2351
|
-
"lib",
|
|
2352
|
-
"commands",
|
|
2353
|
-
"authorizations",
|
|
2354
|
-
"info.js"
|
|
2355
|
-
]
|
|
2356
|
-
},
|
|
2357
|
-
"authorizations:revoke": {
|
|
2358
|
-
"aliases": [
|
|
2359
|
-
"authorizations:revoke",
|
|
2360
|
-
"authorizations:destroy"
|
|
2361
|
-
],
|
|
2362
|
-
"args": {
|
|
2363
|
-
"id": {
|
|
2364
|
-
"description": "ID of the authorization",
|
|
2365
|
-
"name": "id",
|
|
2366
|
-
"required": true
|
|
2367
|
-
}
|
|
2368
|
-
},
|
|
2369
|
-
"description": "revoke OAuth authorization",
|
|
2370
|
-
"examples": [
|
|
2371
|
-
"$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
|
|
2372
|
-
],
|
|
2373
|
-
"flags": {},
|
|
2374
|
-
"hasDynamicHelp": false,
|
|
2375
|
-
"hiddenAliases": [],
|
|
2376
|
-
"id": "authorizations:revoke",
|
|
2377
|
-
"pluginAlias": "heroku",
|
|
2378
|
-
"pluginName": "heroku",
|
|
2379
|
-
"pluginType": "core",
|
|
2380
|
-
"strict": true,
|
|
2381
|
-
"isESM": false,
|
|
2382
|
-
"relativePath": [
|
|
2383
|
-
"lib",
|
|
2384
|
-
"commands",
|
|
2385
|
-
"authorizations",
|
|
2386
|
-
"revoke.js"
|
|
2387
|
-
]
|
|
2388
|
-
},
|
|
2389
|
-
"authorizations:rotate": {
|
|
2390
|
-
"aliases": [],
|
|
2391
|
-
"args": {
|
|
2392
|
-
"id": {
|
|
2393
|
-
"description": "ID of the authorization",
|
|
2394
|
-
"name": "id",
|
|
2395
|
-
"required": true
|
|
2396
|
-
}
|
|
2397
|
-
},
|
|
2398
|
-
"description": "updates an OAuth authorization token",
|
|
2399
|
-
"flags": {},
|
|
2400
|
-
"hasDynamicHelp": false,
|
|
2401
|
-
"hiddenAliases": [],
|
|
2402
|
-
"id": "authorizations:rotate",
|
|
2403
|
-
"pluginAlias": "heroku",
|
|
2404
|
-
"pluginName": "heroku",
|
|
2405
|
-
"pluginType": "core",
|
|
2406
|
-
"strict": true,
|
|
2407
|
-
"isESM": false,
|
|
2408
|
-
"relativePath": [
|
|
2409
|
-
"lib",
|
|
2410
|
-
"commands",
|
|
2411
|
-
"authorizations",
|
|
2412
|
-
"rotate.js"
|
|
2413
|
-
]
|
|
2414
|
-
},
|
|
2415
|
-
"authorizations:update": {
|
|
2416
|
-
"aliases": [],
|
|
2417
|
-
"args": {
|
|
2418
|
-
"id": {
|
|
2419
|
-
"description": "ID of the authorization",
|
|
2420
|
-
"name": "id",
|
|
2421
|
-
"required": true
|
|
2422
|
-
}
|
|
2423
|
-
},
|
|
2424
|
-
"description": "updates an OAuth authorization",
|
|
2425
|
-
"flags": {
|
|
2426
|
-
"description": {
|
|
2427
|
-
"char": "d",
|
|
2428
|
-
"description": "set a custom authorization description",
|
|
2429
|
-
"name": "description",
|
|
2430
|
-
"hasDynamicHelp": false,
|
|
2431
|
-
"multiple": false,
|
|
2432
|
-
"type": "option"
|
|
2433
|
-
},
|
|
2434
|
-
"client-id": {
|
|
2435
|
-
"dependsOn": [
|
|
2436
|
-
"client-secret"
|
|
2437
|
-
],
|
|
2438
|
-
"description": "identifier of OAuth client to set",
|
|
2439
|
-
"name": "client-id",
|
|
2440
|
-
"hasDynamicHelp": false,
|
|
2441
|
-
"multiple": false,
|
|
2442
|
-
"type": "option"
|
|
2443
|
-
},
|
|
2444
|
-
"client-secret": {
|
|
2445
|
-
"dependsOn": [
|
|
2446
|
-
"client-id"
|
|
2447
|
-
],
|
|
2448
|
-
"description": "secret of OAuth client to set",
|
|
2449
|
-
"name": "client-secret",
|
|
2450
|
-
"hasDynamicHelp": false,
|
|
2451
|
-
"multiple": false,
|
|
2452
|
-
"type": "option"
|
|
2453
|
-
}
|
|
2454
|
-
},
|
|
2455
|
-
"hasDynamicHelp": false,
|
|
2456
|
-
"hiddenAliases": [],
|
|
2457
|
-
"id": "authorizations:update",
|
|
2458
|
-
"pluginAlias": "heroku",
|
|
2459
|
-
"pluginName": "heroku",
|
|
2460
|
-
"pluginType": "core",
|
|
2461
|
-
"strict": true,
|
|
2462
|
-
"isESM": false,
|
|
2463
|
-
"relativePath": [
|
|
2464
|
-
"lib",
|
|
2465
|
-
"commands",
|
|
2466
|
-
"authorizations",
|
|
2467
|
-
"update.js"
|
|
2468
|
-
]
|
|
2469
|
-
},
|
|
2470
2230
|
"autocomplete:create": {
|
|
2471
2231
|
"aliases": [],
|
|
2472
2232
|
"args": {},
|
|
@@ -2954,6 +2714,246 @@
|
|
|
2954
2714
|
"versions.js"
|
|
2955
2715
|
]
|
|
2956
2716
|
},
|
|
2717
|
+
"authorizations:create": {
|
|
2718
|
+
"aliases": [],
|
|
2719
|
+
"args": {},
|
|
2720
|
+
"description": "create a new OAuth authorization",
|
|
2721
|
+
"examples": [
|
|
2722
|
+
"$ heroku authorizations:create --description \"For use with Anvil\""
|
|
2723
|
+
],
|
|
2724
|
+
"flags": {
|
|
2725
|
+
"description": {
|
|
2726
|
+
"char": "d",
|
|
2727
|
+
"description": "set a custom authorization",
|
|
2728
|
+
"name": "description",
|
|
2729
|
+
"hasDynamicHelp": false,
|
|
2730
|
+
"multiple": false,
|
|
2731
|
+
"type": "option"
|
|
2732
|
+
},
|
|
2733
|
+
"short": {
|
|
2734
|
+
"char": "S",
|
|
2735
|
+
"description": "only output token",
|
|
2736
|
+
"name": "short",
|
|
2737
|
+
"allowNo": false,
|
|
2738
|
+
"type": "boolean"
|
|
2739
|
+
},
|
|
2740
|
+
"json": {
|
|
2741
|
+
"char": "j",
|
|
2742
|
+
"description": "output in json format",
|
|
2743
|
+
"name": "json",
|
|
2744
|
+
"allowNo": false,
|
|
2745
|
+
"type": "boolean"
|
|
2746
|
+
},
|
|
2747
|
+
"scope": {
|
|
2748
|
+
"char": "s",
|
|
2749
|
+
"description": "set custom OAuth scopes",
|
|
2750
|
+
"name": "scope",
|
|
2751
|
+
"hasDynamicHelp": false,
|
|
2752
|
+
"multiple": false,
|
|
2753
|
+
"type": "option"
|
|
2754
|
+
},
|
|
2755
|
+
"expires-in": {
|
|
2756
|
+
"char": "e",
|
|
2757
|
+
"description": "set expiration in seconds (default no expiration)",
|
|
2758
|
+
"name": "expires-in",
|
|
2759
|
+
"hasDynamicHelp": false,
|
|
2760
|
+
"multiple": false,
|
|
2761
|
+
"type": "option"
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
"hasDynamicHelp": false,
|
|
2765
|
+
"hiddenAliases": [],
|
|
2766
|
+
"id": "authorizations:create",
|
|
2767
|
+
"pluginAlias": "heroku",
|
|
2768
|
+
"pluginName": "heroku",
|
|
2769
|
+
"pluginType": "core",
|
|
2770
|
+
"strict": true,
|
|
2771
|
+
"isESM": false,
|
|
2772
|
+
"relativePath": [
|
|
2773
|
+
"lib",
|
|
2774
|
+
"commands",
|
|
2775
|
+
"authorizations",
|
|
2776
|
+
"create.js"
|
|
2777
|
+
]
|
|
2778
|
+
},
|
|
2779
|
+
"authorizations": {
|
|
2780
|
+
"aliases": [],
|
|
2781
|
+
"args": {},
|
|
2782
|
+
"description": "list OAuth authorizations",
|
|
2783
|
+
"examples": [
|
|
2784
|
+
"$ heroku authorizations"
|
|
2785
|
+
],
|
|
2786
|
+
"flags": {
|
|
2787
|
+
"json": {
|
|
2788
|
+
"char": "j",
|
|
2789
|
+
"description": "output in json format",
|
|
2790
|
+
"name": "json",
|
|
2791
|
+
"allowNo": false,
|
|
2792
|
+
"type": "boolean"
|
|
2793
|
+
}
|
|
2794
|
+
},
|
|
2795
|
+
"hasDynamicHelp": false,
|
|
2796
|
+
"hiddenAliases": [],
|
|
2797
|
+
"id": "authorizations",
|
|
2798
|
+
"pluginAlias": "heroku",
|
|
2799
|
+
"pluginName": "heroku",
|
|
2800
|
+
"pluginType": "core",
|
|
2801
|
+
"strict": true,
|
|
2802
|
+
"isESM": false,
|
|
2803
|
+
"relativePath": [
|
|
2804
|
+
"lib",
|
|
2805
|
+
"commands",
|
|
2806
|
+
"authorizations",
|
|
2807
|
+
"index.js"
|
|
2808
|
+
]
|
|
2809
|
+
},
|
|
2810
|
+
"authorizations:info": {
|
|
2811
|
+
"aliases": [],
|
|
2812
|
+
"args": {
|
|
2813
|
+
"id": {
|
|
2814
|
+
"description": "ID of the authorization",
|
|
2815
|
+
"name": "id",
|
|
2816
|
+
"required": true
|
|
2817
|
+
}
|
|
2818
|
+
},
|
|
2819
|
+
"description": "show an existing OAuth authorization",
|
|
2820
|
+
"flags": {
|
|
2821
|
+
"json": {
|
|
2822
|
+
"char": "j",
|
|
2823
|
+
"description": "output in json format",
|
|
2824
|
+
"name": "json",
|
|
2825
|
+
"allowNo": false,
|
|
2826
|
+
"type": "boolean"
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2829
|
+
"hasDynamicHelp": false,
|
|
2830
|
+
"hiddenAliases": [],
|
|
2831
|
+
"id": "authorizations:info",
|
|
2832
|
+
"pluginAlias": "heroku",
|
|
2833
|
+
"pluginName": "heroku",
|
|
2834
|
+
"pluginType": "core",
|
|
2835
|
+
"strict": true,
|
|
2836
|
+
"isESM": false,
|
|
2837
|
+
"relativePath": [
|
|
2838
|
+
"lib",
|
|
2839
|
+
"commands",
|
|
2840
|
+
"authorizations",
|
|
2841
|
+
"info.js"
|
|
2842
|
+
]
|
|
2843
|
+
},
|
|
2844
|
+
"authorizations:revoke": {
|
|
2845
|
+
"aliases": [
|
|
2846
|
+
"authorizations:revoke",
|
|
2847
|
+
"authorizations:destroy"
|
|
2848
|
+
],
|
|
2849
|
+
"args": {
|
|
2850
|
+
"id": {
|
|
2851
|
+
"description": "ID of the authorization",
|
|
2852
|
+
"name": "id",
|
|
2853
|
+
"required": true
|
|
2854
|
+
}
|
|
2855
|
+
},
|
|
2856
|
+
"description": "revoke OAuth authorization",
|
|
2857
|
+
"examples": [
|
|
2858
|
+
"$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
|
|
2859
|
+
],
|
|
2860
|
+
"flags": {},
|
|
2861
|
+
"hasDynamicHelp": false,
|
|
2862
|
+
"hiddenAliases": [],
|
|
2863
|
+
"id": "authorizations:revoke",
|
|
2864
|
+
"pluginAlias": "heroku",
|
|
2865
|
+
"pluginName": "heroku",
|
|
2866
|
+
"pluginType": "core",
|
|
2867
|
+
"strict": true,
|
|
2868
|
+
"isESM": false,
|
|
2869
|
+
"relativePath": [
|
|
2870
|
+
"lib",
|
|
2871
|
+
"commands",
|
|
2872
|
+
"authorizations",
|
|
2873
|
+
"revoke.js"
|
|
2874
|
+
]
|
|
2875
|
+
},
|
|
2876
|
+
"authorizations:rotate": {
|
|
2877
|
+
"aliases": [],
|
|
2878
|
+
"args": {
|
|
2879
|
+
"id": {
|
|
2880
|
+
"description": "ID of the authorization",
|
|
2881
|
+
"name": "id",
|
|
2882
|
+
"required": true
|
|
2883
|
+
}
|
|
2884
|
+
},
|
|
2885
|
+
"description": "updates an OAuth authorization token",
|
|
2886
|
+
"flags": {},
|
|
2887
|
+
"hasDynamicHelp": false,
|
|
2888
|
+
"hiddenAliases": [],
|
|
2889
|
+
"id": "authorizations:rotate",
|
|
2890
|
+
"pluginAlias": "heroku",
|
|
2891
|
+
"pluginName": "heroku",
|
|
2892
|
+
"pluginType": "core",
|
|
2893
|
+
"strict": true,
|
|
2894
|
+
"isESM": false,
|
|
2895
|
+
"relativePath": [
|
|
2896
|
+
"lib",
|
|
2897
|
+
"commands",
|
|
2898
|
+
"authorizations",
|
|
2899
|
+
"rotate.js"
|
|
2900
|
+
]
|
|
2901
|
+
},
|
|
2902
|
+
"authorizations:update": {
|
|
2903
|
+
"aliases": [],
|
|
2904
|
+
"args": {
|
|
2905
|
+
"id": {
|
|
2906
|
+
"description": "ID of the authorization",
|
|
2907
|
+
"name": "id",
|
|
2908
|
+
"required": true
|
|
2909
|
+
}
|
|
2910
|
+
},
|
|
2911
|
+
"description": "updates an OAuth authorization",
|
|
2912
|
+
"flags": {
|
|
2913
|
+
"description": {
|
|
2914
|
+
"char": "d",
|
|
2915
|
+
"description": "set a custom authorization description",
|
|
2916
|
+
"name": "description",
|
|
2917
|
+
"hasDynamicHelp": false,
|
|
2918
|
+
"multiple": false,
|
|
2919
|
+
"type": "option"
|
|
2920
|
+
},
|
|
2921
|
+
"client-id": {
|
|
2922
|
+
"dependsOn": [
|
|
2923
|
+
"client-secret"
|
|
2924
|
+
],
|
|
2925
|
+
"description": "identifier of OAuth client to set",
|
|
2926
|
+
"name": "client-id",
|
|
2927
|
+
"hasDynamicHelp": false,
|
|
2928
|
+
"multiple": false,
|
|
2929
|
+
"type": "option"
|
|
2930
|
+
},
|
|
2931
|
+
"client-secret": {
|
|
2932
|
+
"dependsOn": [
|
|
2933
|
+
"client-id"
|
|
2934
|
+
],
|
|
2935
|
+
"description": "secret of OAuth client to set",
|
|
2936
|
+
"name": "client-secret",
|
|
2937
|
+
"hasDynamicHelp": false,
|
|
2938
|
+
"multiple": false,
|
|
2939
|
+
"type": "option"
|
|
2940
|
+
}
|
|
2941
|
+
},
|
|
2942
|
+
"hasDynamicHelp": false,
|
|
2943
|
+
"hiddenAliases": [],
|
|
2944
|
+
"id": "authorizations:update",
|
|
2945
|
+
"pluginAlias": "heroku",
|
|
2946
|
+
"pluginName": "heroku",
|
|
2947
|
+
"pluginType": "core",
|
|
2948
|
+
"strict": true,
|
|
2949
|
+
"isESM": false,
|
|
2950
|
+
"relativePath": [
|
|
2951
|
+
"lib",
|
|
2952
|
+
"commands",
|
|
2953
|
+
"authorizations",
|
|
2954
|
+
"update.js"
|
|
2955
|
+
]
|
|
2956
|
+
},
|
|
2957
2957
|
"certs:add": {
|
|
2958
2958
|
"aliases": [],
|
|
2959
2959
|
"args": {
|
|
@@ -12823,8 +12823,10 @@
|
|
|
12823
12823
|
"auto-explain.js"
|
|
12824
12824
|
]
|
|
12825
12825
|
},
|
|
12826
|
-
"pg:settings:
|
|
12827
|
-
"aliases": [
|
|
12826
|
+
"pg:settings:data-connector-details-logs": {
|
|
12827
|
+
"aliases": [
|
|
12828
|
+
"pg:settings:explain-data-connector-details"
|
|
12829
|
+
],
|
|
12828
12830
|
"args": {
|
|
12829
12831
|
"database": {
|
|
12830
12832
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
@@ -12857,7 +12859,7 @@
|
|
|
12857
12859
|
},
|
|
12858
12860
|
"hasDynamicHelp": false,
|
|
12859
12861
|
"hiddenAliases": [],
|
|
12860
|
-
"id": "pg:settings:
|
|
12862
|
+
"id": "pg:settings:data-connector-details-logs",
|
|
12861
12863
|
"pluginAlias": "heroku",
|
|
12862
12864
|
"pluginName": "heroku",
|
|
12863
12865
|
"pluginType": "core",
|
|
@@ -12868,7 +12870,7 @@
|
|
|
12868
12870
|
"commands",
|
|
12869
12871
|
"pg",
|
|
12870
12872
|
"settings",
|
|
12871
|
-
"
|
|
12873
|
+
"data-connector-details-logs.js"
|
|
12872
12874
|
]
|
|
12873
12875
|
},
|
|
12874
12876
|
"pg:settings": {
|
|
@@ -15005,5 +15007,5 @@
|
|
|
15005
15007
|
]
|
|
15006
15008
|
}
|
|
15007
15009
|
},
|
|
15008
|
-
"version": "10.
|
|
15010
|
+
"version": "10.12.0"
|
|
15009
15011
|
}
|
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.12.0",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -400,5 +400,5 @@
|
|
|
400
400
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
401
401
|
},
|
|
402
402
|
"types": "lib/index.d.ts",
|
|
403
|
-
"gitHead": "
|
|
403
|
+
"gitHead": "ea1559149d52b30d560994325be4e5ca01d2a956"
|
|
404
404
|
}
|