@salesforce/plugin-signups 2.0.1 → 2.0.3

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 CHANGED
@@ -121,7 +121,7 @@ EXAMPLES
121
121
  $ sf org create shape --target-org SourceOrg
122
122
  ```
123
123
 
124
- _See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/create/shape.ts)_
124
+ _See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/create/shape.ts)_
125
125
 
126
126
  ## `sf org create snapshot`
127
127
 
@@ -174,7 +174,7 @@ FLAG DESCRIPTIONS
174
174
  as a version control system tag or commit ID.
175
175
  ```
176
176
 
177
- _See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/create/snapshot.ts)_
177
+ _See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/create/snapshot.ts)_
178
178
 
179
179
  ## `sf org delete shape`
180
180
 
@@ -212,7 +212,7 @@ EXAMPLES
212
212
  $ sf org delete shape --target-org SourceOrg --no-prompt
213
213
  ```
214
214
 
215
- _See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/delete/shape.ts)_
215
+ _See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/delete/shape.ts)_
216
216
 
217
217
  ## `sf org delete snapshot`
218
218
 
@@ -254,7 +254,7 @@ FLAG DESCRIPTIONS
254
254
  The IDs of scratch org snapshots start with 0Oo.
255
255
  ```
256
256
 
257
- _See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/delete/snapshot.ts)_
257
+ _See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/delete/snapshot.ts)_
258
258
 
259
259
  ## `sf org get snapshot`
260
260
 
@@ -299,7 +299,7 @@ FLAG DESCRIPTIONS
299
299
  The IDs of scratch org snapshots start with 0Oo.
300
300
  ```
301
301
 
302
- _See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/get/snapshot.ts)_
302
+ _See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/get/snapshot.ts)_
303
303
 
304
304
  ## `sf org list shape`
305
305
 
@@ -331,7 +331,7 @@ EXAMPLES
331
331
  $ sf org list shape --json > tmp/MyOrgShapeList.json
332
332
  ```
333
333
 
334
- _See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/list/shape.ts)_
334
+ _See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/list/shape.ts)_
335
335
 
336
336
  ## `sf org list snapshot`
337
337
 
@@ -371,6 +371,6 @@ EXAMPLES
371
371
  $ sf org list snapshot --target-dev-hub SnapshotDevHub
372
372
  ```
373
373
 
374
- _See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.7/src/commands/org/list/snapshot.ts)_
374
+ _See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.0.3/src/commands/org/list/snapshot.ts)_
375
375
 
376
376
  <!-- commandsstop -->
@@ -8,8 +8,6 @@ export interface OrgSnapshotRequest {
8
8
  export type OrgSnapshot = OrgSnapshotRequest & {
9
9
  Id: string;
10
10
  Status: string;
11
- LastClonedDate?: string;
12
- LastClonedById?: string;
13
11
  CreatedDate: string;
14
12
  LastModifiedDate: string;
15
13
  ExpirationDate?: string;
@@ -20,8 +20,6 @@ export const ORG_SNAPSHOT_FIELDS = [
20
20
  'CreatedDate',
21
21
  'LastModifiedDate',
22
22
  'ExpirationDate',
23
- 'LastClonedDate',
24
- 'LastClonedById',
25
23
  'Error',
26
24
  ];
27
25
  const dateTimeFormatter = (dateString) => dateString
@@ -51,11 +49,6 @@ const ORG_SNAPSHOT_COLUMNS = {
51
49
  header: 'Expiration Date',
52
50
  get: (row) => (row.ExpirationDate ? new Date(row.ExpirationDate).toLocaleDateString() : ''),
53
51
  },
54
- LastClonedDate: {
55
- header: 'Last Cloned Date',
56
- get: (row) => rowDateTimeFormatter(row, 'LastClonedDate'),
57
- },
58
- LastClonedById: { header: 'Last Cloned By Id', get: (row) => row.LastClonedById ?? '' },
59
52
  };
60
53
  const invalidTypeErrorHandler = (e) => {
61
54
  if (e instanceof Error && e.name === 'INVALID_TYPE') {
@@ -95,7 +88,7 @@ export const printSingleRecordTable = (snapshotRecord) => {
95
88
  .map(([key, value]) => ({
96
89
  Name: capitalCase(key),
97
90
  // format the datetime values
98
- Value: ['LastModifiedDate', 'LastClonedDate', 'CreatedDate'].includes(key) ? dateTimeFormatter(value) : value,
91
+ Value: ['LastModifiedDate', 'CreatedDate'].includes(key) ? dateTimeFormatter(value) : value,
99
92
  }))
100
93
  // null/undefined becomes empty string
101
94
  .map((row) => (row.Value ? row : { ...row, Value: '' })), { Name: {}, Value: {} });
@@ -1 +1 @@
1
- {"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../src/shared/snapshot.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"snapshot.js","sourceRoot":"","sources":["../../src/shared/snapshot.ts"],"names":[],"mappings":"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"}
package/oclif.lock CHANGED
@@ -724,7 +724,7 @@
724
724
  wordwrap "^1.0.0"
725
725
  wrap-ansi "^7.0.0"
726
726
 
727
- "@oclif/core@^3.0.0", "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1":
727
+ "@oclif/core@^3.0.4", "@oclif/core@^3.10.8", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1":
728
728
  version "3.11.0"
729
729
  resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.11.0.tgz#dadfac39238af3b717e33b910dde1f1f0fd2105e"
730
730
  integrity sha512-9A2LhDQATf1vrRqPoO0gGuBrey0jt3kDafC+eazxTNWV2EvlEpgY2587iyrxPK/fL2xg7f+0mtxYaSHdO2k8eg==
@@ -938,38 +938,62 @@
938
938
  semver "^7.5.4"
939
939
  ts-retry-promise "^0.7.1"
940
940
 
941
+ "@salesforce/core@^6.1.0":
942
+ version "6.1.2"
943
+ resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.1.2.tgz#604c0cd3e3858e2f51c37b1a0904825015a07765"
944
+ integrity sha512-h1sGWUfAMVtBvh+wXlSA+e2aJAJ/DnkUD+GLgRje6qUsgxKRNJcoKBCNZgjwAf+xAqJ5IprUZ+arTkU5ME86Mw==
945
+ dependencies:
946
+ "@salesforce/kit" "^3.0.15"
947
+ "@salesforce/schemas" "^1.6.1"
948
+ "@salesforce/ts-types" "^2.0.9"
949
+ "@types/semver" "^7.5.4"
950
+ ajv "^8.12.0"
951
+ change-case "^4.1.2"
952
+ faye "^1.4.0"
953
+ form-data "^4.0.0"
954
+ js2xmlparser "^4.0.1"
955
+ jsforce "^2.0.0-beta.28"
956
+ jsonwebtoken "9.0.2"
957
+ jszip "3.10.1"
958
+ pino "^8.16.1"
959
+ pino-abstract-transport "^1.1.0"
960
+ pino-pretty "^10.2.3"
961
+ proper-lockfile "^4.1.2"
962
+ semver "^7.5.4"
963
+ ts-retry-promise "^0.7.1"
964
+
941
965
  "@salesforce/dev-config@^4.1.0":
942
966
  version "4.1.0"
943
967
  resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
944
968
  integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
945
969
 
946
- "@salesforce/dev-scripts@^6.0.4":
947
- version "6.0.4"
948
- resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-6.0.4.tgz#0043b8ef4b970f8c2f945cc74eada3b1db52fa9a"
949
- integrity sha512-/kdl99bHaNeCoVwfeQhIaKzorcmgpe/nZhlT7ru+If+18NRvBgW5OGmh++Q/NsraaYbsQ/0cDcGNz1dnQ11weA==
970
+ "@salesforce/dev-scripts@^7.1.0":
971
+ version "7.1.0"
972
+ resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-7.1.0.tgz#123708d4f494d8b95464b90c28993141986e84bc"
973
+ integrity sha512-79x6QgENORLyCrr9b4MO2pPq8N7d9ILj83vOtAp5NLreAfjZN/c5TEEHuIZKZ3UaO+hkwbtzv3Qs6CyNxiasWA==
950
974
  dependencies:
951
975
  "@commitlint/cli" "^17.1.2"
952
976
  "@commitlint/config-conventional" "^17.1.0"
953
977
  "@salesforce/dev-config" "^4.1.0"
954
978
  "@salesforce/prettier-config" "^0.0.3"
955
- "@types/chai" "^4.3.9"
956
- "@types/mocha" "^10.0.3"
979
+ "@types/chai" "^4.3.10"
980
+ "@types/mocha" "^10.0.4"
957
981
  "@types/node" "^18"
958
982
  "@types/sinon" "^10.0.20"
959
983
  chai "^4.3.10"
960
984
  chalk "^4.0.0"
961
985
  cosmiconfig "^7.0.0"
962
- eslint-config-salesforce-typescript "^3.0.1"
986
+ eslint-config-salesforce-typescript "^3.0.5"
963
987
  husky "^7.0.4"
964
988
  mocha "^10.2.0"
965
989
  nyc "^15.1.0"
966
990
  prettier "^2.8.8"
967
- pretty-quick "^3.1.0"
968
- shelljs "~0.8.4"
991
+ pretty-quick "^3.1.3"
992
+ shelljs "^0.8.5"
969
993
  sinon "10.0.0"
970
- source-map-support "~0.5.19"
994
+ source-map-support "^0.5.21"
971
995
  ts-node "^10.9.1"
972
- typedoc "0.23.16"
996
+ typedoc "^0.25.3"
973
997
  typedoc-plugin-missing-exports "0.23.0"
974
998
  typescript "^4.9.5"
975
999
  wireit "^0.14.1"
@@ -1018,15 +1042,15 @@
1018
1042
  chalk "^4"
1019
1043
  inquirer "^8.2.5"
1020
1044
 
1021
- "@salesforce/sf-plugins-core@^4.1.2":
1022
- version "4.1.2"
1023
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-4.1.2.tgz#0e03ca012828de8dc30ffccd7ca289c6aa703a2d"
1024
- integrity sha512-mjb9mLyfLos4Y+/qhko2mrKgwxMzWipAnR/Inuu9cuw4dK9sCgHl79t4zU+6FyNT2T14Q9md/hDXN5QNg0eGJA==
1045
+ "@salesforce/sf-plugins-core@^5.0.1":
1046
+ version "5.0.1"
1047
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.1.tgz#16b085eda99e28f2607957954d6ac957a8d0a0eb"
1048
+ integrity sha512-gKUhAP9DDUlB4bjr0a6bsWiM16hn/n1cW8BglhYHAow8UJ0OQBxx+dfvAO0ftXmfzg82IZdMViiDmQXt0Z+e6A==
1025
1049
  dependencies:
1026
- "@oclif/core" "^3.0.0"
1027
- "@salesforce/core" "^5.3.1"
1028
- "@salesforce/kit" "^3.0.13"
1029
- "@salesforce/ts-types" "^2.0.7"
1050
+ "@oclif/core" "^3.11.0"
1051
+ "@salesforce/core" "^6.1.0"
1052
+ "@salesforce/kit" "^3.0.15"
1053
+ "@salesforce/ts-types" "^2.0.9"
1030
1054
  "@types/inquirer" "^8.2.3"
1031
1055
  chalk "^4"
1032
1056
  inquirer "^8.2.5"
@@ -1118,21 +1142,21 @@
1118
1142
  "@types/node" "*"
1119
1143
  "@types/responselike" "^1.0.0"
1120
1144
 
1121
- "@types/chai-as-promised@^7.1.7":
1122
- version "7.1.7"
1123
- resolved "https://registry.yarnpkg.com/@types/chai-as-promised/-/chai-as-promised-7.1.7.tgz#fd16a981ba9542c83d4e1d2f40c7899aae82aa38"
1124
- integrity sha512-APucaP5rlmTRYKtRA6FE5QPP87x76ejw5t5guRJ4y5OgMnwtsvigw7HHhKZlx2MGXLeZd6R/GNZR/IqDHcbtQw==
1145
+ "@types/chai-as-promised@^7.1.8":
1146
+ version "7.1.8"
1147
+ resolved "https://registry.yarnpkg.com/@types/chai-as-promised/-/chai-as-promised-7.1.8.tgz#f2b3d82d53c59626b5d6bbc087667ccb4b677fe9"
1148
+ integrity sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==
1125
1149
  dependencies:
1126
1150
  "@types/chai" "*"
1127
1151
 
1128
- "@types/chai-string@^1.4.3":
1129
- version "1.4.3"
1130
- resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.4.3.tgz#06e02d74deed77c2bfccccae44ece6e57a8ecedd"
1131
- integrity sha512-bLp5xMQ7Ml0fWa05IPpLjIznTkNbuBE3GtRTzKrp0d10IavlBFcu9vXP2liWaXta79unO693q3kuRxD7g2YYGw==
1152
+ "@types/chai-string@^1.4.5":
1153
+ version "1.4.5"
1154
+ resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.4.5.tgz#988ff37526386e9c354219b163d7ecf81bab8d2d"
1155
+ integrity sha512-IecXRMSnpUvRnTztdpSdjcmcW7EdNme65bfDCQMi7XrSEPGmyDYYTEfc5fcactWDA6ioSm8o7NUqg9QxjBCCEw==
1132
1156
  dependencies:
1133
1157
  "@types/chai" "*"
1134
1158
 
1135
- "@types/chai@*", "@types/chai@^4.3.9":
1159
+ "@types/chai@*", "@types/chai@^4.3.10":
1136
1160
  version "4.3.10"
1137
1161
  resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.10.tgz#2ad2959d1767edee5b0e4efb1a0cd2b500747317"
1138
1162
  integrity sha512-of+ICnbqjmFCiixUnqRulbylyXQrPqIGf/B3Jax1wIF3DvSheysQxAWvqHhZiW3IQrycvokcLcFQlveGp+vyNg==
@@ -1214,7 +1238,7 @@
1214
1238
  resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c"
1215
1239
  integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
1216
1240
 
1217
- "@types/mocha@^10.0.3":
1241
+ "@types/mocha@^10.0.4":
1218
1242
  version "10.0.4"
1219
1243
  resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.4.tgz#b5331955ebca216604691fd4fcd2dbdc2bd559a4"
1220
1244
  integrity sha512-xKU7bUjiFTIttpWaIZ9qvgg+22O1nmbA+HRxdlR+u6TWsGfmFdXrheJoK4fFxrHNVIOBDvDNKZG+LYBpMHpX3w==
@@ -1532,6 +1556,11 @@ ansi-regex@^5.0.1:
1532
1556
  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
1533
1557
  integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
1534
1558
 
1559
+ ansi-sequence-parser@^1.1.0:
1560
+ version "1.1.1"
1561
+ resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf"
1562
+ integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
1563
+
1535
1564
  ansi-styles@^3.2.1:
1536
1565
  version "3.2.1"
1537
1566
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -2838,7 +2867,7 @@ eslint-config-salesforce-license@^0.2.0:
2838
2867
  resolved "https://registry.yarnpkg.com/eslint-config-salesforce-license/-/eslint-config-salesforce-license-0.2.0.tgz#323193f1aa15dd33fbf108d25fc1210afc11065e"
2839
2868
  integrity sha512-DJdBvgj82Erum82YMe+YvG/o6ukna3UA++lRl0HSTldj0VlBl3Q8hzCp97nRXZHra6JH1I912yievZzklXDw6w==
2840
2869
 
2841
- eslint-config-salesforce-typescript@^3.0.1:
2870
+ eslint-config-salesforce-typescript@^3.0.5:
2842
2871
  version "3.0.5"
2843
2872
  resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.0.5.tgz#1fa7b224551255b520f19d208be5d1bb2410c2b4"
2844
2873
  integrity sha512-p+Do1i8Al1HANKubYV9WnJl9P/ChP/gvM+1tjtYiGqVjaO2Gf6V1ejM51r//uw4OoiFEldqKJK/gyMzSvRHkaw==
@@ -4421,7 +4450,7 @@ json5@^2.2.2, json5@^2.2.3:
4421
4450
  resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
4422
4451
  integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
4423
4452
 
4424
- jsonc-parser@^3.0.0:
4453
+ jsonc-parser@^3.0.0, jsonc-parser@^3.2.0:
4425
4454
  version "3.2.0"
4426
4455
  resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
4427
4456
  integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
@@ -4803,10 +4832,10 @@ map-obj@^4.0.0:
4803
4832
  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
4804
4833
  integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
4805
4834
 
4806
- marked@^4.0.19:
4807
- version "4.2.12"
4808
- resolved "https://registry.yarnpkg.com/marked/-/marked-4.2.12.tgz#d69a64e21d71b06250da995dcd065c11083bebb5"
4809
- integrity sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==
4835
+ marked@^4.3.0:
4836
+ version "4.3.0"
4837
+ resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3"
4838
+ integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==
4810
4839
 
4811
4840
  "mem-fs-editor@^8.1.2 || ^9.0.0", mem-fs-editor@^9.0.0:
4812
4841
  version "9.6.0"
@@ -4915,7 +4944,7 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
4915
4944
  dependencies:
4916
4945
  brace-expansion "^1.1.7"
4917
4946
 
4918
- minimatch@^5.0.1, minimatch@^5.1.0:
4947
+ minimatch@^5.0.1:
4919
4948
  version "5.1.6"
4920
4949
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
4921
4950
  integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
@@ -5752,7 +5781,7 @@ pify@^4.0.1:
5752
5781
  resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
5753
5782
  integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
5754
5783
 
5755
- pino-abstract-transport@^1.0.0, pino-abstract-transport@v1.1.0:
5784
+ pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.1.0, pino-abstract-transport@v1.1.0:
5756
5785
  version "1.1.0"
5757
5786
  resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.1.0.tgz#083d98f966262164504afb989bccd05f665937a8"
5758
5787
  integrity sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==
@@ -5785,10 +5814,10 @@ pino-std-serializers@^6.0.0:
5785
5814
  resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3"
5786
5815
  integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==
5787
5816
 
5788
- pino@^8.16.0:
5789
- version "8.16.1"
5790
- resolved "https://registry.yarnpkg.com/pino/-/pino-8.16.1.tgz#dcaf82764b1a27f24101317cdd6453e96290f1d9"
5791
- integrity sha512-3bKsVhBmgPjGV9pyn4fO/8RtoVDR8ssW1ev819FsRXlRNgW8gR/9Kx+gCK4UPWd4JjrRDLWpzd/pb1AyWm3MGA==
5817
+ pino@^8.16.0, pino@^8.16.1:
5818
+ version "8.16.2"
5819
+ resolved "https://registry.yarnpkg.com/pino/-/pino-8.16.2.tgz#7a906f2d9a8c5b4c57412c9ca95d6820bd2090cd"
5820
+ integrity sha512-2advCDGVEvkKu9TTVSa/kWW7Z3htI/sBKEZpqiHk6ive0i/7f5b1rsU8jn0aimxqfnSz5bj/nOYkwhBUn5xxvg==
5792
5821
  dependencies:
5793
5822
  atomic-sleep "^1.0.0"
5794
5823
  fast-redact "^3.1.1"
@@ -5839,7 +5868,7 @@ pretty-bytes@^5.3.0:
5839
5868
  resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
5840
5869
  integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
5841
5870
 
5842
- pretty-quick@^3.1.0:
5871
+ pretty-quick@^3.1.3:
5843
5872
  version "3.1.3"
5844
5873
  resolved "https://registry.yarnpkg.com/pretty-quick/-/pretty-quick-3.1.3.tgz#15281108c0ddf446675157ca40240099157b638e"
5845
5874
  integrity sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==
@@ -6403,7 +6432,7 @@ shebang-regex@^3.0.0:
6403
6432
  resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
6404
6433
  integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
6405
6434
 
6406
- shelljs@^0.8.4, shelljs@^0.8.5, shelljs@~0.8.4:
6435
+ shelljs@^0.8.4, shelljs@^0.8.5:
6407
6436
  version "0.8.5"
6408
6437
  resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
6409
6438
  integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
@@ -6412,14 +6441,15 @@ shelljs@^0.8.4, shelljs@^0.8.5, shelljs@~0.8.4:
6412
6441
  interpret "^1.0.0"
6413
6442
  rechoir "^0.6.2"
6414
6443
 
6415
- shiki@^0.11.1:
6416
- version "0.11.1"
6417
- resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.11.1.tgz#df0f719e7ab592c484d8b73ec10e215a503ab8cc"
6418
- integrity sha512-EugY9VASFuDqOexOgXR18ZV+TbFrQHeCpEYaXamO+SZlsnT/2LxuLBX25GGtIrwaEVFXUAbUQ601SWE2rMwWHA==
6444
+ shiki@^0.14.1:
6445
+ version "0.14.5"
6446
+ resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.5.tgz#375dd214e57eccb04f0daf35a32aa615861deb93"
6447
+ integrity sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==
6419
6448
  dependencies:
6420
- jsonc-parser "^3.0.0"
6421
- vscode-oniguruma "^1.6.1"
6422
- vscode-textmate "^6.0.0"
6449
+ ansi-sequence-parser "^1.1.0"
6450
+ jsonc-parser "^3.2.0"
6451
+ vscode-oniguruma "^1.7.0"
6452
+ vscode-textmate "^8.0.0"
6423
6453
 
6424
6454
  shx@0.3.4:
6425
6455
  version "0.3.4"
@@ -6522,7 +6552,7 @@ sort-keys@^4.2.0:
6522
6552
  dependencies:
6523
6553
  is-plain-obj "^2.0.0"
6524
6554
 
6525
- source-map-support@~0.5.19:
6555
+ source-map-support@^0.5.21:
6526
6556
  version "0.5.21"
6527
6557
  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
6528
6558
  integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
@@ -7012,15 +7042,15 @@ typedoc-plugin-missing-exports@0.23.0:
7012
7042
  resolved "https://registry.yarnpkg.com/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-0.23.0.tgz#076df6ffce4d84e8097be009b7c62a17d58477a5"
7013
7043
  integrity sha512-9smahDSsFRno9ZwoEshQDuIYMHWGB1E6LUud5qMxR2wNZ0T4DlZz0QjoK3HzXtX34mUpTH0dYtt7NQUK4D6B6Q==
7014
7044
 
7015
- typedoc@0.23.16:
7016
- version "0.23.16"
7017
- resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.23.16.tgz#09881ada725c2190ac5d3bb0edadcc5bfeda4bfe"
7018
- integrity sha512-rumYsCeNRXlyuZVzefD7050n7ptL2uudsCJg50dY0v/stKniqIlRpvx/F/6expC0/Q6Dbab+g/JpZuB7Sw90FA==
7045
+ typedoc@^0.25.3:
7046
+ version "0.25.3"
7047
+ resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.3.tgz#53c6d668e1001b3d488e9a750fcdfb05433554c0"
7048
+ integrity sha512-Ow8Bo7uY1Lwy7GTmphRIMEo6IOZ+yYUyrc8n5KXIZg1svpqhZSWgni2ZrDhe+wLosFS8yswowUzljTAV/3jmWw==
7019
7049
  dependencies:
7020
7050
  lunr "^2.3.9"
7021
- marked "^4.0.19"
7022
- minimatch "^5.1.0"
7023
- shiki "^0.11.1"
7051
+ marked "^4.3.0"
7052
+ minimatch "^9.0.3"
7053
+ shiki "^0.14.1"
7024
7054
 
7025
7055
  typescript@^4.6.4, typescript@^4.9.5:
7026
7056
  version "4.9.5"
@@ -7219,15 +7249,15 @@ vinyl@^2.0.1:
7219
7249
  remove-trailing-separator "^1.0.1"
7220
7250
  replace-ext "^1.0.0"
7221
7251
 
7222
- vscode-oniguruma@^1.6.1:
7252
+ vscode-oniguruma@^1.7.0:
7223
7253
  version "1.7.0"
7224
7254
  resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
7225
7255
  integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
7226
7256
 
7227
- vscode-textmate@^6.0.0:
7228
- version "6.0.0"
7229
- resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-6.0.0.tgz#a3777197235036814ac9a92451492f2748589210"
7230
- integrity sha512-gu73tuZfJgu+mvCSy4UZwd2JXykjK9zAZsfmDeut5dx/1a7FeTk0XwJsSuqQn+cuMCGVbIBfl+s53X4T19DnzQ==
7257
+ vscode-textmate@^8.0.0:
7258
+ version "8.0.0"
7259
+ resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
7260
+ integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
7231
7261
 
7232
7262
  walk-up-path@^1.0.0:
7233
7263
  version "1.0.0"
@@ -810,5 +810,5 @@
810
810
  ]
811
811
  }
812
812
  },
813
- "version": "2.0.1"
813
+ "version": "2.0.3"
814
814
  }
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-signups",
3
3
  "description": "Commands to interact with org shapes",
4
- "version": "2.0.1",
4
+ "version": "2.0.3",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^3.11.0",
9
- "@salesforce/core": "^5.3.20",
9
+ "@salesforce/core": "^6.1.0",
10
10
  "@salesforce/kit": "^3.0.15",
11
- "@salesforce/sf-plugins-core": "^4.1.2",
11
+ "@salesforce/sf-plugins-core": "^5.0.1",
12
12
  "chalk": "^5.3.0",
13
13
  "change-case": "^5.1.2"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@oclif/plugin-command-snapshot": "^5.0.2",
17
17
  "@salesforce/cli-plugins-testkit": "^5.0.4",
18
- "@salesforce/dev-scripts": "^6.0.4",
18
+ "@salesforce/dev-scripts": "^7.1.0",
19
19
  "@salesforce/plugin-command-reference": "^3.0.46",
20
20
  "@salesforce/ts-types": "^2.0.9",
21
- "@types/chai-as-promised": "^7.1.7",
22
- "@types/chai-string": "^1.4.3",
21
+ "@types/chai-as-promised": "^7.1.8",
22
+ "@types/chai-string": "^1.4.5",
23
23
  "chai-as-promised": "7.1.1",
24
24
  "chai-string": "^1.5.0",
25
25
  "eslint-plugin-sf-plugin": "^1.16.15",
@@ -246,7 +246,7 @@
246
246
  "exports": "./lib/index.js",
247
247
  "type": "module",
248
248
  "sfdx": {
249
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.1.crt",
250
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.1.sig"
249
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.3.crt",
250
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.3.sig"
251
251
  }
252
252
  }