@or-sdk/queue-manager 1.2.37 → 1.2.38-beta.3090.0
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 +2 -2
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -10,13 +10,13 @@ import { QueueManager } from '@or-sdk/queue-manager'
|
|
|
10
10
|
// with direct api url
|
|
11
11
|
const queueManager = new QueueManager({
|
|
12
12
|
token: 'my-account-token-string',
|
|
13
|
-
eventManagerUrl: 'http://example.
|
|
13
|
+
eventManagerUrl: 'http://example.event-manager/endpoint',
|
|
14
14
|
providersAccountId: 'providers-account-id'
|
|
15
15
|
});
|
|
16
16
|
|
|
17
17
|
// with service discovery(slower)
|
|
18
18
|
const queueManager = new QueueManager({
|
|
19
19
|
token: 'my-account-token-string',
|
|
20
|
-
discoveryUrl: 'http://example.
|
|
20
|
+
discoveryUrl: 'http://example.discovery/endpoint'
|
|
21
21
|
});
|
|
22
22
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/queue-manager",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.38-beta.3090.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@or-sdk/base": "^0.39.2",
|
|
22
|
-
"@or-sdk/providers": "^0.2.
|
|
22
|
+
"@or-sdk/providers": "^0.2.40-beta.3090.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"concurrently": "9.0.1",
|
|
@@ -27,6 +27,5 @@
|
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
|
-
}
|
|
31
|
-
"gitHead": "6999b19155b0149a043762916aa6ab17c74796aa"
|
|
30
|
+
}
|
|
32
31
|
}
|