@azure-rest/developer-devcenter 1.0.2-alpha.20250328.1 → 1.0.2-alpha.20250401.2

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 ADDED
@@ -0,0 +1,93 @@
1
+ # Release History
2
+
3
+ ## 1.0.2 (Unreleased)
4
+
5
+ ### Features Added
6
+
7
+ ### Breaking Changes
8
+
9
+ ### Bugs Fixed
10
+
11
+ ### Other Changes
12
+
13
+ ## 1.0.1 (2025-02-10)
14
+
15
+ ### Features Added
16
+
17
+ - refresh @azure-rest/developer-devcenter sdk
18
+
19
+ ## 1.0.0 (2024-07-08)
20
+
21
+ This release targets Azure Dev Center 2023-04-01 General Available API, which is the same version as the previous 1.0.0-beta.3 release.
22
+
23
+ ### Features Added
24
+
25
+ - Added output types:
26
+ - DevBoxActionDelayResultStatusOutput
27
+ - DevBoxActionTypeOutput
28
+ - DevBoxProvisioningStateOutput
29
+ - EnvironmentProvisioningStateOutput
30
+ - EnvironmentTypeEnableStatusOutput
31
+ - HibernateSupportOutput
32
+ - LocalAdminStatusOutput
33
+ - OperationStateOutput
34
+ - OsTypeOutput
35
+ - ParameterTypeOutput
36
+ - PoolHealthStatusOutput
37
+ - PowerStateOutput
38
+ - ScheduledFrequencyOutput
39
+ - ScheduledTypeOutput
40
+ - SkuNameOutput
41
+ - StopOnDisconnectEnableStatusOutput
42
+
43
+ ### Breaking Changes
44
+
45
+ - Rename interfaces to match operation names in Dev Center API documentation
46
+ - ListSchedules was renamed to ListSchedulesByPool
47
+ - GetSchedule was renamed to GetScheduleByPool
48
+ - ListDevBoxes was renamed to ListDevBoxesByUser
49
+ - GetDevBox was renamed to GetDevBoxByUser
50
+ - ListDevBoxActions was renamed to ListActions
51
+ - GetDevBoxAction was renamed to GetAction
52
+ - DelayAllActions was renamed to DelayActions
53
+ - ListAllEnvironments was renamed to ListEnvironments
54
+ - ListEnvironments was renamed to ListEnvironmentsByUser
55
+ - GetEnvironment was renamed to GetEnvironmentByUser
56
+ - CreateOrUpdateEnvironment was renamed to CreateOrReplaceEnvironment
57
+ - ListCatalogs was renamed to ListCatalogsByProject
58
+ - ListEnvironmentDefinitions was renamed to listEnvironmentDefinitionsByProject
59
+
60
+ ## 1.0.0-beta.3 (2023-11-20)
61
+ This release updates the Azure DevCenter library to use the 2023-04-01 GA API.
62
+
63
+ ### Breaking Changes
64
+
65
+ - Environments client now works with "environment definitions" instead of "catalog items"
66
+ - Creating a new environment requires passing `environmentDefinitionName` instead of `catalogItemName`
67
+ - Creating a new environment requires passing an additional parameter `catalogName`
68
+
69
+ ## 1.0.0-beta.2 (2023-02-07)
70
+
71
+ This release updates the Azure DevCenter library to use the 2022-11-11-preview API.
72
+
73
+ ### Breaking Changes
74
+
75
+ - `createClient` now accepts an endpoint URI on construction rather than tenant ID + dev center name.
76
+
77
+ ### Features Added
78
+
79
+ - Added upcoming actions APIs to dev boxes.
80
+ - `/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions`
81
+ - `/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions/{upcomingActionId}`
82
+ - `/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions/{upcomingActionId}:skip`
83
+ - `/projects/{projectName}/users/{userId}/devboxes/{devBoxName}/upcomingActions/{upcomingActionId}:delay`
84
+
85
+ ### Bugs Fixed
86
+ - Invalid response types removed from `DeleteDevBox`, `StartDevBox`, and `StopDevBox` APIs.
87
+ - Invalid `DeleteEnvironmentAction` API removed from `EnvironmentsClient`.
88
+ - Unimplemented artifacts APIs removed from `EnvironmentsClient`.
89
+
90
+ ## 1.0.0-beta.1 (2022-11-11)
91
+
92
+ ### Features Added
93
+ Initial release of the Azure DevCenter package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-rest/developer-devcenter",
3
- "version": "1.0.2-alpha.20250328.1",
3
+ "version": "1.0.2-alpha.20250401.2",
4
4
  "description": "Azure Developer DevCenter Client",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -37,7 +37,9 @@
37
37
  "files": [
38
38
  "dist/",
39
39
  "README.md",
40
- "LICENSE"
40
+ "LICENSE",
41
+ "review/",
42
+ "CHANGELOG.md"
41
43
  ],
42
44
  "sdk-type": "client",
43
45
  "repository": "github:Azure/azure-sdk-for-js",