@salesforce/cli 2.88.2 → 2.88.4

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.
@@ -3080,16 +3080,131 @@
3080
3080
  "test:run:flow"
3081
3081
  ]
3082
3082
  },
3083
- "org:get:snapshot": {
3083
+ "org:create:shape": {
3084
3084
  "aliases": [
3085
- "force:org:snapshot:get"
3085
+ "force:org:shape:create"
3086
3086
  ],
3087
3087
  "args": {},
3088
3088
  "deprecateAliases": true,
3089
- "description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
3089
+ "description": "Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org without the extraneous data and metadata.\n\nRun \"<%= config.bin %> org list shape\" to view the available org shapes and their IDs.\n\nTo create a scratch org from an org shape, include the \"sourceOrg\" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the \"<%= config.bin %> org create scratch\" command.",
3090
3090
  "examples": [
3091
- "Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
3092
- "Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
3091
+ "Create an org shape for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg"
3092
+ ],
3093
+ "flags": {
3094
+ "json": {
3095
+ "description": "Format output as json.",
3096
+ "helpGroup": "GLOBAL",
3097
+ "name": "json",
3098
+ "allowNo": false,
3099
+ "type": "boolean"
3100
+ },
3101
+ "flags-dir": {
3102
+ "helpGroup": "GLOBAL",
3103
+ "name": "flags-dir",
3104
+ "summary": "Import flag values from a directory.",
3105
+ "hasDynamicHelp": false,
3106
+ "multiple": false,
3107
+ "type": "option"
3108
+ },
3109
+ "target-org": {
3110
+ "aliases": [
3111
+ "targetusername",
3112
+ "u"
3113
+ ],
3114
+ "char": "o",
3115
+ "deprecateAliases": true,
3116
+ "name": "target-org",
3117
+ "noCacheDefault": true,
3118
+ "required": true,
3119
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
3120
+ "hasDynamicHelp": true,
3121
+ "multiple": false,
3122
+ "type": "option"
3123
+ },
3124
+ "api-version": {
3125
+ "aliases": [
3126
+ "apiversion"
3127
+ ],
3128
+ "deprecateAliases": true,
3129
+ "description": "Override the api version used for api requests made by this command",
3130
+ "name": "api-version",
3131
+ "hasDynamicHelp": false,
3132
+ "multiple": false,
3133
+ "type": "option"
3134
+ },
3135
+ "loglevel": {
3136
+ "deprecated": {
3137
+ "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
3138
+ },
3139
+ "hidden": true,
3140
+ "name": "loglevel",
3141
+ "hasDynamicHelp": false,
3142
+ "multiple": false,
3143
+ "type": "option"
3144
+ }
3145
+ },
3146
+ "hasDynamicHelp": true,
3147
+ "hiddenAliases": [],
3148
+ "id": "org:create:shape",
3149
+ "pluginAlias": "@salesforce/plugin-signups",
3150
+ "pluginName": "@salesforce/plugin-signups",
3151
+ "pluginType": "jit",
3152
+ "strict": true,
3153
+ "summary": "Create a scratch org configuration (shape) based on the specified source org.",
3154
+ "enableJsonFlag": true,
3155
+ "isESM": true,
3156
+ "relativePath": [
3157
+ "lib",
3158
+ "commands",
3159
+ "org",
3160
+ "create",
3161
+ "shape.js"
3162
+ ],
3163
+ "aliasPermutations": [
3164
+ "force:org:shape:create",
3165
+ "org:force:shape:create",
3166
+ "org:shape:force:create",
3167
+ "org:shape:create:force",
3168
+ "force:shape:org:create",
3169
+ "shape:force:org:create",
3170
+ "shape:org:force:create",
3171
+ "shape:org:create:force",
3172
+ "force:shape:create:org",
3173
+ "shape:force:create:org",
3174
+ "shape:create:force:org",
3175
+ "shape:create:org:force",
3176
+ "force:org:create:shape",
3177
+ "org:force:create:shape",
3178
+ "org:create:force:shape",
3179
+ "org:create:shape:force",
3180
+ "force:create:org:shape",
3181
+ "create:force:org:shape",
3182
+ "create:org:force:shape",
3183
+ "create:org:shape:force",
3184
+ "force:create:shape:org",
3185
+ "create:force:shape:org",
3186
+ "create:shape:force:org",
3187
+ "create:shape:org:force"
3188
+ ],
3189
+ "permutations": [
3190
+ "org:create:shape",
3191
+ "create:org:shape",
3192
+ "create:shape:org",
3193
+ "org:shape:create",
3194
+ "shape:org:create",
3195
+ "shape:create:org"
3196
+ ]
3197
+ },
3198
+ "org:create:snapshot": {
3199
+ "aliases": [
3200
+ "force:org:snapshot:create"
3201
+ ],
3202
+ "args": {},
3203
+ "deprecateAliases": true,
3204
+ "description": "A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org definition file.\n\nUse \"<%= config.bin %> org get snapshot\" to get details, including status, about a snapshot creation request.\n\nTo create a scratch org from a snapshot, include the \"snapshot\" option (instead of \"edition\") in the scratch org definition file and set it to the name of the snapshot. Then use \"<%= config.bin %> org create scratch\" to create the scratch org.",
3205
+ "examples": [
3206
+ "Create a snapshot called \"Dependencies\" using the source scratch org ID and your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --source-org 00Dxx0000000000 --name Dependencies --description 'Contains PackageA v1.1.0'",
3207
+ "Create a snapshot called \"NightlyBranch\" using the source scratch org username and a Dev Hub org with alias NightlyDevHub:\n<%= config.bin %> <%= command.id %> --source-org myuser@myorg --name NightlyBranch --description 'Contains PkgA v2.1.0 and PkgB 3.3.0' --target-dev-hub NightlyDevHub"
3093
3208
  ],
3094
3209
  "flags": {
3095
3210
  "json": {
@@ -3142,12 +3257,37 @@
3142
3257
  "multiple": false,
3143
3258
  "type": "option"
3144
3259
  },
3145
- "snapshot": {
3146
- "char": "s",
3147
- "description": "The IDs of scratch org snapshots start with 0Oo.",
3148
- "name": "snapshot",
3260
+ "source-org": {
3261
+ "aliases": [
3262
+ "sourceorg"
3263
+ ],
3264
+ "char": "o",
3265
+ "deprecateAliases": true,
3266
+ "name": "source-org",
3149
3267
  "required": true,
3150
- "summary": "Name or ID of snapshot to retrieve.",
3268
+ "summary": "ID or locally authenticated username or alias of scratch org to snapshot.",
3269
+ "hasDynamicHelp": false,
3270
+ "multiple": false,
3271
+ "type": "option"
3272
+ },
3273
+ "name": {
3274
+ "aliases": [
3275
+ "snapshotname"
3276
+ ],
3277
+ "char": "n",
3278
+ "deprecateAliases": true,
3279
+ "name": "name",
3280
+ "required": true,
3281
+ "summary": "Unique name of snapshot.",
3282
+ "hasDynamicHelp": false,
3283
+ "multiple": false,
3284
+ "type": "option"
3285
+ },
3286
+ "description": {
3287
+ "char": "d",
3288
+ "description": "Use this description to document the contents of the snapshot. We suggest that you include a reference point, such as a version control system tag or commit ID.",
3289
+ "name": "description",
3290
+ "summary": "Description of snapshot.",
3151
3291
  "hasDynamicHelp": false,
3152
3292
  "multiple": false,
3153
3293
  "type": "option"
@@ -3155,54 +3295,54 @@
3155
3295
  },
3156
3296
  "hasDynamicHelp": true,
3157
3297
  "hiddenAliases": [],
3158
- "id": "org:get:snapshot",
3298
+ "id": "org:create:snapshot",
3159
3299
  "pluginAlias": "@salesforce/plugin-signups",
3160
3300
  "pluginName": "@salesforce/plugin-signups",
3161
3301
  "pluginType": "jit",
3162
3302
  "strict": true,
3163
- "summary": "Get details about a scratch org snapshot.",
3303
+ "summary": "Create a snapshot of a scratch org.",
3164
3304
  "enableJsonFlag": true,
3165
3305
  "isESM": true,
3166
3306
  "relativePath": [
3167
3307
  "lib",
3168
3308
  "commands",
3169
3309
  "org",
3170
- "get",
3310
+ "create",
3171
3311
  "snapshot.js"
3172
3312
  ],
3173
3313
  "aliasPermutations": [
3174
- "force:org:snapshot:get",
3175
- "org:force:snapshot:get",
3176
- "org:snapshot:force:get",
3177
- "org:snapshot:get:force",
3178
- "force:snapshot:org:get",
3179
- "snapshot:force:org:get",
3180
- "snapshot:org:force:get",
3181
- "snapshot:org:get:force",
3182
- "force:snapshot:get:org",
3183
- "snapshot:force:get:org",
3184
- "snapshot:get:force:org",
3185
- "snapshot:get:org:force",
3186
- "force:org:get:snapshot",
3187
- "org:force:get:snapshot",
3188
- "org:get:force:snapshot",
3189
- "org:get:snapshot:force",
3190
- "force:get:org:snapshot",
3191
- "get:force:org:snapshot",
3192
- "get:org:force:snapshot",
3193
- "get:org:snapshot:force",
3194
- "force:get:snapshot:org",
3195
- "get:force:snapshot:org",
3196
- "get:snapshot:force:org",
3197
- "get:snapshot:org:force"
3314
+ "force:org:snapshot:create",
3315
+ "org:force:snapshot:create",
3316
+ "org:snapshot:force:create",
3317
+ "org:snapshot:create:force",
3318
+ "force:snapshot:org:create",
3319
+ "snapshot:force:org:create",
3320
+ "snapshot:org:force:create",
3321
+ "snapshot:org:create:force",
3322
+ "force:snapshot:create:org",
3323
+ "snapshot:force:create:org",
3324
+ "snapshot:create:force:org",
3325
+ "snapshot:create:org:force",
3326
+ "force:org:create:snapshot",
3327
+ "org:force:create:snapshot",
3328
+ "org:create:force:snapshot",
3329
+ "org:create:snapshot:force",
3330
+ "force:create:org:snapshot",
3331
+ "create:force:org:snapshot",
3332
+ "create:org:force:snapshot",
3333
+ "create:org:snapshot:force",
3334
+ "force:create:snapshot:org",
3335
+ "create:force:snapshot:org",
3336
+ "create:snapshot:force:org",
3337
+ "create:snapshot:org:force"
3198
3338
  ],
3199
3339
  "permutations": [
3200
- "org:get:snapshot",
3201
- "get:org:snapshot",
3202
- "get:snapshot:org",
3203
- "org:snapshot:get",
3204
- "snapshot:org:get",
3205
- "snapshot:get:org"
3340
+ "org:create:snapshot",
3341
+ "create:org:snapshot",
3342
+ "create:snapshot:org",
3343
+ "org:snapshot:create",
3344
+ "snapshot:org:create",
3345
+ "snapshot:create:org"
3206
3346
  ]
3207
3347
  },
3208
3348
  "org:delete:shape": {
@@ -3464,131 +3604,16 @@
3464
3604
  "snapshot:delete:org"
3465
3605
  ]
3466
3606
  },
3467
- "org:create:shape": {
3468
- "aliases": [
3469
- "force:org:shape:create"
3470
- ],
3471
- "args": {},
3472
- "deprecateAliases": true,
3473
- "description": "Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org without the extraneous data and metadata.\n\nRun \"<%= config.bin %> org list shape\" to view the available org shapes and their IDs.\n\nTo create a scratch org from an org shape, include the \"sourceOrg\" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the \"<%= config.bin %> org create scratch\" command.",
3474
- "examples": [
3475
- "Create an org shape for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg"
3476
- ],
3477
- "flags": {
3478
- "json": {
3479
- "description": "Format output as json.",
3480
- "helpGroup": "GLOBAL",
3481
- "name": "json",
3482
- "allowNo": false,
3483
- "type": "boolean"
3484
- },
3485
- "flags-dir": {
3486
- "helpGroup": "GLOBAL",
3487
- "name": "flags-dir",
3488
- "summary": "Import flag values from a directory.",
3489
- "hasDynamicHelp": false,
3490
- "multiple": false,
3491
- "type": "option"
3492
- },
3493
- "target-org": {
3494
- "aliases": [
3495
- "targetusername",
3496
- "u"
3497
- ],
3498
- "char": "o",
3499
- "deprecateAliases": true,
3500
- "name": "target-org",
3501
- "noCacheDefault": true,
3502
- "required": true,
3503
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
3504
- "hasDynamicHelp": true,
3505
- "multiple": false,
3506
- "type": "option"
3507
- },
3508
- "api-version": {
3509
- "aliases": [
3510
- "apiversion"
3511
- ],
3512
- "deprecateAliases": true,
3513
- "description": "Override the api version used for api requests made by this command",
3514
- "name": "api-version",
3515
- "hasDynamicHelp": false,
3516
- "multiple": false,
3517
- "type": "option"
3518
- },
3519
- "loglevel": {
3520
- "deprecated": {
3521
- "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
3522
- },
3523
- "hidden": true,
3524
- "name": "loglevel",
3525
- "hasDynamicHelp": false,
3526
- "multiple": false,
3527
- "type": "option"
3528
- }
3529
- },
3530
- "hasDynamicHelp": true,
3531
- "hiddenAliases": [],
3532
- "id": "org:create:shape",
3533
- "pluginAlias": "@salesforce/plugin-signups",
3534
- "pluginName": "@salesforce/plugin-signups",
3535
- "pluginType": "jit",
3536
- "strict": true,
3537
- "summary": "Create a scratch org configuration (shape) based on the specified source org.",
3538
- "enableJsonFlag": true,
3539
- "isESM": true,
3540
- "relativePath": [
3541
- "lib",
3542
- "commands",
3543
- "org",
3544
- "create",
3545
- "shape.js"
3546
- ],
3547
- "aliasPermutations": [
3548
- "force:org:shape:create",
3549
- "org:force:shape:create",
3550
- "org:shape:force:create",
3551
- "org:shape:create:force",
3552
- "force:shape:org:create",
3553
- "shape:force:org:create",
3554
- "shape:org:force:create",
3555
- "shape:org:create:force",
3556
- "force:shape:create:org",
3557
- "shape:force:create:org",
3558
- "shape:create:force:org",
3559
- "shape:create:org:force",
3560
- "force:org:create:shape",
3561
- "org:force:create:shape",
3562
- "org:create:force:shape",
3563
- "org:create:shape:force",
3564
- "force:create:org:shape",
3565
- "create:force:org:shape",
3566
- "create:org:force:shape",
3567
- "create:org:shape:force",
3568
- "force:create:shape:org",
3569
- "create:force:shape:org",
3570
- "create:shape:force:org",
3571
- "create:shape:org:force"
3572
- ],
3573
- "permutations": [
3574
- "org:create:shape",
3575
- "create:org:shape",
3576
- "create:shape:org",
3577
- "org:shape:create",
3578
- "shape:org:create",
3579
- "shape:create:org"
3580
- ]
3581
- },
3582
- "org:create:snapshot": {
3607
+ "org:get:snapshot": {
3583
3608
  "aliases": [
3584
- "force:org:snapshot:create"
3609
+ "force:org:snapshot:get"
3585
3610
  ],
3586
3611
  "args": {},
3587
3612
  "deprecateAliases": true,
3588
- "description": "A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org definition file.\n\nUse \"<%= config.bin %> org get snapshot\" to get details, including status, about a snapshot creation request.\n\nTo create a scratch org from a snapshot, include the \"snapshot\" option (instead of \"edition\") in the scratch org definition file and set it to the name of the snapshot. Then use \"<%= config.bin %> org create scratch\" to create the scratch org.",
3613
+ "description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
3589
3614
  "examples": [
3590
- "Create a snapshot called \"Dependencies\" using the source scratch org ID and your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --source-org 00Dxx0000000000 --name Dependencies --description 'Contains PackageA v1.1.0'",
3591
- "Create a snapshot called \"NightlyBranch\" using the source scratch org username and a Dev Hub org with alias NightlyDevHub:\n<%= config.bin %> <%= command.id %> --source-org myuser@myorg --name NightlyBranch --description 'Contains PkgA v2.1.0 and PkgB 3.3.0' --target-dev-hub NightlyDevHub"
3615
+ "Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
3616
+ "Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
3592
3617
  ],
3593
3618
  "flags": {
3594
3619
  "json": {
@@ -3641,37 +3666,12 @@
3641
3666
  "multiple": false,
3642
3667
  "type": "option"
3643
3668
  },
3644
- "source-org": {
3645
- "aliases": [
3646
- "sourceorg"
3647
- ],
3648
- "char": "o",
3649
- "deprecateAliases": true,
3650
- "name": "source-org",
3651
- "required": true,
3652
- "summary": "ID or locally authenticated username or alias of scratch org to snapshot.",
3653
- "hasDynamicHelp": false,
3654
- "multiple": false,
3655
- "type": "option"
3656
- },
3657
- "name": {
3658
- "aliases": [
3659
- "snapshotname"
3660
- ],
3661
- "char": "n",
3662
- "deprecateAliases": true,
3663
- "name": "name",
3669
+ "snapshot": {
3670
+ "char": "s",
3671
+ "description": "The IDs of scratch org snapshots start with 0Oo.",
3672
+ "name": "snapshot",
3664
3673
  "required": true,
3665
- "summary": "Unique name of snapshot.",
3666
- "hasDynamicHelp": false,
3667
- "multiple": false,
3668
- "type": "option"
3669
- },
3670
- "description": {
3671
- "char": "d",
3672
- "description": "Use this description to document the contents of the snapshot. We suggest that you include a reference point, such as a version control system tag or commit ID.",
3673
- "name": "description",
3674
- "summary": "Description of snapshot.",
3674
+ "summary": "Name or ID of snapshot to retrieve.",
3675
3675
  "hasDynamicHelp": false,
3676
3676
  "multiple": false,
3677
3677
  "type": "option"
@@ -3679,54 +3679,54 @@
3679
3679
  },
3680
3680
  "hasDynamicHelp": true,
3681
3681
  "hiddenAliases": [],
3682
- "id": "org:create:snapshot",
3682
+ "id": "org:get:snapshot",
3683
3683
  "pluginAlias": "@salesforce/plugin-signups",
3684
3684
  "pluginName": "@salesforce/plugin-signups",
3685
3685
  "pluginType": "jit",
3686
3686
  "strict": true,
3687
- "summary": "Create a snapshot of a scratch org.",
3687
+ "summary": "Get details about a scratch org snapshot.",
3688
3688
  "enableJsonFlag": true,
3689
3689
  "isESM": true,
3690
3690
  "relativePath": [
3691
3691
  "lib",
3692
3692
  "commands",
3693
3693
  "org",
3694
- "create",
3694
+ "get",
3695
3695
  "snapshot.js"
3696
3696
  ],
3697
3697
  "aliasPermutations": [
3698
- "force:org:snapshot:create",
3699
- "org:force:snapshot:create",
3700
- "org:snapshot:force:create",
3701
- "org:snapshot:create:force",
3702
- "force:snapshot:org:create",
3703
- "snapshot:force:org:create",
3704
- "snapshot:org:force:create",
3705
- "snapshot:org:create:force",
3706
- "force:snapshot:create:org",
3707
- "snapshot:force:create:org",
3708
- "snapshot:create:force:org",
3709
- "snapshot:create:org:force",
3710
- "force:org:create:snapshot",
3711
- "org:force:create:snapshot",
3712
- "org:create:force:snapshot",
3713
- "org:create:snapshot:force",
3714
- "force:create:org:snapshot",
3715
- "create:force:org:snapshot",
3716
- "create:org:force:snapshot",
3717
- "create:org:snapshot:force",
3718
- "force:create:snapshot:org",
3719
- "create:force:snapshot:org",
3720
- "create:snapshot:force:org",
3721
- "create:snapshot:org:force"
3698
+ "force:org:snapshot:get",
3699
+ "org:force:snapshot:get",
3700
+ "org:snapshot:force:get",
3701
+ "org:snapshot:get:force",
3702
+ "force:snapshot:org:get",
3703
+ "snapshot:force:org:get",
3704
+ "snapshot:org:force:get",
3705
+ "snapshot:org:get:force",
3706
+ "force:snapshot:get:org",
3707
+ "snapshot:force:get:org",
3708
+ "snapshot:get:force:org",
3709
+ "snapshot:get:org:force",
3710
+ "force:org:get:snapshot",
3711
+ "org:force:get:snapshot",
3712
+ "org:get:force:snapshot",
3713
+ "org:get:snapshot:force",
3714
+ "force:get:org:snapshot",
3715
+ "get:force:org:snapshot",
3716
+ "get:org:force:snapshot",
3717
+ "get:org:snapshot:force",
3718
+ "force:get:snapshot:org",
3719
+ "get:force:snapshot:org",
3720
+ "get:snapshot:force:org",
3721
+ "get:snapshot:org:force"
3722
3722
  ],
3723
3723
  "permutations": [
3724
- "org:create:snapshot",
3725
- "create:org:snapshot",
3726
- "create:snapshot:org",
3727
- "org:snapshot:create",
3728
- "snapshot:org:create",
3729
- "snapshot:create:org"
3724
+ "org:get:snapshot",
3725
+ "get:org:snapshot",
3726
+ "get:snapshot:org",
3727
+ "org:snapshot:get",
3728
+ "snapshot:org:get",
3729
+ "snapshot:get:org"
3730
3730
  ]
3731
3731
  },
3732
3732
  "org:list:shape": {
@@ -5934,5 +5934,5 @@
5934
5934
  ]
5935
5935
  }
5936
5936
  },
5937
- "version": "2.88.2"
5937
+ "version": "2.88.4"
5938
5938
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.88.2",
4
+ "version": "2.88.4",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -76,12 +76,12 @@
76
76
  ],
77
77
  "jitPlugins": {
78
78
  "@salesforce/plugin-code-analyzer": "5.0.0",
79
- "@salesforce/plugin-community": "3.3.21",
80
- "@salesforce/plugin-custom-metadata": "3.3.51",
79
+ "@salesforce/plugin-community": "3.3.22",
80
+ "@salesforce/plugin-custom-metadata": "3.3.52",
81
81
  "@salesforce/plugin-dev": "2.5.1",
82
82
  "@salesforce/plugin-devops-center": "1.2.27",
83
83
  "@salesforce/plugin-flow": "1.0.2",
84
- "@salesforce/plugin-signups": "2.6.23",
84
+ "@salesforce/plugin-signups": "2.6.25",
85
85
  "@salesforce/sfdx-plugin-lwc-test": "1.2.1",
86
86
  "@salesforce/sfdx-scanner": "4.12.0",
87
87
  "@salesforce/plugin-agent": "1.20.13"
@@ -146,35 +146,35 @@
146
146
  "dependencies": {
147
147
  "@inquirer/select": "^2.3.5",
148
148
  "@oclif/core": "4.3.0",
149
- "@oclif/plugin-autocomplete": "3.2.27",
150
- "@oclif/plugin-commands": "4.1.24",
151
- "@oclif/plugin-help": "6.2.27",
152
- "@oclif/plugin-not-found": "3.2.50",
153
- "@oclif/plugin-plugins": "5.4.36",
154
- "@oclif/plugin-search": "1.2.23",
149
+ "@oclif/plugin-autocomplete": "3.2.28",
150
+ "@oclif/plugin-commands": "4.1.25",
151
+ "@oclif/plugin-help": "6.2.28",
152
+ "@oclif/plugin-not-found": "3.2.51",
153
+ "@oclif/plugin-plugins": "5.4.37",
154
+ "@oclif/plugin-search": "1.2.24",
155
155
  "@oclif/plugin-update": "4.6.38",
156
- "@oclif/plugin-version": "2.2.27",
157
- "@oclif/plugin-warn-if-update-available": "3.1.38",
158
- "@oclif/plugin-which": "3.2.34",
156
+ "@oclif/plugin-version": "2.2.28",
157
+ "@oclif/plugin-warn-if-update-available": "3.1.39",
158
+ "@oclif/plugin-which": "3.2.35",
159
159
  "@salesforce/core": "^8.9.1",
160
160
  "@salesforce/kit": "^3.1.6",
161
- "@salesforce/plugin-apex": "3.6.15",
161
+ "@salesforce/plugin-apex": "3.6.17",
162
162
  "@salesforce/plugin-api": "1.3.3",
163
- "@salesforce/plugin-auth": "3.6.115",
164
- "@salesforce/plugin-data": "4.0.29",
165
- "@salesforce/plugin-deploy-retrieve": "3.22.5",
166
- "@salesforce/plugin-info": "3.4.56",
167
- "@salesforce/plugin-limits": "3.3.52",
163
+ "@salesforce/plugin-auth": "3.6.118",
164
+ "@salesforce/plugin-data": "4.0.30",
165
+ "@salesforce/plugin-deploy-retrieve": "3.22.7",
166
+ "@salesforce/plugin-info": "3.4.59",
167
+ "@salesforce/plugin-limits": "3.3.53",
168
168
  "@salesforce/plugin-marketplace": "1.3.8",
169
- "@salesforce/plugin-org": "5.7.3",
169
+ "@salesforce/plugin-org": "5.7.5",
170
170
  "@salesforce/plugin-packaging": "2.13.2",
171
- "@salesforce/plugin-schema": "3.3.59",
172
- "@salesforce/plugin-settings": "2.4.25",
171
+ "@salesforce/plugin-schema": "3.3.60",
172
+ "@salesforce/plugin-settings": "2.4.27",
173
173
  "@salesforce/plugin-sobject": "1.4.55",
174
- "@salesforce/plugin-telemetry": "3.6.39",
175
- "@salesforce/plugin-templates": "56.3.45",
176
- "@salesforce/plugin-trust": "3.7.85",
177
- "@salesforce/plugin-user": "3.6.19",
174
+ "@salesforce/plugin-telemetry": "3.6.40",
175
+ "@salesforce/plugin-templates": "56.3.46",
176
+ "@salesforce/plugin-trust": "3.7.87",
177
+ "@salesforce/plugin-user": "3.6.20",
178
178
  "@salesforce/sf-plugins-core": "12.2.1",
179
179
  "ansis": "^3.12.0"
180
180
  },