@azure-rest/communication-job-router 1.1.0-alpha.20250328.4 → 1.1.0-alpha.20250402.1
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/CHANGELOG.md +51 -0
- package/package.json +4 -2
- package/review/communication-job-router.api.md +2598 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Release History
|
|
2
|
+
|
|
3
|
+
## 1.1.0-beta.3 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
## 1.1.0-beta.2 (2025-02-10)
|
|
14
|
+
|
|
15
|
+
### Features Added
|
|
16
|
+
|
|
17
|
+
- refresh @azure-rest/communication-job-router sdk
|
|
18
|
+
|
|
19
|
+
## 1.1.0-beta.1 (2024-04-12)
|
|
20
|
+
|
|
21
|
+
### Features Added
|
|
22
|
+
|
|
23
|
+
#### RouterWorker
|
|
24
|
+
|
|
25
|
+
- Added `MaxConcurrentOffers`
|
|
26
|
+
|
|
27
|
+
## 1.0.0 (2023-11-01)
|
|
28
|
+
|
|
29
|
+
### Features Added
|
|
30
|
+
|
|
31
|
+
This is the initial release of the @azure-rest version of Job Router SDK.
|
|
32
|
+
There was a previous preview SDK under a different package named @azure/communication-job-router which will be deprecated.
|
|
33
|
+
|
|
34
|
+
Using AzureCommunicationRoutingServiceClient:
|
|
35
|
+
|
|
36
|
+
- Upsert, get, list and delete DistributionPolicy.
|
|
37
|
+
- Upsert, get, list and delete RouterQueue.
|
|
38
|
+
- Upsert, get, list and delete ClassificationPolicy.
|
|
39
|
+
- Upsert, get, list and delete ExceptionPolicy.
|
|
40
|
+
- Upsert, get, list and delete RouterJob.
|
|
41
|
+
- RouterJob can be created and updated with different matching modes: QueueAndMatchMode, ScheduleAndSuspendMode and SuspendMode.
|
|
42
|
+
- Reclassify a RouterJob.
|
|
43
|
+
- Close a RouterJob.
|
|
44
|
+
- Complete a RouterJob.
|
|
45
|
+
- Cancel a RouterJob.
|
|
46
|
+
- Unassign a RouterJob.
|
|
47
|
+
- Get the position of a RouterJob in a queue.
|
|
48
|
+
- Upsert, get, list and delete RouterWorker.
|
|
49
|
+
- Accept an offer.
|
|
50
|
+
- Decline an offer.
|
|
51
|
+
- Get queue statistics.
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure-rest/communication-job-router",
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
|
-
"version": "1.1.0-alpha.
|
|
5
|
+
"version": "1.1.0-alpha.20250402.1",
|
|
6
6
|
"description": "Azure client library for Azure Communication Job Router services",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
"files": [
|
|
24
24
|
"dist/",
|
|
25
25
|
"README.md",
|
|
26
|
-
"LICENSE"
|
|
26
|
+
"LICENSE",
|
|
27
|
+
"review/",
|
|
28
|
+
"CHANGELOG.md"
|
|
27
29
|
],
|
|
28
30
|
"engines": {
|
|
29
31
|
"node": ">=18.0.0"
|