@salesforce/plugin-custom-metadata 3.2.2 → 3.2.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 +5 -5
- package/lib/commands/cmdt/generate/field.d.ts +2 -2
- package/lib/commands/cmdt/generate/fromorg.d.ts +2 -2
- package/lib/commands/cmdt/generate/object.d.ts +2 -2
- package/lib/commands/cmdt/generate/record.d.ts +2 -2
- package/lib/shared/helpers/fileWriter.d.ts +2 -2
- package/npm-shrinkwrap.json +154 -34
- package/oclif.lock +101 -32
- package/oclif.manifest.json +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -149,7 +149,7 @@ FLAG DESCRIPTIONS
|
|
|
149
149
|
The value must be greater than or equal to zero. Default value is 0.
|
|
150
150
|
```
|
|
151
151
|
|
|
152
|
-
_See code: [src/commands/cmdt/generate/field.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.
|
|
152
|
+
_See code: [src/commands/cmdt/generate/field.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.3/src/commands/cmdt/generate/field.ts)_
|
|
153
153
|
|
|
154
154
|
## `sf cmdt generate fromorg`
|
|
155
155
|
|
|
@@ -238,7 +238,7 @@ FLAG DESCRIPTIONS
|
|
|
238
238
|
https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
|
|
239
239
|
```
|
|
240
240
|
|
|
241
|
-
_See code: [src/commands/cmdt/generate/fromorg.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.
|
|
241
|
+
_See code: [src/commands/cmdt/generate/fromorg.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.3/src/commands/cmdt/generate/fromorg.ts)_
|
|
242
242
|
|
|
243
243
|
## `sf cmdt generate object`
|
|
244
244
|
|
|
@@ -300,7 +300,7 @@ FLAG DESCRIPTIONS
|
|
|
300
300
|
https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
|
|
301
301
|
```
|
|
302
302
|
|
|
303
|
-
_See code: [src/commands/cmdt/generate/object.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.
|
|
303
|
+
_See code: [src/commands/cmdt/generate/object.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.3/src/commands/cmdt/generate/object.ts)_
|
|
304
304
|
|
|
305
305
|
## `sf cmdt generate record`
|
|
306
306
|
|
|
@@ -355,7 +355,7 @@ FLAG DESCRIPTIONS
|
|
|
355
355
|
Protected records can only be accessed by code in the same managed package namespace.
|
|
356
356
|
```
|
|
357
357
|
|
|
358
|
-
_See code: [src/commands/cmdt/generate/record.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.
|
|
358
|
+
_See code: [src/commands/cmdt/generate/record.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.3/src/commands/cmdt/generate/record.ts)_
|
|
359
359
|
|
|
360
360
|
## `sf cmdt generate records`
|
|
361
361
|
|
|
@@ -406,7 +406,7 @@ FLAG DESCRIPTIONS
|
|
|
406
406
|
The '__mdt' suffix is appended to the end of the name if it's omitted.
|
|
407
407
|
```
|
|
408
408
|
|
|
409
|
-
_See code: [src/commands/cmdt/generate/records.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.
|
|
409
|
+
_See code: [src/commands/cmdt/generate/records.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.3/src/commands/cmdt/generate/records.ts)_
|
|
410
410
|
|
|
411
411
|
<!-- commandsstop -->
|
|
412
412
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { SfCommand } from '@salesforce/sf-plugins-core';
|
|
2
|
-
export
|
|
2
|
+
export type CmdtFieldCreateResponse = {
|
|
3
3
|
fieldName: string;
|
|
4
4
|
label: string;
|
|
5
5
|
fieldtype: string;
|
|
6
|
-
}
|
|
6
|
+
};
|
|
7
7
|
export default class Create extends SfCommand<CmdtFieldCreateResponse> {
|
|
8
8
|
static readonly summary: string;
|
|
9
9
|
static readonly description: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { SfCommand } from '@salesforce/sf-plugins-core';
|
|
2
|
-
export
|
|
2
|
+
export type CmdtGenerateResponse = {
|
|
3
3
|
outputDir: string;
|
|
4
4
|
recordsOutputDir: string;
|
|
5
|
-
}
|
|
5
|
+
};
|
|
6
6
|
export default class Generate extends SfCommand<CmdtGenerateResponse> {
|
|
7
7
|
static readonly summary: string;
|
|
8
8
|
static readonly description: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { SfCommand } from '@salesforce/sf-plugins-core';
|
|
2
|
-
export
|
|
2
|
+
export type CmdtCreateResponse = {
|
|
3
3
|
typename: string;
|
|
4
4
|
label: string;
|
|
5
5
|
pluralLabel: string;
|
|
6
6
|
visibility: string;
|
|
7
|
-
}
|
|
7
|
+
};
|
|
8
8
|
export default class Create extends SfCommand<CmdtCreateResponse> {
|
|
9
9
|
static readonly summary: string;
|
|
10
10
|
static readonly description: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SfCommand } from '@salesforce/sf-plugins-core';
|
|
2
2
|
import type { CustomField } from 'jsforce/api/metadata';
|
|
3
|
-
export
|
|
3
|
+
export type CmdtRecordCreateResponse = {
|
|
4
4
|
typename: string;
|
|
5
5
|
recordname: string;
|
|
6
6
|
label: string;
|
|
@@ -9,7 +9,7 @@ export interface CmdtRecordCreateResponse {
|
|
|
9
9
|
protectedFlag: boolean;
|
|
10
10
|
varargs: Record<string, unknown>;
|
|
11
11
|
fileData: CustomField[];
|
|
12
|
-
}
|
|
12
|
+
};
|
|
13
13
|
export default class Create extends SfCommand<CmdtRecordCreateResponse> {
|
|
14
14
|
static readonly strict = false;
|
|
15
15
|
static readonly summary: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference types="node" resolution-mode="require"/>
|
|
2
2
|
import fs from 'node:fs';
|
|
3
|
-
|
|
3
|
+
type FileWriterResult = {
|
|
4
4
|
dir: string;
|
|
5
5
|
fileName: string;
|
|
6
6
|
updated: boolean;
|
|
7
|
-
}
|
|
7
|
+
};
|
|
8
8
|
/**
|
|
9
9
|
* Using the given file system, creates a file representing a new custom metadata type.
|
|
10
10
|
*
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-custom-metadata",
|
|
9
|
-
"version": "3.2.
|
|
9
|
+
"version": "3.2.3",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^3.26.0",
|
|
13
13
|
"@salesforce/core": "^6.7.6",
|
|
14
|
-
"@salesforce/sf-plugins-core": "^8.0.
|
|
14
|
+
"@salesforce/sf-plugins-core": "^8.0.3",
|
|
15
15
|
"csv-parse": "^5.5.5",
|
|
16
16
|
"fast-xml-parser": "^4.3.6"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@oclif/plugin-command-snapshot": "^5.1.4",
|
|
20
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
21
|
-
"@salesforce/dev-scripts": "^8.
|
|
20
|
+
"@salesforce/cli-plugins-testkit": "^5.1.14",
|
|
21
|
+
"@salesforce/dev-scripts": "^8.5.0",
|
|
22
22
|
"@salesforce/plugin-command-reference": "^3.0.74",
|
|
23
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
23
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
24
24
|
"jsforce": "^2.0.0-beta.29",
|
|
25
25
|
"oclif": "^4.7.3",
|
|
26
26
|
"ts-node": "^10.9.2",
|
|
27
|
-
"typescript": "^5.4.
|
|
27
|
+
"typescript": "^5.4.4"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=18.0.0"
|
|
@@ -2969,19 +2969,20 @@
|
|
|
2969
2969
|
}
|
|
2970
2970
|
},
|
|
2971
2971
|
"node_modules/@salesforce/cli-plugins-testkit": {
|
|
2972
|
-
"version": "5.1.
|
|
2973
|
-
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.
|
|
2974
|
-
"integrity": "sha512-
|
|
2972
|
+
"version": "5.1.14",
|
|
2973
|
+
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.14.tgz",
|
|
2974
|
+
"integrity": "sha512-Adt7A2CMONTZFGENHI91PUxRVuQOypNa+/JVRTXjp2ug3zrPhquxEjtgfG18vVZi/boKa0Td898/N14SOW5vNQ==",
|
|
2975
2975
|
"dev": true,
|
|
2976
2976
|
"license": "BSD-3-Clause",
|
|
2977
2977
|
"dependencies": {
|
|
2978
|
-
"@salesforce/core": "^6.7.
|
|
2979
|
-
"@salesforce/kit": "^3.0
|
|
2978
|
+
"@salesforce/core": "^6.7.6",
|
|
2979
|
+
"@salesforce/kit": "^3.1.0",
|
|
2980
2980
|
"@salesforce/ts-types": "^2.0.9",
|
|
2981
2981
|
"@types/shelljs": "^0.8.15",
|
|
2982
2982
|
"debug": "^4.3.1",
|
|
2983
2983
|
"jszip": "^3.10.1",
|
|
2984
2984
|
"shelljs": "^0.8.4",
|
|
2985
|
+
"sinon": "^17.0.1",
|
|
2985
2986
|
"strip-ansi": "6.0.1",
|
|
2986
2987
|
"ts-retry-promise": "^0.8.0"
|
|
2987
2988
|
},
|
|
@@ -2989,6 +2990,95 @@
|
|
|
2989
2990
|
"node": ">=16.0.0"
|
|
2990
2991
|
}
|
|
2991
2992
|
},
|
|
2993
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/@sinonjs/commons": {
|
|
2994
|
+
"version": "3.0.1",
|
|
2995
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz",
|
|
2996
|
+
"integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
|
|
2997
|
+
"dev": true,
|
|
2998
|
+
"license": "BSD-3-Clause",
|
|
2999
|
+
"dependencies": {
|
|
3000
|
+
"type-detect": "4.0.8"
|
|
3001
|
+
}
|
|
3002
|
+
},
|
|
3003
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/@sinonjs/samsam": {
|
|
3004
|
+
"version": "8.0.0",
|
|
3005
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-8.0.0.tgz",
|
|
3006
|
+
"integrity": "sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==",
|
|
3007
|
+
"dev": true,
|
|
3008
|
+
"license": "BSD-3-Clause",
|
|
3009
|
+
"dependencies": {
|
|
3010
|
+
"@sinonjs/commons": "^2.0.0",
|
|
3011
|
+
"lodash.get": "^4.4.2",
|
|
3012
|
+
"type-detect": "^4.0.8"
|
|
3013
|
+
}
|
|
3014
|
+
},
|
|
3015
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/@sinonjs/samsam/node_modules/@sinonjs/commons": {
|
|
3016
|
+
"version": "2.0.0",
|
|
3017
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz",
|
|
3018
|
+
"integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==",
|
|
3019
|
+
"dev": true,
|
|
3020
|
+
"license": "BSD-3-Clause",
|
|
3021
|
+
"dependencies": {
|
|
3022
|
+
"type-detect": "4.0.8"
|
|
3023
|
+
}
|
|
3024
|
+
},
|
|
3025
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/diff": {
|
|
3026
|
+
"version": "5.2.0",
|
|
3027
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz",
|
|
3028
|
+
"integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==",
|
|
3029
|
+
"dev": true,
|
|
3030
|
+
"license": "BSD-3-Clause",
|
|
3031
|
+
"engines": {
|
|
3032
|
+
"node": ">=0.3.1"
|
|
3033
|
+
}
|
|
3034
|
+
},
|
|
3035
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/just-extend": {
|
|
3036
|
+
"version": "6.2.0",
|
|
3037
|
+
"resolved": "https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz",
|
|
3038
|
+
"integrity": "sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==",
|
|
3039
|
+
"dev": true,
|
|
3040
|
+
"license": "MIT"
|
|
3041
|
+
},
|
|
3042
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/nise": {
|
|
3043
|
+
"version": "5.1.9",
|
|
3044
|
+
"resolved": "https://registry.npmjs.org/nise/-/nise-5.1.9.tgz",
|
|
3045
|
+
"integrity": "sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==",
|
|
3046
|
+
"dev": true,
|
|
3047
|
+
"license": "BSD-3-Clause",
|
|
3048
|
+
"dependencies": {
|
|
3049
|
+
"@sinonjs/commons": "^3.0.0",
|
|
3050
|
+
"@sinonjs/fake-timers": "^11.2.2",
|
|
3051
|
+
"@sinonjs/text-encoding": "^0.7.2",
|
|
3052
|
+
"just-extend": "^6.2.0",
|
|
3053
|
+
"path-to-regexp": "^6.2.1"
|
|
3054
|
+
}
|
|
3055
|
+
},
|
|
3056
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/path-to-regexp": {
|
|
3057
|
+
"version": "6.2.1",
|
|
3058
|
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz",
|
|
3059
|
+
"integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==",
|
|
3060
|
+
"dev": true,
|
|
3061
|
+
"license": "MIT"
|
|
3062
|
+
},
|
|
3063
|
+
"node_modules/@salesforce/cli-plugins-testkit/node_modules/sinon": {
|
|
3064
|
+
"version": "17.0.1",
|
|
3065
|
+
"resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.1.tgz",
|
|
3066
|
+
"integrity": "sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==",
|
|
3067
|
+
"dev": true,
|
|
3068
|
+
"license": "BSD-3-Clause",
|
|
3069
|
+
"dependencies": {
|
|
3070
|
+
"@sinonjs/commons": "^3.0.0",
|
|
3071
|
+
"@sinonjs/fake-timers": "^11.2.2",
|
|
3072
|
+
"@sinonjs/samsam": "^8.0.0",
|
|
3073
|
+
"diff": "^5.1.0",
|
|
3074
|
+
"nise": "^5.1.5",
|
|
3075
|
+
"supports-color": "^7.2.0"
|
|
3076
|
+
},
|
|
3077
|
+
"funding": {
|
|
3078
|
+
"type": "opencollective",
|
|
3079
|
+
"url": "https://opencollective.com/sinon"
|
|
3080
|
+
}
|
|
3081
|
+
},
|
|
2992
3082
|
"node_modules/@salesforce/cli-plugins-testkit/node_modules/ts-retry-promise": {
|
|
2993
3083
|
"version": "0.8.0",
|
|
2994
3084
|
"resolved": "https://registry.npmjs.org/ts-retry-promise/-/ts-retry-promise-0.8.0.tgz",
|
|
@@ -3057,9 +3147,9 @@
|
|
|
3057
3147
|
"license": "BSD-3-Clause"
|
|
3058
3148
|
},
|
|
3059
3149
|
"node_modules/@salesforce/dev-scripts": {
|
|
3060
|
-
"version": "8.
|
|
3061
|
-
"resolved": "https://registry.npmjs.org/@salesforce/dev-scripts/-/dev-scripts-8.
|
|
3062
|
-
"integrity": "sha512-
|
|
3150
|
+
"version": "8.5.0",
|
|
3151
|
+
"resolved": "https://registry.npmjs.org/@salesforce/dev-scripts/-/dev-scripts-8.5.0.tgz",
|
|
3152
|
+
"integrity": "sha512-vR+CB5VoQrNAqNTcu5GZ/l4I4Rxd5HkIj/qTxEzP1EYnIlgjrbcsQgaunSnTrttIEy/BD8epd6UWAT8yAItufg==",
|
|
3063
3153
|
"dev": true,
|
|
3064
3154
|
"license": "BSD-3-Clause",
|
|
3065
3155
|
"dependencies": {
|
|
@@ -3074,7 +3164,7 @@
|
|
|
3074
3164
|
"chai": "^4.3.10",
|
|
3075
3165
|
"chalk": "^4.0.0",
|
|
3076
3166
|
"cosmiconfig": "^8.3.6",
|
|
3077
|
-
"eslint-config-salesforce-typescript": "^3.
|
|
3167
|
+
"eslint-config-salesforce-typescript": "^3.3.0",
|
|
3078
3168
|
"husky": "^7.0.4",
|
|
3079
3169
|
"linkinator": "^6.0.4",
|
|
3080
3170
|
"mocha": "^10.4.0",
|
|
@@ -3197,16 +3287,16 @@
|
|
|
3197
3287
|
"license": "ISC"
|
|
3198
3288
|
},
|
|
3199
3289
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
3200
|
-
"version": "8.0.
|
|
3201
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.
|
|
3202
|
-
"integrity": "sha512
|
|
3290
|
+
"version": "8.0.3",
|
|
3291
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.3.tgz",
|
|
3292
|
+
"integrity": "sha512-RJIi0lbpOg6ZflRDCTi/8E3QBhOHfvA5F3xlvThuQo9Yw2SvOjti+s/+Z2RCpvWdy4aaleeGqqgn7AwDi/ISDQ==",
|
|
3203
3293
|
"license": "BSD-3-Clause",
|
|
3204
3294
|
"dependencies": {
|
|
3205
3295
|
"@inquirer/confirm": "^2.0.17",
|
|
3206
3296
|
"@inquirer/password": "^1.1.16",
|
|
3207
3297
|
"@oclif/core": "^3.26.0",
|
|
3208
3298
|
"@salesforce/core": "^6.7.3",
|
|
3209
|
-
"@salesforce/kit": "^3.0
|
|
3299
|
+
"@salesforce/kit": "^3.1.0",
|
|
3210
3300
|
"@salesforce/ts-types": "^2.0.9",
|
|
3211
3301
|
"chalk": "^5.3.0"
|
|
3212
3302
|
},
|
|
@@ -3275,13 +3365,23 @@
|
|
|
3275
3365
|
}
|
|
3276
3366
|
},
|
|
3277
3367
|
"node_modules/@sinonjs/fake-timers": {
|
|
3278
|
-
"version": "
|
|
3279
|
-
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-
|
|
3280
|
-
"integrity": "sha512-
|
|
3368
|
+
"version": "11.2.2",
|
|
3369
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz",
|
|
3370
|
+
"integrity": "sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==",
|
|
3281
3371
|
"dev": true,
|
|
3282
3372
|
"license": "BSD-3-Clause",
|
|
3283
3373
|
"dependencies": {
|
|
3284
|
-
"@sinonjs/commons": "^
|
|
3374
|
+
"@sinonjs/commons": "^3.0.0"
|
|
3375
|
+
}
|
|
3376
|
+
},
|
|
3377
|
+
"node_modules/@sinonjs/fake-timers/node_modules/@sinonjs/commons": {
|
|
3378
|
+
"version": "3.0.1",
|
|
3379
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz",
|
|
3380
|
+
"integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
|
|
3381
|
+
"dev": true,
|
|
3382
|
+
"license": "BSD-3-Clause",
|
|
3383
|
+
"dependencies": {
|
|
3384
|
+
"type-detect": "4.0.8"
|
|
3285
3385
|
}
|
|
3286
3386
|
},
|
|
3287
3387
|
"node_modules/@sinonjs/samsam": {
|
|
@@ -6479,9 +6579,9 @@
|
|
|
6479
6579
|
"license": "BSD-3-Clause"
|
|
6480
6580
|
},
|
|
6481
6581
|
"node_modules/eslint-config-salesforce-typescript": {
|
|
6482
|
-
"version": "3.
|
|
6483
|
-
"resolved": "https://registry.npmjs.org/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.
|
|
6484
|
-
"integrity": "sha512-
|
|
6582
|
+
"version": "3.3.0",
|
|
6583
|
+
"resolved": "https://registry.npmjs.org/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.3.0.tgz",
|
|
6584
|
+
"integrity": "sha512-83+zp2Y2h9oz9D3UksjNGCw+xWD7ylIiAJZ58vUbBD10l8FRUMNyn+RDCKn0xCQz7xed5/LcmgUE4T7roe+HBw==",
|
|
6485
6585
|
"dev": true,
|
|
6486
6586
|
"license": "BSD-3-Clause",
|
|
6487
6587
|
"dependencies": {
|
|
@@ -6645,13 +6745,13 @@
|
|
|
6645
6745
|
}
|
|
6646
6746
|
},
|
|
6647
6747
|
"node_modules/eslint-plugin-sf-plugin": {
|
|
6648
|
-
"version": "1.17.
|
|
6649
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
6650
|
-
"integrity": "sha512-
|
|
6748
|
+
"version": "1.17.5",
|
|
6749
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz",
|
|
6750
|
+
"integrity": "sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==",
|
|
6651
6751
|
"dev": true,
|
|
6652
6752
|
"license": "BSD-3-Clause",
|
|
6653
6753
|
"dependencies": {
|
|
6654
|
-
"@salesforce/core": "^6.7.
|
|
6754
|
+
"@salesforce/core": "^6.7.3",
|
|
6655
6755
|
"@typescript-eslint/utils": "^6.17.0"
|
|
6656
6756
|
},
|
|
6657
6757
|
"engines": {
|
|
@@ -10032,6 +10132,16 @@
|
|
|
10032
10132
|
"path-to-regexp": "^1.7.0"
|
|
10033
10133
|
}
|
|
10034
10134
|
},
|
|
10135
|
+
"node_modules/nise/node_modules/@sinonjs/fake-timers": {
|
|
10136
|
+
"version": "6.0.1",
|
|
10137
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
|
|
10138
|
+
"integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
|
|
10139
|
+
"dev": true,
|
|
10140
|
+
"license": "BSD-3-Clause",
|
|
10141
|
+
"dependencies": {
|
|
10142
|
+
"@sinonjs/commons": "^1.7.0"
|
|
10143
|
+
}
|
|
10144
|
+
},
|
|
10035
10145
|
"node_modules/no-case": {
|
|
10036
10146
|
"version": "3.0.4",
|
|
10037
10147
|
"resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
|
|
@@ -11822,6 +11932,16 @@
|
|
|
11822
11932
|
"url": "https://opencollective.com/sinon"
|
|
11823
11933
|
}
|
|
11824
11934
|
},
|
|
11935
|
+
"node_modules/sinon/node_modules/@sinonjs/fake-timers": {
|
|
11936
|
+
"version": "6.0.1",
|
|
11937
|
+
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz",
|
|
11938
|
+
"integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==",
|
|
11939
|
+
"dev": true,
|
|
11940
|
+
"license": "BSD-3-Clause",
|
|
11941
|
+
"dependencies": {
|
|
11942
|
+
"@sinonjs/commons": "^1.7.0"
|
|
11943
|
+
}
|
|
11944
|
+
},
|
|
11825
11945
|
"node_modules/slash": {
|
|
11826
11946
|
"version": "3.0.0",
|
|
11827
11947
|
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
@@ -12740,9 +12860,9 @@
|
|
|
12740
12860
|
}
|
|
12741
12861
|
},
|
|
12742
12862
|
"node_modules/typescript": {
|
|
12743
|
-
"version": "5.4.
|
|
12744
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.
|
|
12745
|
-
"integrity": "sha512-
|
|
12863
|
+
"version": "5.4.4",
|
|
12864
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz",
|
|
12865
|
+
"integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==",
|
|
12746
12866
|
"dev": true,
|
|
12747
12867
|
"license": "Apache-2.0",
|
|
12748
12868
|
"bin": {
|
package/oclif.lock
CHANGED
|
@@ -1365,22 +1365,23 @@
|
|
|
1365
1365
|
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
|
|
1366
1366
|
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
|
1367
1367
|
|
|
1368
|
-
"@salesforce/cli-plugins-testkit@^5.1.
|
|
1369
|
-
version "5.1.
|
|
1370
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.
|
|
1371
|
-
integrity sha512-
|
|
1368
|
+
"@salesforce/cli-plugins-testkit@^5.1.14":
|
|
1369
|
+
version "5.1.14"
|
|
1370
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.14.tgz#34afac74c44b8492e56c78ac80af60261084cf39"
|
|
1371
|
+
integrity sha512-Adt7A2CMONTZFGENHI91PUxRVuQOypNa+/JVRTXjp2ug3zrPhquxEjtgfG18vVZi/boKa0Td898/N14SOW5vNQ==
|
|
1372
1372
|
dependencies:
|
|
1373
|
-
"@salesforce/core" "^6.7.
|
|
1374
|
-
"@salesforce/kit" "^3.0
|
|
1373
|
+
"@salesforce/core" "^6.7.6"
|
|
1374
|
+
"@salesforce/kit" "^3.1.0"
|
|
1375
1375
|
"@salesforce/ts-types" "^2.0.9"
|
|
1376
1376
|
"@types/shelljs" "^0.8.15"
|
|
1377
1377
|
debug "^4.3.1"
|
|
1378
1378
|
jszip "^3.10.1"
|
|
1379
1379
|
shelljs "^0.8.4"
|
|
1380
|
+
sinon "^17.0.1"
|
|
1380
1381
|
strip-ansi "6.0.1"
|
|
1381
1382
|
ts-retry-promise "^0.8.0"
|
|
1382
1383
|
|
|
1383
|
-
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.
|
|
1384
|
+
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.3", "@salesforce/core@^6.7.6":
|
|
1384
1385
|
version "6.7.6"
|
|
1385
1386
|
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.6.tgz#6a73c6a4e615ce837be5b5c142cfc63a6c8db3bd"
|
|
1386
1387
|
integrity sha512-0ZZ1GgUQTwTs8/xa+hmZd+wwKXkK8MNcI2Kn20HmHShsweA2Jp3Yaxx0+EbRPqhSBARXso+TADSnsOjlZvQ3tg==
|
|
@@ -1408,10 +1409,10 @@
|
|
|
1408
1409
|
resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e"
|
|
1409
1410
|
integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA==
|
|
1410
1411
|
|
|
1411
|
-
"@salesforce/dev-scripts@^8.
|
|
1412
|
-
version "8.
|
|
1413
|
-
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.
|
|
1414
|
-
integrity sha512-
|
|
1412
|
+
"@salesforce/dev-scripts@^8.5.0":
|
|
1413
|
+
version "8.5.0"
|
|
1414
|
+
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-8.5.0.tgz#b0b44ca595450328c6186968528d9c0ef06cd27e"
|
|
1415
|
+
integrity sha512-vR+CB5VoQrNAqNTcu5GZ/l4I4Rxd5HkIj/qTxEzP1EYnIlgjrbcsQgaunSnTrttIEy/BD8epd6UWAT8yAItufg==
|
|
1415
1416
|
dependencies:
|
|
1416
1417
|
"@commitlint/cli" "^17.1.2"
|
|
1417
1418
|
"@commitlint/config-conventional" "^17.8.1"
|
|
@@ -1424,7 +1425,7 @@
|
|
|
1424
1425
|
chai "^4.3.10"
|
|
1425
1426
|
chalk "^4.0.0"
|
|
1426
1427
|
cosmiconfig "^8.3.6"
|
|
1427
|
-
eslint-config-salesforce-typescript "^3.
|
|
1428
|
+
eslint-config-salesforce-typescript "^3.3.0"
|
|
1428
1429
|
husky "^7.0.4"
|
|
1429
1430
|
linkinator "^6.0.4"
|
|
1430
1431
|
mocha "^10.4.0"
|
|
@@ -1485,16 +1486,16 @@
|
|
|
1485
1486
|
chalk "^4"
|
|
1486
1487
|
inquirer "^8.2.5"
|
|
1487
1488
|
|
|
1488
|
-
"@salesforce/sf-plugins-core@^8.0.
|
|
1489
|
-
version "8.0.
|
|
1490
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.
|
|
1491
|
-
integrity sha512
|
|
1489
|
+
"@salesforce/sf-plugins-core@^8.0.3":
|
|
1490
|
+
version "8.0.3"
|
|
1491
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.3.tgz#df8840419031b8d3ec2db171246757a9bfb38655"
|
|
1492
|
+
integrity sha512-RJIi0lbpOg6ZflRDCTi/8E3QBhOHfvA5F3xlvThuQo9Yw2SvOjti+s/+Z2RCpvWdy4aaleeGqqgn7AwDi/ISDQ==
|
|
1492
1493
|
dependencies:
|
|
1493
1494
|
"@inquirer/confirm" "^2.0.17"
|
|
1494
1495
|
"@inquirer/password" "^1.1.16"
|
|
1495
1496
|
"@oclif/core" "^3.26.0"
|
|
1496
1497
|
"@salesforce/core" "^6.7.3"
|
|
1497
|
-
"@salesforce/kit" "^3.0
|
|
1498
|
+
"@salesforce/kit" "^3.1.0"
|
|
1498
1499
|
"@salesforce/ts-types" "^2.0.9"
|
|
1499
1500
|
chalk "^5.3.0"
|
|
1500
1501
|
|
|
@@ -1522,6 +1523,27 @@
|
|
|
1522
1523
|
dependencies:
|
|
1523
1524
|
type-detect "4.0.8"
|
|
1524
1525
|
|
|
1526
|
+
"@sinonjs/commons@^2.0.0":
|
|
1527
|
+
version "2.0.0"
|
|
1528
|
+
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3"
|
|
1529
|
+
integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==
|
|
1530
|
+
dependencies:
|
|
1531
|
+
type-detect "4.0.8"
|
|
1532
|
+
|
|
1533
|
+
"@sinonjs/commons@^3.0.0":
|
|
1534
|
+
version "3.0.1"
|
|
1535
|
+
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd"
|
|
1536
|
+
integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==
|
|
1537
|
+
dependencies:
|
|
1538
|
+
type-detect "4.0.8"
|
|
1539
|
+
|
|
1540
|
+
"@sinonjs/fake-timers@^11.2.2":
|
|
1541
|
+
version "11.2.2"
|
|
1542
|
+
resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-11.2.2.tgz#50063cc3574f4a27bd8453180a04171c85cc9699"
|
|
1543
|
+
integrity sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==
|
|
1544
|
+
dependencies:
|
|
1545
|
+
"@sinonjs/commons" "^3.0.0"
|
|
1546
|
+
|
|
1525
1547
|
"@sinonjs/fake-timers@^6.0.0", "@sinonjs/fake-timers@^6.0.1":
|
|
1526
1548
|
version "6.0.1"
|
|
1527
1549
|
resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40"
|
|
@@ -1538,7 +1560,16 @@
|
|
|
1538
1560
|
lodash.get "^4.4.2"
|
|
1539
1561
|
type-detect "^4.0.8"
|
|
1540
1562
|
|
|
1541
|
-
"@sinonjs/
|
|
1563
|
+
"@sinonjs/samsam@^8.0.0":
|
|
1564
|
+
version "8.0.0"
|
|
1565
|
+
resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-8.0.0.tgz#0d488c91efb3fa1442e26abea81759dfc8b5ac60"
|
|
1566
|
+
integrity sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==
|
|
1567
|
+
dependencies:
|
|
1568
|
+
"@sinonjs/commons" "^2.0.0"
|
|
1569
|
+
lodash.get "^4.4.2"
|
|
1570
|
+
type-detect "^4.0.8"
|
|
1571
|
+
|
|
1572
|
+
"@sinonjs/text-encoding@^0.7.1", "@sinonjs/text-encoding@^0.7.2":
|
|
1542
1573
|
version "0.7.2"
|
|
1543
1574
|
resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918"
|
|
1544
1575
|
integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==
|
|
@@ -3240,6 +3271,11 @@ diff@^4.0.1, diff@^4.0.2:
|
|
|
3240
3271
|
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
|
|
3241
3272
|
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
|
|
3242
3273
|
|
|
3274
|
+
diff@^5.1.0:
|
|
3275
|
+
version "5.2.0"
|
|
3276
|
+
resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
|
|
3277
|
+
integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
|
|
3278
|
+
|
|
3243
3279
|
dir-glob@^3.0.1:
|
|
3244
3280
|
version "3.0.1"
|
|
3245
3281
|
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
|
|
@@ -3464,10 +3500,10 @@ eslint-config-salesforce-license@^0.2.0:
|
|
|
3464
3500
|
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-license/-/eslint-config-salesforce-license-0.2.0.tgz#323193f1aa15dd33fbf108d25fc1210afc11065e"
|
|
3465
3501
|
integrity sha512-DJdBvgj82Erum82YMe+YvG/o6ukna3UA++lRl0HSTldj0VlBl3Q8hzCp97nRXZHra6JH1I912yievZzklXDw6w==
|
|
3466
3502
|
|
|
3467
|
-
eslint-config-salesforce-typescript@^3.
|
|
3468
|
-
version "3.
|
|
3469
|
-
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.
|
|
3470
|
-
integrity sha512-
|
|
3503
|
+
eslint-config-salesforce-typescript@^3.3.0:
|
|
3504
|
+
version "3.3.0"
|
|
3505
|
+
resolved "https://registry.yarnpkg.com/eslint-config-salesforce-typescript/-/eslint-config-salesforce-typescript-3.3.0.tgz#308acead1909665a92e9d32895c592ec4c9ee87a"
|
|
3506
|
+
integrity sha512-83+zp2Y2h9oz9D3UksjNGCw+xWD7ylIiAJZ58vUbBD10l8FRUMNyn+RDCKn0xCQz7xed5/LcmgUE4T7roe+HBw==
|
|
3471
3507
|
dependencies:
|
|
3472
3508
|
"@typescript-eslint/eslint-plugin" "^6.21.0"
|
|
3473
3509
|
"@typescript-eslint/parser" "^6.21.0"
|
|
@@ -3544,12 +3580,12 @@ eslint-plugin-jsdoc@^46.10.1:
|
|
|
3544
3580
|
semver "^7.5.4"
|
|
3545
3581
|
spdx-expression-parse "^4.0.0"
|
|
3546
3582
|
|
|
3547
|
-
eslint-plugin-sf-plugin@^1.17.
|
|
3548
|
-
version "1.17.
|
|
3549
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.
|
|
3550
|
-
integrity sha512-
|
|
3583
|
+
eslint-plugin-sf-plugin@^1.17.5:
|
|
3584
|
+
version "1.17.5"
|
|
3585
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.17.5.tgz#3ce0e7033eaf50675c962e7d2def3bb2cad15018"
|
|
3586
|
+
integrity sha512-TQlUNOwop8aGeIOY+Vtj3OV0EGN7ps2YpV9LEvgGpw7Eeg5ocULQqR6WPwuRpeRn+XUNl7AC5NVDdhveA1fEEQ==
|
|
3551
3587
|
dependencies:
|
|
3552
|
-
"@salesforce/core" "^6.7.
|
|
3588
|
+
"@salesforce/core" "^6.7.3"
|
|
3553
3589
|
"@typescript-eslint/utils" "^6.17.0"
|
|
3554
3590
|
|
|
3555
3591
|
eslint-plugin-unicorn@^50.0.1:
|
|
@@ -5013,6 +5049,11 @@ just-extend@^4.0.2:
|
|
|
5013
5049
|
resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.2.1.tgz#ef5e589afb61e5d66b24eca749409a8939a8c744"
|
|
5014
5050
|
integrity sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==
|
|
5015
5051
|
|
|
5052
|
+
just-extend@^6.2.0:
|
|
5053
|
+
version "6.2.0"
|
|
5054
|
+
resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-6.2.0.tgz#b816abfb3d67ee860482e7401564672558163947"
|
|
5055
|
+
integrity sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==
|
|
5056
|
+
|
|
5016
5057
|
jwa@^1.4.1:
|
|
5017
5058
|
version "1.4.1"
|
|
5018
5059
|
resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a"
|
|
@@ -5516,6 +5557,17 @@ nise@^4.1.0:
|
|
|
5516
5557
|
just-extend "^4.0.2"
|
|
5517
5558
|
path-to-regexp "^1.7.0"
|
|
5518
5559
|
|
|
5560
|
+
nise@^5.1.5:
|
|
5561
|
+
version "5.1.9"
|
|
5562
|
+
resolved "https://registry.yarnpkg.com/nise/-/nise-5.1.9.tgz#0cb73b5e4499d738231a473cd89bd8afbb618139"
|
|
5563
|
+
integrity sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==
|
|
5564
|
+
dependencies:
|
|
5565
|
+
"@sinonjs/commons" "^3.0.0"
|
|
5566
|
+
"@sinonjs/fake-timers" "^11.2.2"
|
|
5567
|
+
"@sinonjs/text-encoding" "^0.7.2"
|
|
5568
|
+
just-extend "^6.2.0"
|
|
5569
|
+
path-to-regexp "^6.2.1"
|
|
5570
|
+
|
|
5519
5571
|
no-case@^3.0.4:
|
|
5520
5572
|
version "3.0.4"
|
|
5521
5573
|
resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
|
|
@@ -5906,6 +5958,11 @@ path-to-regexp@^1.7.0:
|
|
|
5906
5958
|
dependencies:
|
|
5907
5959
|
isarray "0.0.1"
|
|
5908
5960
|
|
|
5961
|
+
path-to-regexp@^6.2.1:
|
|
5962
|
+
version "6.2.1"
|
|
5963
|
+
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz#d54934d6798eb9e5ef14e7af7962c945906918e5"
|
|
5964
|
+
integrity sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==
|
|
5965
|
+
|
|
5909
5966
|
path-type@^4.0.0:
|
|
5910
5967
|
version "4.0.0"
|
|
5911
5968
|
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
|
@@ -6542,6 +6599,18 @@ sinon@10.0.0:
|
|
|
6542
6599
|
nise "^4.1.0"
|
|
6543
6600
|
supports-color "^7.1.0"
|
|
6544
6601
|
|
|
6602
|
+
sinon@^17.0.1:
|
|
6603
|
+
version "17.0.1"
|
|
6604
|
+
resolved "https://registry.yarnpkg.com/sinon/-/sinon-17.0.1.tgz#26b8ef719261bf8df43f925924cccc96748e407a"
|
|
6605
|
+
integrity sha512-wmwE19Lie0MLT+ZYNpDymasPHUKTaZHUH/pKEubRXIzySv9Atnlw+BUMGCzWgV7b7wO+Hw6f1TEOr0IUnmU8/g==
|
|
6606
|
+
dependencies:
|
|
6607
|
+
"@sinonjs/commons" "^3.0.0"
|
|
6608
|
+
"@sinonjs/fake-timers" "^11.2.2"
|
|
6609
|
+
"@sinonjs/samsam" "^8.0.0"
|
|
6610
|
+
diff "^5.1.0"
|
|
6611
|
+
nise "^5.1.5"
|
|
6612
|
+
supports-color "^7.2.0"
|
|
6613
|
+
|
|
6545
6614
|
slash@^3.0.0:
|
|
6546
6615
|
version "3.0.0"
|
|
6547
6616
|
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
|
|
@@ -6800,7 +6869,7 @@ supports-color@^5.3.0:
|
|
|
6800
6869
|
dependencies:
|
|
6801
6870
|
has-flag "^3.0.0"
|
|
6802
6871
|
|
|
6803
|
-
supports-color@^7.0.0, supports-color@^7.1.0:
|
|
6872
|
+
supports-color@^7.0.0, supports-color@^7.1.0, supports-color@^7.2.0:
|
|
6804
6873
|
version "7.2.0"
|
|
6805
6874
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
|
6806
6875
|
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
|
@@ -7069,10 +7138,10 @@ typedoc@^0.25.12:
|
|
|
7069
7138
|
minimatch "^9.0.3"
|
|
7070
7139
|
shiki "^0.14.7"
|
|
7071
7140
|
|
|
7072
|
-
"typescript@^4.6.4 || ^5.0.0", typescript@^5.4.3:
|
|
7073
|
-
version "5.4.
|
|
7074
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.
|
|
7075
|
-
integrity sha512-
|
|
7141
|
+
"typescript@^4.6.4 || ^5.0.0", typescript@^5.4.3, typescript@^5.4.4:
|
|
7142
|
+
version "5.4.4"
|
|
7143
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.4.tgz#eb2471e7b0a5f1377523700a21669dce30c2d952"
|
|
7144
|
+
integrity sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==
|
|
7076
7145
|
|
|
7077
7146
|
typescript@~5.3.2:
|
|
7078
7147
|
version "5.3.3"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
3
|
"description": "Tools for working with custom metadata types and their records.",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.3",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Carolyn Grabill",
|
|
@@ -44,20 +44,20 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@oclif/core": "^3.26.0",
|
|
46
46
|
"@salesforce/core": "^6.7.6",
|
|
47
|
-
"@salesforce/sf-plugins-core": "^8.0.
|
|
47
|
+
"@salesforce/sf-plugins-core": "^8.0.3",
|
|
48
48
|
"csv-parse": "^5.5.5",
|
|
49
49
|
"fast-xml-parser": "^4.3.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@oclif/plugin-command-snapshot": "^5.1.4",
|
|
53
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
54
|
-
"@salesforce/dev-scripts": "^8.
|
|
53
|
+
"@salesforce/cli-plugins-testkit": "^5.1.14",
|
|
54
|
+
"@salesforce/dev-scripts": "^8.5.0",
|
|
55
55
|
"@salesforce/plugin-command-reference": "^3.0.74",
|
|
56
|
-
"eslint-plugin-sf-plugin": "^1.17.
|
|
56
|
+
"eslint-plugin-sf-plugin": "^1.17.5",
|
|
57
57
|
"jsforce": "^2.0.0-beta.29",
|
|
58
58
|
"oclif": "^4.7.3",
|
|
59
59
|
"ts-node": "^10.9.2",
|
|
60
|
-
"typescript": "^5.4.
|
|
60
|
+
"typescript": "^5.4.4"
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">=18.0.0"
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"type": "module",
|
|
243
243
|
"author": "Salesforce",
|
|
244
244
|
"sfdx": {
|
|
245
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.2.
|
|
246
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.2.
|
|
245
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.2.3.crt",
|
|
246
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.2.3.sig"
|
|
247
247
|
}
|
|
248
248
|
}
|