forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 31855 in Azure/azure-rest-api-specs
Merge c28011532d39265e56754d50b375b0ac9cab15ce into c335551e028d88eccf20a474944392438136bebc
- Loading branch information
SDKAuto
committed
Dec 19, 2024
1 parent
340cf3a
commit 0f2fd92
Showing
91 changed files
with
3,532 additions
and
4,474 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,7 @@ | ||
# Release History | ||
|
||
## 1.0.0-beta.3 (Unreleased) | ||
|
||
### Features Added | ||
|
||
### Breaking Changes | ||
|
||
### Bugs Fixed | ||
|
||
### Other Changes | ||
|
||
## 1.0.0-beta.2 (2024-01-31) | ||
|
||
### Features Added | ||
|
||
- Added Interface AccountProperties | ||
- Added Interface AccountUpdateProperties | ||
- Added Interface QuotaProperties | ||
- Interface Account has a new optional parameter properties | ||
- Interface AccountUpdate has a new optional parameter properties | ||
- Interface Quota has a new optional parameter properties | ||
|
||
### Breaking Changes | ||
## 1.0.0 (2024-12-19) | ||
|
||
- Interface Account no longer has parameter dashboardUri | ||
- Interface Account no longer has parameter provisioningState | ||
- Interface Account no longer has parameter regionalAffinity | ||
- Interface Account no longer has parameter reporting | ||
- Interface Account no longer has parameter scalableExecution | ||
- Interface AccountUpdate no longer has parameter regionalAffinity | ||
- Interface AccountUpdate no longer has parameter reporting | ||
- Interface AccountUpdate no longer has parameter scalableExecution | ||
- Interface Quota no longer has parameter freeTrial | ||
- Interface Quota no longer has parameter provisioningState | ||
|
||
|
||
## 1.0.0-beta.1 (2023-09-27) | ||
### Features Added | ||
|
||
The package of @azure/arm-playwrighttesting is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart ). | ||
The package of @azure/arm-playwrighttesting is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
27 changes: 7 additions & 20 deletions
27
sdk/playwrighttesting/arm-playwrighttesting/api-extractor.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,18 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
"mainEntryPointFilePath": "./dist-esm/src/index.d.ts", | ||
"docModel": { | ||
"enabled": true | ||
}, | ||
"apiReport": { | ||
"enabled": true, | ||
"reportFolder": "./review" | ||
}, | ||
"mainEntryPointFilePath": "./dist/esm/index.d.ts", | ||
"docModel": { "enabled": true }, | ||
"apiReport": { "enabled": true, "reportFolder": "./review" }, | ||
"dtsRollup": { | ||
"enabled": true, | ||
"untrimmedFilePath": "", | ||
"publicTrimmedFilePath": "./types/arm-playwrighttesting.d.ts" | ||
}, | ||
"messages": { | ||
"tsdocMessageReporting": { | ||
"default": { | ||
"logLevel": "none" | ||
} | ||
}, | ||
"tsdocMessageReporting": { "default": { "logLevel": "none" } }, | ||
"extractorMessageReporting": { | ||
"ae-missing-release-tag": { | ||
"logLevel": "none" | ||
}, | ||
"ae-unresolved-link": { | ||
"logLevel": "none" | ||
} | ||
"ae-missing-release-tag": { "logLevel": "none" }, | ||
"ae-unresolved-link": { "logLevel": "none" } | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
sdk/playwrighttesting/arm-playwrighttesting/eslint.config.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import azsdkEslint from "@azure/eslint-plugin-azure-sdk"; | ||
|
||
export default [ | ||
...azsdkEslint.configs.recommended, | ||
{ | ||
rules: { | ||
"@azure/azure-sdk/ts-modules-only-named": "warn", | ||
"@azure/azure-sdk/ts-apiextractor-json-types": "warn", | ||
"@azure/azure-sdk/ts-package-json-types": "warn", | ||
"@azure/azure-sdk/ts-package-json-engine-is-present": "warn", | ||
"@azure/azure-sdk/ts-package-json-module": "off", | ||
"@azure/azure-sdk/ts-package-json-files-required": "off", | ||
"@azure/azure-sdk/ts-package-json-main-is-cjs": "off", | ||
"tsdoc/syntax": "warn" | ||
} | ||
} | ||
]; |
Oops, something went wrong.