Skip to content

Commit b3bc3e7

Browse files
authored
fix: fix whitelisted commerce and experience wires (#100)
1 parent 72f52e7 commit b3bc3e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

base.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ const KNOWN_WIRE_ADAPTERS = [
1919
// All commerce API adapters
2020
{
2121
module: 'commerce/*Api',
22-
identifier: '*',
22+
identifier: '*Adapter',
2323
},
2424
// All experience API adapters
2525
{
2626
module: 'experience/*Api',
27-
identifier: '*',
27+
identifier: 'get*',
2828
},
2929
];
3030

3131
const WIRE_ADAPTERS_WITH_RESTRICTED_USE = [
3232
// All commerce API adapters
3333
{
3434
module: 'commerce/*Api',
35-
identifier: '*',
35+
identifier: '*Adapter',
3636
},
3737
// All experience API adapters
3838
{
3939
module: 'experience/*Api',
40-
identifier: '*',
40+
identifier: 'get*',
4141
},
4242
{
4343
module: 'lightning/analyticsWaveApi',

0 commit comments

Comments
 (0)