-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathazure-cosmos.js
More file actions
48 lines (48 loc) · 1.2 KB
/
azure-cosmos.js
File metadata and controls
48 lines (48 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = [{
module: {
name: '@azure/cosmos',
versionRange: '>=4.4.0',
filePath: 'dist/browser/plugins/Plugin.js' // file containing the target method
},
functionQuery: {
functionName: 'executePlugins',
kind: 'Async' // Async | Callback | Sync
},
channelName: 'executePlugins'
},
{
module: {
name: '@azure/cosmos',
versionRange: '>=4.4.0',
filePath: 'dist/commonjs/plugins/Plugin.js' // file containing the target method
},
functionQuery: {
functionName: 'executePlugins',
kind: 'Async' // Async | Callback | Sync
},
channelName: 'executePlugins'
},
{
module: {
name: '@azure/cosmos',
versionRange: '>=4.4.0',
filePath: 'dist/esm/plugins/Plugin.js' // file containing the target method
},
functionQuery: {
functionName: 'executePlugins',
kind: 'Async' // Async | Callback | Sync
},
channelName: 'executePlugins'
},
{
module: {
name: '@azure/cosmos',
versionRange: '>=4.4.0',
filePath: 'dist/react-native/plugins/Plugin.js' // file containing the target method
},
functionQuery: {
functionName: 'executePlugins',
kind: 'Async' // Async | Callback | Sync
},
channelName: 'executePlugins'
}]