File tree 4 files changed +5
-3
lines changed 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 23
23
" MWE"
24
24
],
25
25
"license" : " MIT" ,
26
- "exports" : " ./lib/workaround .js" ,
26
+ "exports" : " ./lib/index .js" ,
27
27
"publishConfig" : {
28
28
"access" : " public"
29
29
},
Original file line number Diff line number Diff line change
1
+ export * from "./workaround.js" ;
2
+ export * from "./mapping.js" ;
Original file line number Diff line number Diff line change 1
1
// https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/standardvalueset_names.htm
2
- export default {
2
+ export const MAPPING = {
3
3
"AccountContactRelation.Roles" : "AccountContactMultiRoles" ,
4
4
"AccountContactRole.Role" : "AccountContactRole" ,
5
5
"Account.Ownership" : "AccountOwnership" ,
Original file line number Diff line number Diff line change 1
1
import type { FileProperties } from "@jsforce/jsforce-node/lib/api/metadata.js" ;
2
2
import type { Connection } from "@salesforce/core" ;
3
- import MAPPING from "./mapping.js" ;
3
+ import { MAPPING } from "./mapping.js" ;
4
4
5
5
export async function listStandardValueSets (
6
6
conn : Connection
You can’t perform that action at this time.
0 commit comments