From f894c9e9a0e764d1b8f3c97c8eb1a31f05b13503 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Thu, 9 Oct 2025 15:56:32 -0700 Subject: [PATCH 01/73] Sync eng/common directory with azure-sdk-tools for PR 12416 (#36145) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12416 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) --------- Co-authored-by: ray chen --- eng/common/scripts/Detect-Api-Changes.ps1 | 49 ++++++++++++++--------- 1 file changed, 29 insertions(+), 20 deletions(-) diff --git a/eng/common/scripts/Detect-Api-Changes.ps1 b/eng/common/scripts/Detect-Api-Changes.ps1 index 25f3101a8b9b..1e9bfc4a0030 100644 --- a/eng/common/scripts/Detect-Api-Changes.ps1 +++ b/eng/common/scripts/Detect-Api-Changes.ps1 @@ -80,22 +80,13 @@ function Submit-Request($filePath, $packageName) return $StatusCode } -function Should-Process-Package($pkgPath, $packageName) +function Should-Process-Package($packageInfo) { - $pkg = Split-Path -Leaf $pkgPath - $pkgPropPath = Join-Path -Path $configFileDir "$packageName.json" - if (!(Test-Path $pkgPropPath)) - { - LogWarning "Package property file path $($pkgPropPath) is invalid." - return $False - } - # Get package info from json file created before updating version to daily dev - $pkgInfo = Get-Content $pkgPropPath | ConvertFrom-Json - $packagePath = $pkgInfo.DirectoryPath + $packagePath = $packageInfo.DirectoryPath $modifiedFiles = @(Get-ChangedFiles -DiffPath "$packagePath/*" -DiffFilterType '') $filteredFileCount = $modifiedFiles.Count LogInfo "Number of modified files for package: $filteredFileCount" - return ($filteredFileCount -gt 0 -and $pkgInfo.IsNewSdk) + return ($filteredFileCount -gt 0 -and $packageInfo.IsNewSdk) } function Log-Input-Params() @@ -126,24 +117,42 @@ $responses = @{} LogInfo "Processing PackageInfo at $configFileDir" -$packageProperties = Get-ChildItem -Recurse -Force "$configFileDir" ` - | Where-Object { +$packageInfoFiles = Get-ChildItem -Recurse -Force "$configFileDir" ` + | Where-Object { $_.Extension -eq '.json' -and ($_.FullName.Substring($configFileDir.Length + 1) -notmatch '^_.*?[\\\/]') } -foreach ($packagePropFile in $packageProperties) +foreach ($packageInfoFile in $packageInfoFiles) { - $packageMetadata = Get-Content $packagePropFile | ConvertFrom-Json - $pkgArtifactName = $packageMetadata.ArtifactName ?? $packageMetadata.Name + $packageInfo = Get-Content $packageInfoFile | ConvertFrom-Json + $pkgArtifactName = $packageInfo.ArtifactName ?? $packageInfo.Name LogInfo "Processing $($pkgArtifactName)" - $packages = &$FindArtifactForApiReviewFn $ArtifactPath $pkgArtifactName + # Check if the function supports the packageInfo parameter + $functionInfo = Get-Command $FindArtifactForApiReviewFn -ErrorAction SilentlyContinue + $supportsPackageInfoParam = $false + + if ($functionInfo -and $functionInfo.Parameters) { + # Check if function specifically supports packageInfo parameter + $parameterNames = $functionInfo.Parameters.Keys + $supportsPackageInfoParam = $parameterNames -contains 'packageInfo' + } + + # Call function with appropriate parameters + if ($supportsPackageInfoParam) { + LogInfo "Calling $FindArtifactForApiReviewFn with packageInfo parameter" + $packages = &$FindArtifactForApiReviewFn $ArtifactPath $pkgArtifactName $packageInfo + } + else { + LogInfo "Calling $FindArtifactForApiReviewFn with legacy parameters" + $packages = &$FindArtifactForApiReviewFn $ArtifactPath $pkgArtifactName + } if ($packages) { $pkgPath = $packages.Values[0] - $isRequired = Should-Process-Package -pkgPath $pkgPath -packageName $pkgArtifactName + $isRequired = Should-Process-Package $packageInfo LogInfo "Is API change detect required for $($pkgArtifactName):$($isRequired)" if ($isRequired -eq $True) { @@ -156,7 +165,7 @@ foreach ($packagePropFile in $packageProperties) } else { - LogInfo "Pull request does not have any change for $($pkgArtifactName)). Skipping API change detect." + LogInfo "Pull request does not have any change for $($pkgArtifactName). Skipping API change detect." } } else From 0db6fb90faa4b4978172255c05e2d210aee4a663 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Thu, 9 Oct 2025 17:18:08 -0700 Subject: [PATCH 02/73] Sync eng/common directory with azure-sdk-tools for PR 12396 (#36132) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12396 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: raych1 <20296335+raych1@users.noreply.github.com> Co-authored-by: weshaggard <9010698+weshaggard@users.noreply.github.com> --- .../templates/archetype-typespec-emitter.yml | 27 ++++++++++++------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/eng/common/pipelines/templates/archetype-typespec-emitter.yml b/eng/common/pipelines/templates/archetype-typespec-emitter.yml index c359c3b1ae12..65f1bda9efbc 100644 --- a/eng/common/pipelines/templates/archetype-typespec-emitter.yml +++ b/eng/common/pipelines/templates/archetype-typespec-emitter.yml @@ -259,27 +259,34 @@ extends: displayName: Download pipeline artifacts - pwsh: | - npm install -g @azure-tools/typespec-client-generator-cli@latest + npm ci displayName: Install tsp-client + workingDirectory: $(Build.SourcesDirectory)/eng/common/tsp-client - pwsh: | + # Resolve EmitterPackageJsonOutputPath to absolute path if it's relative + $emitterPath = '${{ parameters.EmitterPackageJsonOutputPath }}' + if (-not [System.IO.Path]::IsPathRooted($emitterPath)) { + $emitterPath = Join-Path '$(Build.SourcesDirectory)' $emitterPath + } + Write-Host "Overrides location: $(buildArtifactsPath)/packages/overrides.json" + Write-Host "Resolved emitter package path: $emitterPath" if (Test-Path -Path '$(buildArtifactsPath)/packages/overrides.json') { Write-Host "Using overrides.json to generate emitter-package.json" - tsp-client generate-config-files ` - --package-json '$(buildArtifactsPath)/lock-files/package.json' ` - --emitter-package-json-path '${{ parameters.EmitterPackageJsonOutputPath }}' ` - --overrides '$(buildArtifactsPath)/packages/overrides.json' + npm exec --no -- tsp-client generate-config-files ` + --package-json '$(buildArtifactsPath)/lock-files/package.json' ` + --emitter-package-json-path "$emitterPath" ` + --overrides '$(buildArtifactsPath)/packages/overrides.json' } else { Write-Host "No overrides.json found. Running tsp-client without overrides." - - tsp-client generate-config-files ` - --package-json '$(buildArtifactsPath)/lock-files/package.json' ` - --emitter-package-json-path '${{ parameters.EmitterPackageJsonOutputPath }}' + npm exec --no -- tsp-client generate-config-files ` + --package-json '$(buildArtifactsPath)/lock-files/package.json' ` + --emitter-package-json-path "$emitterPath" } displayName: Generate emitter-package.json and emitter-package-lock files - workingDirectory: $(Build.SourcesDirectory) + workingDirectory: $(Build.SourcesDirectory)/eng/common/tsp-client - ${{ parameters.InitializationSteps }} From 731003547e55875a3933ce3f8e5a8952b1d8b8d1 Mon Sep 17 00:00:00 2001 From: Kyle Zhang Date: Fri, 10 Oct 2025 11:40:37 +0800 Subject: [PATCH 03/73] [SDK generation pipeline] install tsp-client locally (#36026) https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5377324&view=logs&j=83516c17-6666-5250-abde-63983ce72a49 https://github.com/Azure/azure-sdk-tools/issues/12171 ### Packages impacted by this PR ### Issues associated with this PR ### Describe the problem that is addressed by this PR ### What are the possible designs available to address the problem? If there are more than one possible design, why was the one in this PR chosen? ### Are there test cases added in this PR? _(If not, why?)_ ### Provide a list of related PRs _(if any)_ ### Command used to generate this PR:**_(Applicable only to SDK release request PRs)_ ### Checklists - [ ] Added impacted package name to the issue description - [ ] Does this PR needs any fixes in the SDK Generator?** _(If so, create an Issue in the [Autorest/typescript](https://github.com/Azure/autorest.typescript) repository and link it here)_ - [ ] Added a changelog (if necessary) --------- Co-authored-by: Kyle Zhang --- .scripts/automation_init.sh | 5 ++++- documentation/DPG-quickstart.md | 8 ++++---- documentation/Generate-code-from-TypeSpec.md | 10 +++++----- documentation/RLC-quickstart.md | 8 ++++---- 4 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.scripts/automation_init.sh b/.scripts/automation_init.sh index 28f7fc3c3aa3..2a6c7d621f00 100644 --- a/.scripts/automation_init.sh +++ b/.scripts/automation_init.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash -npm install -g @azure-tools/typespec-client-generator-cli@0.21.0 +echo "Install tsp-client" +cd eng/common/tsp-client +npm ci +cd ../../.. npm install -g pnpm npm install -g @azure-tools/js-sdk-release-tools diff --git a/documentation/DPG-quickstart.md b/documentation/DPG-quickstart.md index 621eb4d8347b..e30cd01f0493 100644 --- a/documentation/DPG-quickstart.md +++ b/documentation/DPG-quickstart.md @@ -17,7 +17,7 @@ Join the [JavaScript - Reviews](https://teams.microsoft.com/l/channel/19%3a408c5 - Node.js 18 or later. - Install pnpm with the [pnpm installation instructions](https://pnpm.io/installation). -- Install tsp-client with `npm install -g @azure-tools/typespec-client-generator-cli` +- Install tsp-client dependencies with `npm --prefix eng/common/tsp-client ci` # Set up your development environment @@ -68,13 +68,13 @@ The `package name` is used when publishing to [npmjs](https://www.npmjs.com/). I For initial set up, use the `tsp-client` CLI tool to initialize the generation process. From the root of your local `azure-sdk-for-js` repository clone, run the following command, replacing `YOUR_REMOTE_TSPCONFIG_URL` with the URL to your TypeSpec configuration file: ```sh - tsp-client init -c YOUR_REMOTE_TSPCONFIG_URL + npm --prefix eng/common/tsp-client exec --no -- tsp-client init -c YOUR_REMOTE_TSPCONFIG_URL ``` If you are generating the DPG library for Azure Cognitive Services Content Safety, and your TypeSpec configuration file is located at `https://github.com/Azure/azure-rest-api-specs/blob/46ca83821edd120552403d4d11cf1dd22360c0b5/specification/cognitiveservices/ContentSafety/tspconfig.yaml`, you would initialize the library like this: ```sh - tsp-client init -c https://github.com/Azure/azure-rest-api-specs/blob/46ca83821edd120552403d4d11cf1dd22360c0b5/specification/cognitiveservices/ContentSafety/tspconfig.yaml + npm --prefix eng/common/tsp-client exec --no -- tsp-client init -c https://github.com/Azure/azure-rest-api-specs/blob/46ca83821edd120552403d4d11cf1dd22360c0b5/specification/cognitiveservices/ContentSafety/tspconfig.yaml ``` This command sets up your local SDK repository with the necessary structure and files based on your `tspconfig.yaml` file and then generate SDKs with given url typespec. @@ -92,7 +92,7 @@ The `package name` is used when publishing to [npmjs](https://www.npmjs.com/). I Run the `update` command from SDK directory (i.e sdk/agrifood/agrifood-farming) to re-generate the code: ```sh - tsp-client update + npm --prefix ../../../eng/common/tsp-client exec --no -- tsp-client update ``` --- diff --git a/documentation/Generate-code-from-TypeSpec.md b/documentation/Generate-code-from-TypeSpec.md index 2c013ecb9492..85da0c830208 100644 --- a/documentation/Generate-code-from-TypeSpec.md +++ b/documentation/Generate-code-from-TypeSpec.md @@ -45,7 +45,7 @@ in your tspconfig.yaml - "parameters.service-dir.default" would be `sdk/` -- "options.@azure-tools/typespec-ts.emitter-output-dir" would be `` +- "options.@azure-tools/typespec-ts.emitter-output-dir" would be `{output-dir}/{service-dir}/` SDK module would be generated under the SDK project folder at `sdk//`. @@ -54,7 +54,7 @@ SDK module would be generated under the SDK project folder at `sdk// +npm --prefix eng/common/tsp-client exec --no -- tsp-client init -c ``` For updating TypeSpec generated SDK, call below in the SDK module folder (`sdk//`) where `tsp-location.yaml` exists ```ps -tsp-client update +npm --prefix ../../../eng/common/tsp-client exec --no -- tsp-client update ``` **Notice** diff --git a/documentation/RLC-quickstart.md b/documentation/RLC-quickstart.md index 982c6153443e..78a8935a5d8d 100644 --- a/documentation/RLC-quickstart.md +++ b/documentation/RLC-quickstart.md @@ -15,7 +15,7 @@ Join the [JavaScript - Reviews](https://teams.microsoft.com/l/channel/19%3a408c5 - Node.js 18 or later. - Install pnpm via the [pnpm installation instructions](https://pnpm.io/installation). -- Install tsp-client with `npm install -g @azure-tools/typespec-client-generator-cli` +- Install tsp-client dependencies with `npm --prefix eng/common/tsp-client ci` # Set up your development environment @@ -64,13 +64,13 @@ The `package name` is used when publishing to [npmjs](https://www.npmjs.com/). I For initial set up, use the `tsp-client` CLI tool to initialize the generation process. From the root of your local `azure-sdk-for-js` repository clone, run the following command, replacing `YOUR_REMOTE_TSPCONFIG_URL` with the URL to your TypeSpec configuration file: ```sh - tsp-client init -c YOUR_REMOTE_TSPCONFIG_URL + npm --prefix eng/common/tsp-client exec --no -- tsp-client init -c YOUR_REMOTE_TSPCONFIG_URL ``` If you are generating the RLC library for Azure Cognitive Services Content Safety, and your TypeSpec configuration file is located at `https://github.com/Azure/azure-rest-api-specs/blob/46ca83821edd120552403d4d11cf1dd22360c0b5/specification/cognitiveservices/ContentSafety/tspconfig.yaml`, you would initialize the library like this: ```shell - tsp-client init -c https://github.com/Azure/azure-rest-api-specs/blob/46ca83821edd120552403d4d11cf1dd22360c0b5/specification/cognitiveservices/ContentSafety/tspconfig.yaml + npm --prefix eng/common/tsp-client exec --no -- tsp-client init -c https://github.com/Azure/azure-rest-api-specs/blob/46ca83821edd120552403d4d11cf1dd22360c0b5/specification/cognitiveservices/ContentSafety/tspconfig.yaml ``` This command sets up your local SDK repository with the necessary structure and files based on your `tspconfig.yaml` file and then generate SDKs with given url typespec. @@ -88,7 +88,7 @@ The `package name` is used when publishing to [npmjs](https://www.npmjs.com/). I Run the `update` command from SDK directory (i.e sdk/agrifood/agrifood-farming) to re-generate the code: ```shell - tsp-client update + npm --prefix ../../../eng/common/tsp-client exec --no -- tsp-client update ``` --- From 2a697e94f4d9ca514291cdac1375b1dde05242a1 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 10 Oct 2025 10:26:12 -0700 Subject: [PATCH 04/73] Sync eng/common directory with azure-sdk-tools for PR 12224 (#36175) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12224 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com> --- .../templates/archetype-typespec-emitter.yml | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/eng/common/pipelines/templates/archetype-typespec-emitter.yml b/eng/common/pipelines/templates/archetype-typespec-emitter.yml index 65f1bda9efbc..dab06ccb1588 100644 --- a/eng/common/pipelines/templates/archetype-typespec-emitter.yml +++ b/eng/common/pipelines/templates/archetype-typespec-emitter.yml @@ -137,13 +137,28 @@ extends: $sourceBranch = '$(Build.SourceBranch)' $buildReason = '$(Build.Reason)' $buildNumber = '$(Build.BuildNumber)' + $emitterPackagePath = '${{ parameters.EmitterPackagePath }}' + + # Create emitter identifier from package path for disambiguation + $emitterIdentifier = "" + if (-not [string]::IsNullOrWhiteSpace($emitterPackagePath)) { + # Extract filename without extension and make it safe for branch names + $emitterIdentifier = [System.IO.Path]::GetFileNameWithoutExtension($emitterPackagePath) + # Replace any characters that aren't alphanumeric, hyphens, or underscores + $emitterIdentifier = $emitterIdentifier -replace '[^a-zA-Z0-9\-_]', '-' + # Remove any leading/trailing hyphens and convert to lowercase + $emitterIdentifier = $emitterIdentifier.Trim('-').ToLower() + if (-not [string]::IsNullOrWhiteSpace($emitterIdentifier)) { + $emitterIdentifier = "-$emitterIdentifier" + } + } if ($buildReason -eq 'Schedule') { - $branchName = 'validate-typespec-scheduled' + $branchName = "validate-typespec-scheduled$emitterIdentifier" } elseif ($sourceBranch -match "^refs/pull/(\d+)/(head|merge)$") { - $branchName = "validate-typespec-pr-$($Matches[1])" + $branchName = "validate-typespec-pr-$($Matches[1])$emitterIdentifier" } else { - $branchName = "validate-typespec-$buildNumber" + $branchName = "validate-typespec-$buildNumber$emitterIdentifier" } Write-Host "Setting variable 'branchName' to '$branchName'" From 8448a340177c0b35486e73b503e5fcacf4c8afb2 Mon Sep 17 00:00:00 2001 From: ZiWei Chen <98569699+kazrael2119@users.noreply.github.com> Date: Sat, 11 Oct 2025 02:07:32 +0800 Subject: [PATCH 05/73] [mgmt] Add format scripts for computeschedule package.json (#36148) fixes https://github.com/Azure/azure-sdk-for-js/issues/36107 --------- Co-authored-by: Jeremy Meng --- sdk/computeschedule/arm-computeschedule/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/computeschedule/arm-computeschedule/package.json b/sdk/computeschedule/arm-computeschedule/package.json index a3f1342c519a..d967eab3fcf9 100644 --- a/sdk/computeschedule/arm-computeschedule/package.json +++ b/sdk/computeschedule/arm-computeschedule/package.json @@ -93,12 +93,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", "lint": "echo skipped", "lint:fix": "echo skipped", "pack": "pnpm pack 2>&1", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", From 7b1d42a130b99eb07fe7520c7f86353bce33ea84 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 10 Oct 2025 11:48:14 -0700 Subject: [PATCH 06/73] Sync eng/common directory with azure-sdk-tools for PR 12444 (#36181) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12444 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) Co-authored-by: Summer Warren --- .../Helpers/DevOps-WorkItem-Helpers.ps1 | 64 +++++++------------ 1 file changed, 23 insertions(+), 41 deletions(-) diff --git a/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 b/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 index 79b9bb96dae7..e87b2c8a91b3 100644 --- a/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 +++ b/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 @@ -1114,7 +1114,7 @@ function Get-ReleasePlan-Link($releasePlanWorkItemId) return $workItem["fields"] } -function Get-ReleasePlansForCPEXAttestation($releasePlanWorkItemId = $null, $targetServiceTreeId = $null) +function Get-ReleasePlansForCPEXAttestation() { $fields = @() $fields += "Custom.ProductServiceTreeID" @@ -1127,32 +1127,23 @@ function Get-ReleasePlansForCPEXAttestation($releasePlanWorkItemId = $null, $tar $fieldList = ($fields | ForEach-Object { "[$_]"}) -join ", " $query = "SELECT ${fieldList} FROM WorkItems WHERE [System.WorkItemType] = 'Release Plan'" - - if ($releasePlanWorkItemId){ - $query += " AND [System.Id] = '$releasePlanWorkItemId'" - } else { - $query += " AND [System.State] = 'Finished'" - $query += " AND [Custom.AttestationStatus] IN ('', 'Pending')" - $query += " AND [System.Tags] NOT CONTAINS 'Release Planner App Test'" - $query += " AND [System.Tags] NOT CONTAINS 'Release Planner Test App'" - $query += " AND [System.Tags] NOT CONTAINS 'non-APEX tracking'" - $query += " AND [System.Tags] NOT CONTAINS 'out of scope APEX'" - $query += " AND [System.Tags] NOT CONTAINS 'APEX out of scope'" - $query += " AND [System.Tags] NOT CONTAINS 'validate APEX out of scope'" - $query += " AND [Custom.ProductServiceTreeID] <> ''" - $query += " AND [Custom.ProductLifecycle] <> ''" - $query += " AND [Custom.ProductType] IN ('Feature', 'Offering', 'Sku')" - } - - if ($targetServiceTreeId){ - $query += " AND [Custom.ProductServiceTreeID] = '${targetServiceTreeId}'" - } + $query += " AND [System.State] = 'Finished'" + $query += " AND [Custom.AttestationStatus] IN ('', 'Pending')" + $query += " AND [System.Tags] NOT CONTAINS 'Release Planner App Test'" + $query += " AND [System.Tags] NOT CONTAINS 'Release Planner Test App'" + $query += " AND [System.Tags] NOT CONTAINS 'non-APEX tracking'" + $query += " AND [System.Tags] NOT CONTAINS 'out of scope APEX'" + $query += " AND [System.Tags] NOT CONTAINS 'APEX out of scope'" + $query += " AND [System.Tags] NOT CONTAINS 'validate APEX out of scope'" + $query += " AND [Custom.ProductServiceTreeID] <> ''" + $query += " AND [Custom.ProductLifecycle] <> ''" + $query += " AND [Custom.ProductType] IN ('Feature', 'Offering', 'Sku')" $workItems = Invoke-Query $fields $query return $workItems } -function Get-TriagesForCPEXAttestation($triageWorkItemId = $null, $targetServiceTreeId = $null) +function Get-TriagesForCPEXAttestation() { $fields = @() $fields += "Custom.ProductServiceTreeID" @@ -1167,25 +1158,16 @@ function Get-TriagesForCPEXAttestation($triageWorkItemId = $null, $targetService $fieldList = ($fields | ForEach-Object { "[$_]"}) -join ", " $query = "SELECT ${fieldList} FROM WorkItems WHERE [System.WorkItemType] = 'Triage'" - - if ($triageWorkItemId){ - $query += " AND [System.Id] = '$triageWorkItemId'" - } else { - $query += " AND ([Custom.DataplaneAttestationStatus] IN ('', 'Pending') OR [Custom.ManagementPlaneAttestationStatus] IN ('', 'Pending'))" - $query += " AND [System.Tags] NOT CONTAINS 'Release Planner App Test'" - $query += " AND [System.Tags] NOT CONTAINS 'Release Planner Test App'" - $query += " AND [System.Tags] NOT CONTAINS 'non-APEX tracking'" - $query += " AND [System.Tags] NOT CONTAINS 'out of scope APEX'" - $query += " AND [System.Tags] NOT CONTAINS 'APEX out of scope'" - $query += " AND [System.Tags] NOT CONTAINS 'validate APEX out of scope'" - $query += " AND [Custom.ProductServiceTreeID] <> ''" - $query += " AND [Custom.ProductLifecycle] <> ''" - $query += " AND [Custom.ProductType] IN ('Feature', 'Offering', 'Sku')" - } - - if ($targetServiceTreeId){ - $query += " AND [Custom.ProductServiceTreeID] = '$targetServiceTreeId'" - } + $query += " AND ([Custom.DataplaneAttestationStatus] IN ('', 'Pending') OR [Custom.ManagementPlaneAttestationStatus] IN ('', 'Pending'))" + $query += " AND [System.Tags] NOT CONTAINS 'Release Planner App Test'" + $query += " AND [System.Tags] NOT CONTAINS 'Release Planner Test App'" + $query += " AND [System.Tags] NOT CONTAINS 'non-APEX tracking'" + $query += " AND [System.Tags] NOT CONTAINS 'out of scope APEX'" + $query += " AND [System.Tags] NOT CONTAINS 'APEX out of scope'" + $query += " AND [System.Tags] NOT CONTAINS 'validate APEX out of scope'" + $query += " AND [Custom.ProductServiceTreeID] <> ''" + $query += " AND [Custom.ProductLifecycle] <> ''" + $query += " AND [Custom.ProductType] IN ('Feature', 'Offering', 'Sku')" $workItems = Invoke-Query $fields $query return $workItems From ec95296bad5554e3c6613b508ffb28da282be50b Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 10 Oct 2025 13:48:43 -0700 Subject: [PATCH 07/73] update conditions in detect-api-changes.yml (#36182) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12451 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) Co-authored-by: Scott Beddall --- eng/common/pipelines/templates/steps/detect-api-changes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/pipelines/templates/steps/detect-api-changes.yml b/eng/common/pipelines/templates/steps/detect-api-changes.yml index 3144f0b2f3dd..fadeaacc6791 100644 --- a/eng/common/pipelines/templates/steps/detect-api-changes.yml +++ b/eng/common/pipelines/templates/steps/detect-api-changes.yml @@ -10,7 +10,7 @@ steps: $apiChangeDetectRequestUrl = "https://apiview.dev/api/PullRequests/CreateAPIRevisionIfAPIHasChanges" echo "##vso[task.setvariable variable=ApiChangeDetectRequestUrl]$apiChangeDetectRequestUrl" displayName: "Set API change detect request URL" - condition: and(succeeded(), ${{ parameters.Condition}}, eq(variables['ApiChangeDetectRequestUrl'], '')) + condition: and(succeededOrFailed(), ${{ parameters.Condition}}, eq(variables['ApiChangeDetectRequestUrl'], '')) - task: Powershell@2 inputs: From 507131c3eebcc730fbd348395e22b302c1bde920 Mon Sep 17 00:00:00 2001 From: "Jiao Di (MSFT)" <80496810+v-jiaodi@users.noreply.github.com> Date: Mon, 13 Oct 2025 10:01:30 +0800 Subject: [PATCH 08/73] Bump emitter version (#36187) upgrade `@azure-tools/typespec-ts` to `0.45.1` `@azure-tools/typespec-client-generator-core` to `0.61.0` `@typespec/compiler` to `1.5.0` --- eng/emitter-package-lock.json | 234 +++++++++++++++++----------------- eng/emitter-package.json | 20 +-- 2 files changed, 130 insertions(+), 124 deletions(-) diff --git a/eng/emitter-package-lock.json b/eng/emitter-package-lock.json index 0078e655a0d2..9ccadf84f615 100644 --- a/eng/emitter-package-lock.json +++ b/eng/emitter-package-lock.json @@ -6,23 +6,23 @@ "": { "name": "typescript-emitter-package", "dependencies": { - "@azure-tools/typespec-autorest": "0.60.0", - "@azure-tools/typespec-azure-core": "0.60.0", - "@azure-tools/typespec-azure-resource-manager": "0.60.0", - "@azure-tools/typespec-azure-rulesets": "0.60.0", - "@azure-tools/typespec-client-generator-core": "0.60.3", + "@azure-tools/typespec-autorest": "0.61.0", + "@azure-tools/typespec-azure-core": "0.61.0", + "@azure-tools/typespec-azure-resource-manager": "0.61.0", + "@azure-tools/typespec-azure-rulesets": "0.61.0", + "@azure-tools/typespec-client-generator-core": "0.61.0", "@azure-tools/typespec-liftr-base": "0.8.0", - "@azure-tools/typespec-ts": "0.44.1", - "@typespec/compiler": "1.4.0", - "@typespec/http": "1.4.0", - "@typespec/rest": "0.74.0", - "@typespec/versioning": "0.74.0" + "@azure-tools/typespec-ts": "0.45.1", + "@typespec/compiler": "1.5.0", + "@typespec/http": "1.5.0", + "@typespec/rest": "0.75.0", + "@typespec/versioning": "0.75.0" } }, "node_modules/@azure-tools/rlc-common": { - "version": "0.44.1", - "resolved": "https://registry.npmjs.org/@azure-tools/rlc-common/-/rlc-common-0.44.1.tgz", - "integrity": "sha512-49zWMrxAGl34y7CRNXoJ/ljX+rPxko/qQoND3RQcJWA3AnI0P7ciwxeWfBW+iUlvki0AAhH/cFJvLI1719guOg==", + "version": "0.45.1", + "resolved": "https://registry.npmjs.org/@azure-tools/rlc-common/-/rlc-common-0.45.1.tgz", + "integrity": "sha512-vvHPcblzFo5KPcf7G1ptnlxrOI2nF9rUGriATlJeZKU2FglxATEon9leRxtpah2u3w2twVLd1P2s204OZDGSNw==", "license": "ISC", "dependencies": { "handlebars": "^4.7.7", @@ -31,42 +31,48 @@ } }, "node_modules/@azure-tools/typespec-autorest": { - "version": "0.60.0", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-autorest/-/typespec-autorest-0.60.0.tgz", - "integrity": "sha512-aIRr1e4g3irkjLTpxqzJ8BFnNFYwj4nlcG6cKGPuhNtiHhJgHjUhLVUNIW1A9O4jx+3RSErL9AkAl1ep+ZbiuA==", + "version": "0.61.0", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-autorest/-/typespec-autorest-0.61.0.tgz", + "integrity": "sha512-1/netRFLjltoZaNDJ8QuFzZFtFTyL+u9R+hyU7VsNAgpQy5nn3ax28nO04CdkguQZQ0WGDewZSZW0OhEGCWPOA==", "license": "MIT", "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.60.0", - "@azure-tools/typespec-azure-resource-manager": "^0.60.0", - "@azure-tools/typespec-client-generator-core": "^0.60.0", - "@typespec/compiler": "^1.4.0", - "@typespec/http": "^1.4.0", - "@typespec/openapi": "^1.4.0", - "@typespec/rest": "^0.74.0", - "@typespec/versioning": "^0.74.0" + "@azure-tools/typespec-azure-core": "^0.61.0", + "@azure-tools/typespec-azure-resource-manager": "^0.61.0", + "@azure-tools/typespec-client-generator-core": "^0.61.0", + "@typespec/compiler": "^1.5.0", + "@typespec/http": "^1.5.0", + "@typespec/openapi": "^1.5.0", + "@typespec/rest": "^0.75.0", + "@typespec/versioning": "^0.75.0", + "@typespec/xml": "^0.75.0" + }, + "peerDependenciesMeta": { + "@typespec/xml": { + "optional": true + } } }, "node_modules/@azure-tools/typespec-azure-core": { - "version": "0.60.0", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-azure-core/-/typespec-azure-core-0.60.0.tgz", - "integrity": "sha512-Pmm7blxnEZZ7lhMJWWsiIqMrFthaCK6uu7f+ONN7dq0Mjc/O9w8+43tAIXwnGz1OKAWmiToh3EDbaxeWyt/FhQ==", + "version": "0.61.0", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-azure-core/-/typespec-azure-core-0.61.0.tgz", + "integrity": "sha512-sqOYBUghAtVMBiAWwT3fMRVSDNwR7IU3AQ96n/ErhAthwWjTe7PFVfK/MPjpI1mO3cdyLeS2DGyI3gt/waWP4g==", "license": "MIT", "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0", - "@typespec/http": "^1.4.0", - "@typespec/rest": "^0.74.0" + "@typespec/compiler": "^1.5.0", + "@typespec/http": "^1.5.0", + "@typespec/rest": "^0.75.0" } }, "node_modules/@azure-tools/typespec-azure-resource-manager": { - "version": "0.60.0", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-azure-resource-manager/-/typespec-azure-resource-manager-0.60.0.tgz", - "integrity": "sha512-u0gqgSO5lIcpZN11MBAmRnR7kM1eoBLO8cKB86bXrxLt2vAkYpuL4hWp0A+QJjQy/YI5rrijeBF0visqBJnR4A==", + "version": "0.61.0", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-azure-resource-manager/-/typespec-azure-resource-manager-0.61.0.tgz", + "integrity": "sha512-m/M6AareRXacDwyR82g9DqMppfX0eEsv0/q4PW2Lii7wGVzFiiU6fLqsiWBdIHl7GaKszTRtZXNRk/IL9HV8Lw==", "license": "MIT", "dependencies": { "change-case": "~5.4.4", @@ -76,33 +82,33 @@ "node": ">=20.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.60.0", - "@typespec/compiler": "^1.4.0", - "@typespec/http": "^1.4.0", - "@typespec/openapi": "^1.4.0", - "@typespec/rest": "^0.74.0", - "@typespec/versioning": "^0.74.0" + "@azure-tools/typespec-azure-core": "^0.61.0", + "@typespec/compiler": "^1.5.0", + "@typespec/http": "^1.5.0", + "@typespec/openapi": "^1.5.0", + "@typespec/rest": "^0.75.0", + "@typespec/versioning": "^0.75.0" } }, "node_modules/@azure-tools/typespec-azure-rulesets": { - "version": "0.60.0", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-azure-rulesets/-/typespec-azure-rulesets-0.60.0.tgz", - "integrity": "sha512-4sx9StBWkmnBfLJ9b23RSwCs0TkTElaU9+6a/cS6JS0F7UggP/KLQd6LG59D0u9ByXM2x9pvYPO8l/K7UOXoPg==", + "version": "0.61.0", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-azure-rulesets/-/typespec-azure-rulesets-0.61.0.tgz", + "integrity": "sha512-EWArbj6dgTz7Xi0mAkp0ru6PoWqfXLHlk8Kt7BzVcHCPojBYK14JW9RYSxBta+h2fAEQTSQu+X1r7Y7PhJE8rA==", "license": "MIT", "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.60.0", - "@azure-tools/typespec-azure-resource-manager": "^0.60.0", - "@azure-tools/typespec-client-generator-core": "^0.60.0", - "@typespec/compiler": "^1.4.0" + "@azure-tools/typespec-azure-core": "^0.61.0", + "@azure-tools/typespec-azure-resource-manager": "^0.61.0", + "@azure-tools/typespec-client-generator-core": "^0.61.0", + "@typespec/compiler": "^1.5.0" } }, "node_modules/@azure-tools/typespec-client-generator-core": { - "version": "0.60.3", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-client-generator-core/-/typespec-client-generator-core-0.60.3.tgz", - "integrity": "sha512-gcaLRoAJnvqg2tNyEYk+vOMhyP0PJpoZZERuDPB9VLiAAdxl3eTz22vAa3wKvnGFpLDxuvo4+ootEYguRCiwdg==", + "version": "0.61.0", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-client-generator-core/-/typespec-client-generator-core-0.61.0.tgz", + "integrity": "sha512-xm6HXmO2vFJ0BBKrkWGXknNyzhEYQ7eUFhngFMy1Mz7vCTTAprjA/jvtC6GpgjrKwVbmt1aQ0JyGmVKEiwWsMg==", "license": "MIT", "dependencies": { "change-case": "~5.4.4", @@ -113,16 +119,16 @@ "node": ">=20.0.0" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.60.0", - "@typespec/compiler": "^1.4.0", - "@typespec/events": "^0.74.0", - "@typespec/http": "^1.4.0", - "@typespec/openapi": "^1.4.0", - "@typespec/rest": "^0.74.0", - "@typespec/sse": "^0.74.0", - "@typespec/streams": "^0.74.0", - "@typespec/versioning": "^0.74.0", - "@typespec/xml": "^0.74.0" + "@azure-tools/typespec-azure-core": "^0.61.0", + "@typespec/compiler": "^1.5.0", + "@typespec/events": "^0.75.0", + "@typespec/http": "^1.5.0", + "@typespec/openapi": "^1.5.0", + "@typespec/rest": "^0.75.0", + "@typespec/sse": "^0.75.0", + "@typespec/streams": "^0.75.0", + "@typespec/versioning": "^0.75.0", + "@typespec/xml": "^0.75.0" } }, "node_modules/@azure-tools/typespec-liftr-base": { @@ -131,12 +137,12 @@ "integrity": "sha512-xftTTtVjDuxIzugQ9nL/abmttdDM3HAf5HhqKzs9DO0Kl0ZhXQlB2DYlT1hBs/N+IWerMF9k2eKs2RncngA03g==" }, "node_modules/@azure-tools/typespec-ts": { - "version": "0.44.1", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-ts/-/typespec-ts-0.44.1.tgz", - "integrity": "sha512-P4tYeGWewMG33pPV6JRmvZmfRSnp/iNErOAwDbSBzhmFZGpaAWiw79iAjU0EF84oxHHKoAhnhe5cAqieW3TUbQ==", + "version": "0.45.1", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-ts/-/typespec-ts-0.45.1.tgz", + "integrity": "sha512-uw6i9jLMSiyOb7Pl7JnJ9V72BmDAt0nLSsuDYQKEoyGZodpycIlYOOfno7x0RswgpJLoMdNB8cWeqSlI62C9/Q==", "license": "MIT", "dependencies": { - "@azure-tools/rlc-common": "^0.44.1", + "@azure-tools/rlc-common": "^0.45.1", "fs-extra": "^11.1.0", "lodash": "^4.17.21", "prettier": "^3.3.3", @@ -144,13 +150,13 @@ "tslib": "^2.3.1" }, "peerDependencies": { - "@azure-tools/typespec-azure-core": "^0.60.0", - "@azure-tools/typespec-client-generator-core": "^0.60.3", - "@typespec/compiler": "^1.4.0", - "@typespec/http": "^1.4.0", - "@typespec/rest": "^0.74.0", - "@typespec/versioning": "^0.74.0", - "@typespec/xml": "^0.74.0" + "@azure-tools/typespec-azure-core": "^0.61.0", + "@azure-tools/typespec-client-generator-core": "^0.61.0", + "@typespec/compiler": "^1.5.0", + "@typespec/http": "^1.5.0", + "@typespec/rest": "^0.75.0", + "@typespec/versioning": "^0.75.0", + "@typespec/xml": "^0.75.0" } }, "node_modules/@babel/code-frame": { @@ -582,9 +588,9 @@ } }, "node_modules/@typespec/compiler": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@typespec/compiler/-/compiler-1.4.0.tgz", - "integrity": "sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@typespec/compiler/-/compiler-1.5.0.tgz", + "integrity": "sha512-REJgZOEZ9g9CC72GGT0+nLbjW+5WVlCfm1d6w18N5RsUo7vLXs8IPXwq7xZJzoqU99Q9B4keqzPuTU4OrDUTrA==", "license": "MIT", "dependencies": { "@babel/code-frame": "~7.27.1", @@ -614,29 +620,29 @@ } }, "node_modules/@typespec/events": { - "version": "0.74.0", - "resolved": "https://registry.npmjs.org/@typespec/events/-/events-0.74.0.tgz", - "integrity": "sha512-CY6JTtheMKAUlxiPmwx2fLIAWEwezsXmQYUMRhyuW44Q73unQIkexE43LUnNWOJSZckYucqUp+ihXh7jxzWeVQ==", + "version": "0.75.0", + "resolved": "https://registry.npmjs.org/@typespec/events/-/events-0.75.0.tgz", + "integrity": "sha512-V7unXnj+sZoa/1wQG8G6x2TiQqotx18S/qFbDzdfJRPCVpH/Z3xIpppce4jTZALXT97tKZK5GDHijn2zWuWWxg==", "license": "MIT", "peer": true, "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0" + "@typespec/compiler": "^1.5.0" } }, "node_modules/@typespec/http": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@typespec/http/-/http-1.4.0.tgz", - "integrity": "sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@typespec/http/-/http-1.5.0.tgz", + "integrity": "sha512-52XLXwqSY2SY6nSvfkiTsNiJzlMeIAZ6MFIVJ5YkoibA21TNAP4DtjTZgC2GieZLY2NNN/rqDCqBX+DyWqTrfQ==", "license": "MIT", "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0", - "@typespec/streams": "^0.74.0" + "@typespec/compiler": "^1.5.0", + "@typespec/streams": "^0.75.0" }, "peerDependenciesMeta": { "@typespec/streams": { @@ -645,84 +651,84 @@ } }, "node_modules/@typespec/openapi": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@typespec/openapi/-/openapi-1.4.0.tgz", - "integrity": "sha512-ZfrCsmZG/Zt1laLaWC0pKvnZr4jqrm/YS/YuZe/gVrSYKBxGLopXle7H0wrSSMYkIVCNCLiC68/HqRxV6XTfoA==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@typespec/openapi/-/openapi-1.5.0.tgz", + "integrity": "sha512-27sXkSK2r1sAmVMLv+pwlN/Cm+yg9nEK8iuGyJRuEkBk7hcsJDbTnBlsEvlRTI8DqljtzA7YECDHBLK88zZHeg==", "license": "MIT", "peer": true, "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0", - "@typespec/http": "^1.4.0" + "@typespec/compiler": "^1.5.0", + "@typespec/http": "^1.5.0" } }, "node_modules/@typespec/rest": { - "version": "0.74.0", - "resolved": "https://registry.npmjs.org/@typespec/rest/-/rest-0.74.0.tgz", - "integrity": "sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==", + "version": "0.75.0", + "resolved": "https://registry.npmjs.org/@typespec/rest/-/rest-0.75.0.tgz", + "integrity": "sha512-rQ+RP0kcrKWjbpCIkBd8hpxYSNc3CfQxl0MLP1+MYGRHlHL8ss4xbwdANIYZXZZ2i2Hqt19B7cEUGD4MLoCHvw==", "license": "MIT", "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0", - "@typespec/http": "^1.4.0" + "@typespec/compiler": "^1.5.0", + "@typespec/http": "^1.5.0" } }, "node_modules/@typespec/sse": { - "version": "0.74.0", - "resolved": "https://registry.npmjs.org/@typespec/sse/-/sse-0.74.0.tgz", - "integrity": "sha512-+m7/elbGp7q/kqCGaBRj8v8wVMWKVEV8AsZOjf1PY2MkMUrux9ivOijBIktgoLBXDn+ocO2qVfFrHWG2slZSaw==", + "version": "0.75.0", + "resolved": "https://registry.npmjs.org/@typespec/sse/-/sse-0.75.0.tgz", + "integrity": "sha512-8iODUY3C/0hR9sTzyHeTgYfZkKeqZM+/P0OmN1ZWlLUokXQ67yydGXIqnjl+yaeuntwN8H2DDwLguU15c+j+UQ==", "license": "MIT", "peer": true, "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0", - "@typespec/events": "^0.74.0", - "@typespec/http": "^1.4.0", - "@typespec/streams": "^0.74.0" + "@typespec/compiler": "^1.5.0", + "@typespec/events": "^0.75.0", + "@typespec/http": "^1.5.0", + "@typespec/streams": "^0.75.0" } }, "node_modules/@typespec/streams": { - "version": "0.74.0", - "resolved": "https://registry.npmjs.org/@typespec/streams/-/streams-0.74.0.tgz", - "integrity": "sha512-LIWizQgzGt8qN8ravte4DrPLPNOk9ge73bV9Us2TOECagTVQWwgMVy7+o/Beff3sOLQO/sEOwfzvmnNpSlauHg==", + "version": "0.75.0", + "resolved": "https://registry.npmjs.org/@typespec/streams/-/streams-0.75.0.tgz", + "integrity": "sha512-ubvxCN+SZwN9aEarz8CPtMJgnopeu8dXyut47q0FAPp9nykmXy7s+dmsopR+7OX0Fhcnh8ZFYTQcJzJ3QftOiQ==", "license": "MIT", "peer": true, "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0" + "@typespec/compiler": "^1.5.0" } }, "node_modules/@typespec/versioning": { - "version": "0.74.0", - "resolved": "https://registry.npmjs.org/@typespec/versioning/-/versioning-0.74.0.tgz", - "integrity": "sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==", + "version": "0.75.0", + "resolved": "https://registry.npmjs.org/@typespec/versioning/-/versioning-0.75.0.tgz", + "integrity": "sha512-wdLcVx5UW4WRks/OXfqLiaDTtWfAWgv/nj69u99gRJU6iY9ExEvK5x9NQszZQKYnu6tM7nkoYMg4zu+7YBUBaw==", "license": "MIT", "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0" + "@typespec/compiler": "^1.5.0" } }, "node_modules/@typespec/xml": { - "version": "0.74.0", - "resolved": "https://registry.npmjs.org/@typespec/xml/-/xml-0.74.0.tgz", - "integrity": "sha512-NiXatOfpyPxU94f2tEBAygxJeS7CvIr5lvnfZkC0tUHwkiJeLrI1jt13kDVB5CE6zNK6I3d7c37xsQs9WXGFAQ==", + "version": "0.75.0", + "resolved": "https://registry.npmjs.org/@typespec/xml/-/xml-0.75.0.tgz", + "integrity": "sha512-JVafN1nZE3BcQrKbaAFVWw/IleTRdsJpwT3oZ2m7EfWnG30sKtoR9inF9dRoW+XXIjNzCfeYqjkwzEkEnIrCww==", "license": "MIT", "peer": true, "engines": { "node": ">=20.0.0" }, "peerDependencies": { - "@typespec/compiler": "^1.4.0" + "@typespec/compiler": "^1.5.0" } }, "node_modules/ajv": { @@ -1460,9 +1466,9 @@ "license": "MIT" }, "node_modules/semver": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", - "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "license": "ISC", "bin": { "semver": "bin/semver.js" diff --git a/eng/emitter-package.json b/eng/emitter-package.json index be4d5894f51c..33e494ca4662 100644 --- a/eng/emitter-package.json +++ b/eng/emitter-package.json @@ -2,16 +2,16 @@ "name": "typescript-emitter-package", "main": "dist/src/index.js", "dependencies": { - "@azure-tools/typespec-ts": "0.44.1", - "@azure-tools/typespec-azure-core": "0.60.0", - "@azure-tools/typespec-autorest": "0.60.0", - "@azure-tools/typespec-client-generator-core": "0.60.3", - "@azure-tools/typespec-azure-resource-manager": "0.60.0", - "@azure-tools/typespec-azure-rulesets": "0.60.0", + "@azure-tools/typespec-ts": "0.45.1", + "@azure-tools/typespec-azure-core": "0.61.0", + "@azure-tools/typespec-autorest": "0.61.0", + "@azure-tools/typespec-client-generator-core": "0.61.0", + "@azure-tools/typespec-azure-resource-manager": "0.61.0", + "@azure-tools/typespec-azure-rulesets": "0.61.0", "@azure-tools/typespec-liftr-base": "0.8.0", - "@typespec/compiler": "1.4.0", - "@typespec/http": "1.4.0", - "@typespec/rest": "0.74.0", - "@typespec/versioning": "0.74.0" + "@typespec/compiler": "1.5.0", + "@typespec/http": "1.5.0", + "@typespec/rest": "0.75.0", + "@typespec/versioning": "0.75.0" } } From f2af1be555ff2b0117065abad5524b5a7120a7a3 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Sun, 12 Oct 2025 21:25:20 -0700 Subject: [PATCH 09/73] [self-service release][AutoPR @azure-arm-oracledatabase]-generated-from-SDK Generation - JS-5383160 (#36036) Configurations: 'specification/oracle/Oracle.Database.Management/tspconfig.yaml', API Version: 2025-09-01, SDK Release Type: stable, and CommitSHA: '9158dabc895f6b48e4b04a84bd5070e8301caf23' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=5383160 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release. --------- Co-authored-by: ZiWei Chen Co-authored-by: ZiWei Chen <98569699+kazrael2119@users.noreply.github.com> Co-authored-by: Mary Gao --- pnpm-lock.yaml | 4 +- .../arm-oracledatabase/CHANGELOG.md | 104 ++ .../arm-oracledatabase/README.md | 6 +- .../arm-oracledatabase/api-extractor.json | 4 +- .../arm-oracledatabase/assets.json | 2 +- .../arm-oracledatabase/metadata.json | 4 +- .../arm-oracledatabase/package.json | 116 +- ...-api-autonomousDatabaseBackups-node.api.md | 8 +- ...utonomousDatabaseCharacterSets-node.api.md | 4 +- ...sDatabaseNationalCharacterSets-node.api.md | 4 +- ...api-autonomousDatabaseVersions-node.api.md | 4 +- ...tabase-api-autonomousDatabases-node.api.md | 16 +- ...pi-cloudExadataInfrastructures-node.api.md | 16 +- ...ledatabase-api-cloudVmClusters-node.api.md | 8 +- ...arm-oracledatabase-api-dbNodes-node.api.md | 8 +- ...m-oracledatabase-api-dbServers-node.api.md | 4 +- ...cledatabase-api-dbSystemShapes-node.api.md | 5 +- ...m-oracledatabase-api-dbSystems-node.api.md | 59 + ...-oracledatabase-api-dbVersions-node.api.md | 32 + ...ledatabase-api-dnsPrivateViews-node.api.md | 4 +- ...ledatabase-api-dnsPrivateZones-node.api.md | 4 +- ...ledatabase-api-exadbVmClusters-node.api.md | 8 +- ...ledatabase-api-exascaleDbNodes-node.api.md | 8 +- ...se-api-exascaleDbStorageVaults-node.api.md | 8 +- ...cledatabase-api-flexComponents-node.api.md | 4 +- ...ledatabase-api-giMinorVersions-node.api.md | 4 +- ...-oracledatabase-api-giVersions-node.api.md | 5 +- ...cledatabase-api-networkAnchors-node.api.md | 59 + .../review/arm-oracledatabase-api-node.api.md | 7 +- ...-oracledatabase-api-operations-node.api.md | 4 +- ...tabase-api-oracleSubscriptions-node.api.md | 8 +- ...ledatabase-api-resourceAnchors-node.api.md | 59 + ...cledatabase-api-systemVersions-node.api.md | 4 +- ...se-api-virtualNetworkAddresses-node.api.md | 8 +- .../arm-oracledatabase-models-node.api.md | 293 +++- .../review/arm-oracledatabase-node.api.md | 469 ++++++- ...omousDatabaseBackupsListByParentSample.ts} | 15 +- .../autonomousDatabaseBackupsUpdateSample.ts | 27 +- .../autonomousDatabasesActionSample.ts} | 12 +- ...angeDisasterRecoveryConfigurationSample.ts | 31 +- .../autonomousDatabasesFailoverSample.ts | 26 +- ...autonomousDatabasesGenerateWalletSample.ts | 26 +- ...omousDatabasesListByResourceGroupSample.ts | 43 +- .../autonomousDatabasesRestoreSample.ts | 24 +- .../autonomousDatabasesShrinkSample.ts | 25 + .../autonomousDatabasesSwitchoverSample.ts | 26 +- .../autonomousDatabasesUpdateSample.ts | 62 +- ...InfrastructuresAddStorageCapacitySample.ts | 41 +- ...aInfrastructuresConfigureExascaleSample.ts | 48 + .../cloudVMClustersAddVmsSample.ts | 28 - ...dVMClustersListPrivateIPAddressesSample.ts | 29 - .../cloudVMClustersRemoveVmsSample.ts | 28 - .../cloudVmClustersAddVmsSample.ts | 61 + ...dVmClustersListPrivateIpAddressesSample.ts | 66 + .../cloudVmClustersRemoveVmsSample.ts | 61 + .../samples-dev/dbNodesActionSample.ts | 42 +- .../samples-dev/dbNodesListByParentSample.ts | 54 + .../dbServersListByParentSample.ts | 54 + .../dbSystemShapesListByLocationSample.ts | 45 +- .../dbVersionsListByLocationSample.ts | 37 + .../exadbVmClustersRemoveVmsSample.ts | 33 +- .../exascaleDbNodesActionSample.ts | 38 +- .../exascaleDbNodesListByParentSample.ts | 28 +- .../exascaleDbStorageVaultsCreateSample.ts | 49 +- .../exascaleDbStorageVaultsDeleteSample.ts | 25 +- .../exascaleDbStorageVaultsGetSample.ts | 26 +- ...bStorageVaultsListByResourceGroupSample.ts | 26 +- ...DbStorageVaultsListBySubscriptionSample.ts | 26 +- .../exascaleDbStorageVaultsUpdateSample.ts | 28 +- .../samples-dev/flexComponentsGetSample.ts | 11 +- .../flexComponentsListByParentSample.ts | 30 +- .../samples-dev/giMinorVersionsGetSample.ts | 11 +- .../giMinorVersionsListByParentSample.ts | 33 +- .../giVersionsListByLocationSample.ts | 23 +- .../samples-dev/operationsListSample.ts | 43 +- ...ubscriptionsAddAzureSubscriptionsSample.ts | 37 +- ...eSubscriptionsListActivationLinksSample.ts | 35 +- ...scriptionsListCloudAccountDetailsSample.ts | 35 +- ...ptionsListSaasSubscriptionDetailsSample.ts | 35 +- .../oracleSubscriptionsUpdateSample.ts | 44 +- ...rtualNetworkAddressesListByParentSample.ts | 54 + ...angeDisasterRecoveryConfigurationSample.js | 29 - .../autonomousDatabasesFailoverSample.js | 27 - .../autonomousDatabasesSwitchoverSample.js | 27 - .../autonomousDatabasesUpdateSample.js | 25 - ...InfrastructuresAddStorageCapacitySample.js | 25 - .../javascript/cloudVmClustersAddVmsSample.js | 27 - ...dVmClustersListPrivateIpAddressesSample.js | 28 - .../cloudVmClustersRemoveVmsSample.js | 27 - .../dbSystemShapesListByLocationSample.js | 29 - .../javascript/exascaleDbNodesActionSample.js | 27 - .../exascaleDbStorageVaultsCreateSample.js | 44 - .../exascaleDbStorageVaultsDeleteSample.js | 24 - .../exascaleDbStorageVaultsUpdateSample.js | 27 - .../v2/javascript/operationsListSample.js | 29 - ...ubscriptionsAddAzureSubscriptionsSample.js | 26 - ...eSubscriptionsListActivationLinksSample.js | 25 - ...scriptionsListCloudAccountDetailsSample.js | 25 - ...ptionsListSaasSubscriptionDetailsSample.js | 25 - .../oracleSubscriptionsUpdateSample.js | 25 - ...angeDisasterRecoveryConfigurationSample.ts | 29 - .../src/autonomousDatabasesFailoverSample.ts | 27 - .../autonomousDatabasesSwitchoverSample.ts | 27 - .../src/autonomousDatabasesUpdateSample.ts | 25 - ...InfrastructuresAddStorageCapacitySample.ts | 25 - .../src/cloudVmClustersAddVmsSample.ts | 27 - ...dVmClustersListPrivateIpAddressesSample.ts | 28 - .../src/cloudVmClustersRemoveVmsSample.ts | 27 - .../exascaleDbStorageVaultsCreateSample.ts | 44 - .../v2/typescript/src/operationsListSample.ts | 29 - ...ubscriptionsAddAzureSubscriptionsSample.ts | 26 - ...eSubscriptionsListActivationLinksSample.ts | 25 - ...scriptionsListCloudAccountDetailsSample.ts | 25 - ...ptionsListSaasSubscriptionDetailsSample.ts | 25 - .../src/oracleSubscriptionsUpdateSample.ts | 25 - .../samples/{v2 => v3}/javascript/README.md | 160 ++- ...omousDatabaseBackupsListByParentSample.js} | 15 +- .../autonomousDatabaseBackupsUpdateSample.js | 22 +- .../autonomousDatabasesActionSample.js} | 12 +- ...angeDisasterRecoveryConfigurationSample.js | 53 + .../autonomousDatabasesFailoverSample.js | 46 + ...autonomousDatabasesGenerateWalletSample.js | 21 +- ...omousDatabasesListByResourceGroupSample.js | 67 + .../autonomousDatabasesRestoreSample.js | 19 +- .../autonomousDatabasesShrinkSample.js | 25 + .../autonomousDatabasesSwitchoverSample.js | 46 + .../autonomousDatabasesUpdateSample.js | 80 ++ ...InfrastructuresAddStorageCapacitySample.js | 61 + ...aInfrastructuresConfigureExascaleSample.js | 48 + .../javascript/cloudVmClustersAddVmsSample.js | 61 + ...dVmClustersListPrivateIpAddressesSample.js | 66 + .../cloudVmClustersRemoveVmsSample.js | 61 + .../v3/javascript/dbNodesActionSample.js | 64 + .../javascript/dbNodesListByParentSample.js | 54 + .../javascript/dbServersListByParentSample.js | 54 + .../dbSystemShapesListByLocationSample.js | 69 + .../dbVersionsListByLocationSample.js | 37 + .../exadbVmClustersRemoveVmsSample.js | 26 +- .../javascript/exascaleDbNodesActionSample.js | 50 + .../exascaleDbNodesListByParentSample.js | 23 +- .../exascaleDbStorageVaultsCreateSample.js | 60 + .../exascaleDbStorageVaultsDeleteSample.js | 38 + .../exascaleDbStorageVaultsGetSample.js | 19 +- ...bStorageVaultsListByResourceGroupSample.js | 21 +- ...DbStorageVaultsListBySubscriptionSample.js | 21 +- .../exascaleDbStorageVaultsUpdateSample.js | 42 + .../javascript/flexComponentsGetSample.js | 4 +- .../flexComponentsListByParentSample.js | 23 +- .../javascript/giMinorVersionsGetSample.js | 4 +- .../giMinorVersionsListByParentSample.js | 26 +- .../giVersionsListByLocationSample.js | 16 +- .../v3/javascript/operationsListSample.js | 67 + ...ubscriptionsAddAzureSubscriptionsSample.js | 58 + ...eSubscriptionsListActivationLinksSample.js | 55 + ...scriptionsListCloudAccountDetailsSample.js | 55 + ...ptionsListSaasSubscriptionDetailsSample.js | 55 + .../oracleSubscriptionsUpdateSample.js | 64 + .../{v2 => v3}/javascript/package.json | 2 +- .../samples/{v2 => v3}/javascript/sample.env | 0 ...rtualNetworkAddressesListByParentSample.js | 54 + .../samples/{v2 => v3}/typescript/README.md | 160 ++- .../{v2 => v3}/typescript/package.json | 2 +- .../samples/{v2 => v3}/typescript/sample.env | 0 ...omousDatabaseBackupsListByParentSample.ts} | 15 +- .../autonomousDatabaseBackupsUpdateSample.ts | 22 +- .../src/autonomousDatabasesActionSample.ts} | 12 +- ...angeDisasterRecoveryConfigurationSample.ts | 53 + .../src/autonomousDatabasesFailoverSample.ts | 46 + ...autonomousDatabasesGenerateWalletSample.ts | 21 +- ...omousDatabasesListByResourceGroupSample.ts | 67 + .../src/autonomousDatabasesRestoreSample.ts | 19 +- .../src/autonomousDatabasesShrinkSample.ts | 25 + .../autonomousDatabasesSwitchoverSample.ts | 46 + .../src/autonomousDatabasesUpdateSample.ts | 80 ++ ...InfrastructuresAddStorageCapacitySample.ts | 61 + ...aInfrastructuresConfigureExascaleSample.ts | 48 + .../src/cloudVmClustersAddVmsSample.ts | 61 + ...dVmClustersListPrivateIpAddressesSample.ts | 66 + .../src/cloudVmClustersRemoveVmsSample.ts | 61 + .../v3/typescript/src/dbNodesActionSample.ts | 64 + .../src/dbNodesListByParentSample.ts | 54 + .../src/dbServersListByParentSample.ts | 54 + .../src/dbSystemShapesListByLocationSample.ts | 69 + .../src/dbVersionsListByLocationSample.ts | 37 + .../src/exadbVmClustersRemoveVmsSample.ts | 26 +- .../src/exascaleDbNodesActionSample.ts | 50 + .../src/exascaleDbNodesListByParentSample.ts | 23 +- .../exascaleDbStorageVaultsCreateSample.ts | 60 + .../exascaleDbStorageVaultsDeleteSample.ts | 18 +- .../src/exascaleDbStorageVaultsGetSample.ts | 19 +- ...bStorageVaultsListByResourceGroupSample.ts | 21 +- ...DbStorageVaultsListBySubscriptionSample.ts | 21 +- .../exascaleDbStorageVaultsUpdateSample.ts | 21 +- .../typescript/src/flexComponentsGetSample.ts | 4 +- .../src/flexComponentsListByParentSample.ts | 23 +- .../src/giMinorVersionsGetSample.ts | 4 +- .../src/giMinorVersionsListByParentSample.ts | 26 +- .../src/giVersionsListByLocationSample.ts | 16 +- .../v3/typescript/src/operationsListSample.ts | 67 + ...ubscriptionsAddAzureSubscriptionsSample.ts | 58 + ...eSubscriptionsListActivationLinksSample.ts | 55 + ...scriptionsListCloudAccountDetailsSample.ts | 55 + ...ptionsListSaasSubscriptionDetailsSample.ts | 55 + .../src/oracleSubscriptionsUpdateSample.ts | 64 + ...rtualNetworkAddressesListByParentSample.ts | 54 + .../{v2 => v3}/typescript/tsconfig.json | 0 .../autonomousDatabaseBackups/operations.ts | 44 +- .../api/autonomousDatabaseBackups/options.ts | 2 +- .../operations.ts | 26 +- .../options.ts | 2 +- .../operations.ts | 26 +- .../options.ts | 2 +- .../autonomousDatabaseVersions/operations.ts | 23 +- .../api/autonomousDatabaseVersions/options.ts | 2 +- .../src/api/autonomousDatabases/index.ts | 2 + .../src/api/autonomousDatabases/operations.ts | 117 +- .../src/api/autonomousDatabases/options.ts | 8 +- .../api/cloudExadataInfrastructures/index.ts | 2 + .../cloudExadataInfrastructures/operations.ts | 117 +- .../cloudExadataInfrastructures/options.ts | 9 +- .../src/api/cloudVmClusters/operations.ts | 50 +- .../src/api/cloudVmClusters/options.ts | 2 +- .../src/api/dbNodes/operations.ts | 28 +- .../src/api/dbNodes/options.ts | 2 +- .../src/api/dbServers/operations.ts | 21 +- .../src/api/dbServers/options.ts | 2 +- .../src/api/dbSystemShapes/operations.ts | 26 +- .../src/api/dbSystemShapes/options.ts | 4 +- .../src/api/dbSystems/index.ts | 19 + .../src/api/dbSystems/operations.ts | 347 +++++ .../src/api/dbSystems/options.ts | 31 + .../src/api/dbVersions/index.ts | 5 + .../src/api/dbVersions/operations.ts | 127 ++ .../src/api/dbVersions/options.ts | 28 + .../src/api/dnsPrivateViews/operations.ts | 23 +- .../src/api/dnsPrivateViews/options.ts | 2 +- .../src/api/dnsPrivateZones/operations.ts | 23 +- .../src/api/dnsPrivateZones/options.ts | 2 +- .../src/api/exadbVmClusters/operations.ts | 46 +- .../src/api/exadbVmClusters/options.ts | 2 +- .../src/api/exascaleDbNodes/operations.ts | 34 +- .../src/api/exascaleDbNodes/options.ts | 2 +- .../api/exascaleDbStorageVaults/operations.ts | 44 +- .../api/exascaleDbStorageVaults/options.ts | 2 +- .../src/api/flexComponents/operations.ts | 23 +- .../src/api/flexComponents/options.ts | 4 +- .../src/api/giMinorVersions/operations.ts | 23 +- .../src/api/giMinorVersions/options.ts | 4 +- .../src/api/giVersions/operations.ts | 27 +- .../src/api/giVersions/options.ts | 6 +- .../src/api/networkAnchors/index.ts | 19 + .../src/api/networkAnchors/operations.ts | 361 +++++ .../src/api/networkAnchors/options.ts | 31 + .../src/api/operations/operations.ts | 21 +- .../src/api/operations/options.ts | 2 +- .../api/oracleDatabaseManagementContext.ts | 16 +- .../src/api/oracleSubscriptions/operations.ts | 56 +- .../src/api/oracleSubscriptions/options.ts | 2 +- .../src/api/resourceAnchors/index.ts | 19 + .../src/api/resourceAnchors/operations.ts | 361 +++++ .../src/api/resourceAnchors/options.ts | 31 + .../src/api/systemVersions/operations.ts | 23 +- .../src/api/systemVersions/options.ts | 2 +- .../api/virtualNetworkAddresses/operations.ts | 42 +- .../api/virtualNetworkAddresses/options.ts | 2 +- .../autonomousDatabaseBackups/index.ts | 25 +- .../autonomousDatabaseCharacterSets/index.ts | 10 +- .../index.ts | 14 +- .../autonomousDatabaseVersions/index.ts | 10 +- .../src/classic/autonomousDatabases/index.ts | 68 +- .../cloudExadataInfrastructures/index.ts | 49 +- .../src/classic/cloudVmClusters/index.ts | 42 +- .../src/classic/dbNodes/index.ts | 12 +- .../src/classic/dbServers/index.ts | 10 +- .../src/classic/dbSystemShapes/index.ts | 10 +- .../src/classic/dbSystems/index.ts | 105 ++ .../src/classic/dbVersions/index.ts | 43 + .../src/classic/dnsPrivateViews/index.ts | 10 +- .../src/classic/dnsPrivateZones/index.ts | 10 +- .../src/classic/exadbVmClusters/index.ts | 34 +- .../src/classic/exascaleDbNodes/index.ts | 12 +- .../classic/exascaleDbStorageVaults/index.ts | 27 +- .../src/classic/flexComponents/index.ts | 10 +- .../src/classic/giMinorVersions/index.ts | 10 +- .../src/classic/giVersions/index.ts | 10 +- .../arm-oracledatabase/src/classic/index.ts | 4 + .../src/classic/networkAnchors/index.ts | 108 ++ .../src/classic/operations/index.ts | 8 +- .../src/classic/oracleSubscriptions/index.ts | 44 +- .../src/classic/resourceAnchors/index.ts | 108 ++ .../src/classic/systemVersions/index.ts | 10 +- .../classic/virtualNetworkAddresses/index.ts | 20 +- .../arm-oracledatabase/src/index.ts | 78 ++ .../arm-oracledatabase/src/models/index.ts | 42 + .../arm-oracledatabase/src/models/models.ts | 1236 ++++++++++++++++- .../src/oracleDatabaseManagementClient.ts | 148 +- .../src/restorePollerHelpers.ts | 114 +- .../src/static-helpers/cloudSettingHelpers.ts | 42 + .../src/static-helpers/pagingHelpers.ts | 3 +- .../src/static-helpers/pollingHelpers.ts | 9 +- .../src/static-helpers/urlTemplate.ts | 43 +- .../test/public/utils/recordedClient.ts | 3 +- .../arm-oracledatabase/test/snippets.spec.ts | 6 +- .../tsconfig.browser.config.json | 9 +- .../arm-oracledatabase/tsconfig.json | 3 +- .../arm-oracledatabase/tsconfig.test.json | 13 +- .../tsconfig.test.node.json | 10 - .../arm-oracledatabase/tsp-location.yaml | 2 +- .../arm-oracledatabase/vitest.config.ts | 1 - .../arm-oracledatabase/vitest.esm.config.ts | 8 + 310 files changed, 10156 insertions(+), 2453 deletions(-) create mode 100644 sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystems-node.api.md create mode 100644 sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbVersions-node.api.md create mode 100644 sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-networkAnchors-node.api.md create mode 100644 sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-resourceAnchors-node.api.md rename sdk/oracledatabase/arm-oracledatabase/{samples/v2/typescript/src/autonomousDatabasesListByResourceGroupSample.ts => samples-dev/autonomousDatabaseBackupsListByParentSample.ts} (50%) rename sdk/oracledatabase/arm-oracledatabase/{samples/v2/typescript/src/dbNodesActionSample.ts => samples-dev/autonomousDatabasesActionSample.ts} (54%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesShrinkSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresConfigureExascaleSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersAddVmsSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersListPrivateIPAddressesSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersRemoveVmsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersAddVmsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersListPrivateIpAddressesSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersRemoveVmsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesListByParentSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/dbServersListByParentSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/dbVersionsListByLocationSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples-dev/virtualNetworkAddressesListByParentSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesFailoverSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesSwitchoverSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesUpdateSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersAddVmsSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersListPrivateIpAddressesSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersRemoveVmsSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbSystemShapesListByLocationSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesActionSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsCreateSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsDeleteSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsUpdateSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/operationsListSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListActivationLinksSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsUpdateSample.js delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesFailoverSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesSwitchoverSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesUpdateSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersAddVmsSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersRemoveVmsSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsCreateSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/operationsListSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListActivationLinksSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsUpdateSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/README.md (54%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2/javascript/autonomousDatabasesListByResourceGroupSample.js => v3/javascript/autonomousDatabaseBackupsListByParentSample.js} (50%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/autonomousDatabaseBackupsUpdateSample.js (51%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2/javascript/dbNodesActionSample.js => v3/javascript/autonomousDatabasesActionSample.js} (55%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesFailoverSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/autonomousDatabasesGenerateWalletSample.js (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesListByResourceGroupSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/autonomousDatabasesRestoreSample.js (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesShrinkSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesSwitchoverSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesUpdateSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresConfigureExascaleSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersAddVmsSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersListPrivateIpAddressesSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersRemoveVmsSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesActionSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesListByParentSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbServersListByParentSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbSystemShapesListByLocationSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbVersionsListByLocationSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/exadbVmClustersRemoveVmsSample.js (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesActionSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/exascaleDbNodesListByParentSample.js (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsCreateSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsDeleteSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/exascaleDbStorageVaultsGetSample.js (51%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js (52%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js (52%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsUpdateSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/flexComponentsGetSample.js (90%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/flexComponentsListByParentSample.js (52%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/giMinorVersionsGetSample.js (80%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/giMinorVersionsListByParentSample.js (50%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/giVersionsListByLocationSample.js (68%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/operationsListSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListActivationLinksSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsUpdateSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/package.json (96%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/javascript/sample.env (100%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/virtualNetworkAddressesListByParentSample.js rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/README.md (54%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/package.json (96%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/sample.env (100%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2/typescript/src/dbSystemShapesListByLocationSample.ts => v3/typescript/src/autonomousDatabaseBackupsListByParentSample.ts} (50%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/autonomousDatabaseBackupsUpdateSample.ts (51%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2/typescript/src/exascaleDbNodesActionSample.ts => v3/typescript/src/autonomousDatabasesActionSample.ts} (54%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesFailoverSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/autonomousDatabasesGenerateWalletSample.ts (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesListByResourceGroupSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/autonomousDatabasesRestoreSample.ts (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesShrinkSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesSwitchoverSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesUpdateSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresConfigureExascaleSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersAddVmsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersRemoveVmsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesActionSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesListByParentSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbServersListByParentSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbSystemShapesListByLocationSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbVersionsListByLocationSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exadbVmClustersRemoveVmsSample.ts (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesActionSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exascaleDbNodesListByParentSample.ts (51%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsCreateSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exascaleDbStorageVaultsDeleteSample.ts (50%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exascaleDbStorageVaultsGetSample.ts (51%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts (52%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts (52%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/exascaleDbStorageVaultsUpdateSample.ts (50%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/flexComponentsGetSample.ts (90%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/flexComponentsListByParentSample.ts (52%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/giMinorVersionsGetSample.ts (81%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/giMinorVersionsListByParentSample.ts (50%) rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/src/giVersionsListByLocationSample.ts (67%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/operationsListSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListActivationLinksSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsUpdateSample.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/virtualNetworkAddressesListByParentSample.ts rename sdk/oracledatabase/arm-oracledatabase/samples/{v2 => v3}/typescript/tsconfig.json (100%) create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/operations.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/options.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/operations.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/options.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/operations.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/options.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/operations.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/options.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystems/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/classic/dbVersions/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/classic/networkAnchors/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/classic/resourceAnchors/index.ts create mode 100644 sdk/oracledatabase/arm-oracledatabase/src/static-helpers/cloudSettingHelpers.ts delete mode 100644 sdk/oracledatabase/arm-oracledatabase/tsconfig.test.node.json create mode 100644 sdk/oracledatabase/arm-oracledatabase/vitest.esm.config.ts diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 878d56073889..5b32da7f4695 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19475,7 +19475,7 @@ importers: sdk/oracledatabase/arm-oracledatabase: dependencies: '@azure-rest/core-client': - specifier: ^2.1.0 + specifier: ^2.3.1 version: link:../../core/core-client-rest '@azure/abort-controller': specifier: ^2.1.2 @@ -19484,7 +19484,7 @@ importers: specifier: ^1.9.0 version: link:../../core/core-auth '@azure/core-lro': - specifier: ^3.0.0 + specifier: ^3.1.0 version: link:../../core/core-lro '@azure/core-rest-pipeline': specifier: ^1.20.0 diff --git a/sdk/oracledatabase/arm-oracledatabase/CHANGELOG.md b/sdk/oracledatabase/arm-oracledatabase/CHANGELOG.md index eef7dc13faac..f5e5ba6fee77 100644 --- a/sdk/oracledatabase/arm-oracledatabase/CHANGELOG.md +++ b/sdk/oracledatabase/arm-oracledatabase/CHANGELOG.md @@ -1,4 +1,108 @@ # Release History + +## 3.0.0 (2025-09-25) + +### Features Added + - Added operation group DbSystemsOperations + - Added operation group DbVersionsOperations + - Added operation group NetworkAnchorsOperations + - Added operation group ResourceAnchorsOperations + - Added operation AutonomousDatabasesOperations.action + - Added operation CloudExadataInfrastructuresOperations.configureExascale + - Added Interface AutonomousDatabaseLifecycleAction + - Added Interface AutonomousDatabasesActionOptionalParams + - Added Interface CloudExadataInfrastructuresConfigureExascaleOptionalParams + - Added Interface ConfigureExascaleCloudExadataInfrastructureDetails + - Added Interface DbSystem + - Added Interface DbSystemBaseProperties + - Added Interface DbSystemOptions + - Added Interface DbSystemProperties + - Added Interface DbSystemsCreateOrUpdateOptionalParams + - Added Interface DbSystemsDeleteOptionalParams + - Added Interface DbSystemsGetOptionalParams + - Added Interface DbSystemsListByResourceGroupOptionalParams + - Added Interface DbSystemsListBySubscriptionOptionalParams + - Added Interface DbSystemsUpdateOptionalParams + - Added Interface DbSystemUpdate + - Added Interface DbSystemUpdateProperties + - Added Interface DbVersion + - Added Interface DbVersionProperties + - Added Interface DbVersionsGetOptionalParams + - Added Interface DbVersionsListByLocationOptionalParams + - Added Interface DnsForwardingRule + - Added Interface ExascaleConfigDetails + - Added Interface NetworkAnchor + - Added Interface NetworkAnchorProperties + - Added Interface NetworkAnchorsCreateOrUpdateOptionalParams + - Added Interface NetworkAnchorsDeleteOptionalParams + - Added Interface NetworkAnchorsGetOptionalParams + - Added Interface NetworkAnchorsListByResourceGroupOptionalParams + - Added Interface NetworkAnchorsListBySubscriptionOptionalParams + - Added Interface NetworkAnchorsUpdateOptionalParams + - Added Interface NetworkAnchorUpdate + - Added Interface NetworkAnchorUpdateProperties + - Added Interface ResourceAnchor + - Added Interface ResourceAnchorProperties + - Added Interface ResourceAnchorsCreateOrUpdateOptionalParams + - Added Interface ResourceAnchorsDeleteOptionalParams + - Added Interface ResourceAnchorsGetOptionalParams + - Added Interface ResourceAnchorsListByResourceGroupOptionalParams + - Added Interface ResourceAnchorsListBySubscriptionOptionalParams + - Added Interface ResourceAnchorsUpdateOptionalParams + - Added Interface ResourceAnchorUpdate + - Interface AutonomousDatabaseBaseProperties has a new optional parameter scheduledOperationsList + - Interface AutonomousDatabaseCloneProperties has a new optional parameter scheduledOperationsList + - Interface AutonomousDatabaseCrossRegionDisasterRecoveryProperties has a new optional parameter scheduledOperationsList + - Interface AutonomousDatabaseFromBackupTimestampProperties has a new optional parameter scheduledOperationsList + - Interface AutonomousDatabaseProperties has a new optional parameter scheduledOperationsList + - Interface AutonomousDatabaseUpdateProperties has a new optional parameter scheduledOperationsList + - Interface CloudExadataInfrastructureProperties has a new optional parameter exascaleConfig + - Interface CloudVmClusterProperties has a new optional parameter exascaleDbStorageVaultId + - Interface CloudVmClusterProperties has a new optional parameter storageManagementType + - Interface DbSystemShapeProperties has a new optional parameter shapeAttributes + - Interface DbSystemShapesListByLocationOptionalParams has a new optional parameter shapeAttribute + - Interface ExadbVmClusterProperties has a new optional parameter shapeAttribute + - Interface ExascaleDbStorageVaultProperties has a new optional parameter attachedShapeAttributes + - Interface ExascaleDbStorageVaultProperties has a new optional parameter exadataInfrastructureId + - Interface GiVersionsListByLocationOptionalParams has a new optional parameter shapeAttribute + - Interface OracleDatabaseManagementClientOptionalParams has a new optional parameter cloudSetting + - Added Type Alias AutonomousDatabaseLifecycleActionEnum + - Added Type Alias AzureSupportedClouds + - Added Type Alias BaseDbSystemShapes + - Added Type Alias DbSystemBasePropertiesUnion + - Added Type Alias DbSystemDatabaseEditionType + - Added Type Alias DbSystemLifecycleState + - Added Type Alias DbSystemSourceType + - Added Type Alias DiskRedundancyType + - Added Type Alias ExadataVmClusterStorageManagementType + - Added Type Alias ShapeAttribute + - Added Type Alias ShapeFamilyType + - Added Type Alias StorageManagementType + - Added Type Alias StorageVolumePerformanceMode + - Added Enum AzureClouds + - Added Enum KnownAutonomousDatabaseLifecycleActionEnum + - Added Enum KnownBaseDbSystemShapes + - Added Enum KnownDbSystemDatabaseEditionType + - Added Enum KnownDbSystemLifecycleState + - Added Enum KnownDbSystemSourceType + - Added Enum KnownDiskRedundancyType + - Added Enum KnownExadataVmClusterStorageManagementType + - Added Enum KnownShapeAttribute + - Added Enum KnownShapeFamilyType + - Added Enum KnownStorageManagementType + - Added Enum KnownStorageVolumePerformanceMode + - Enum KnownVersions has a new value V20250901 + +### Breaking Changes + - Interface AutonomousDatabaseBaseProperties no longer has parameter scheduledOperations + - Interface AutonomousDatabaseCloneProperties no longer has parameter scheduledOperations + - Interface AutonomousDatabaseCrossRegionDisasterRecoveryProperties no longer has parameter scheduledOperations + - Interface AutonomousDatabaseFromBackupTimestampProperties no longer has parameter scheduledOperations + - Interface AutonomousDatabaseProperties no longer has parameter scheduledOperations + - Interface AutonomousDatabaseUpdateProperties no longer has parameter scheduledOperations + - Parameter name of interface DayOfWeekUpdate is now optional + - Parameter dayOfWeek of interface ScheduledOperationsTypeUpdate is now optional + ## 2.0.0 (2025-06-05) diff --git a/sdk/oracledatabase/arm-oracledatabase/README.md b/sdk/oracledatabase/arm-oracledatabase/README.md index 003dc4006187..acecebd6a0fd 100644 --- a/sdk/oracledatabase/arm-oracledatabase/README.md +++ b/sdk/oracledatabase/arm-oracledatabase/README.md @@ -55,7 +55,8 @@ Using Node.js and Node-like environments, you can use the `DefaultAzureCredentia import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; import { DefaultAzureCredential } from "@azure/identity"; -const client = new OracleDatabaseManagementClient(new DefaultAzureCredential()); +const subscriptionId = "00000000-0000-0000-0000-000000000000"; +const client = new OracleDatabaseManagementClient(new DefaultAzureCredential(), subscriptionId); ``` For browser environments, use the `InteractiveBrowserCredential` from the `@azure/identity` package to authenticate. @@ -68,7 +69,8 @@ const credential = new InteractiveBrowserCredential({ tenantId: "", clientId: "", }); -const client = new OracleDatabaseManagementClient(credential); +const subscriptionId = "00000000-0000-0000-0000-000000000000"; +const client = new OracleDatabaseManagementClient(credential, subscriptionId); ``` diff --git a/sdk/oracledatabase/arm-oracledatabase/api-extractor.json b/sdk/oracledatabase/arm-oracledatabase/api-extractor.json index 16d81e2eb512..870d6d399477 100644 --- a/sdk/oracledatabase/arm-oracledatabase/api-extractor.json +++ b/sdk/oracledatabase/arm-oracledatabase/api-extractor.json @@ -1,3 +1 @@ -{ - "extends": "../../../api-extractor-base.json" -} +{ "extends": "../../../api-extractor-base.json" } diff --git a/sdk/oracledatabase/arm-oracledatabase/assets.json b/sdk/oracledatabase/arm-oracledatabase/assets.json index 0c60c4a25156..907f29149dee 100644 --- a/sdk/oracledatabase/arm-oracledatabase/assets.json +++ b/sdk/oracledatabase/arm-oracledatabase/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/oracledatabase/arm-oracledatabase", - "Tag": "js/oracledatabase/arm-oracledatabase_bf29bb054c" + "Tag": "js/oracledatabase/arm-oracledatabase_271bab8292" } diff --git a/sdk/oracledatabase/arm-oracledatabase/metadata.json b/sdk/oracledatabase/arm-oracledatabase/metadata.json index b45e89616720..242e9e3330aa 100644 --- a/sdk/oracledatabase/arm-oracledatabase/metadata.json +++ b/sdk/oracledatabase/arm-oracledatabase/metadata.json @@ -1,4 +1,4 @@ { - "apiVersion": "2025-03-01", - "emitterVersion": "0.40.2" + "apiVersion": "2025-09-01", + "emitterVersion": "0.44.0" } diff --git a/sdk/oracledatabase/arm-oracledatabase/package.json b/sdk/oracledatabase/arm-oracledatabase/package.json index 5e8ab26dc01a..46a64399ce78 100644 --- a/sdk/oracledatabase/arm-oracledatabase/package.json +++ b/sdk/oracledatabase/arm-oracledatabase/package.json @@ -1,6 +1,6 @@ { "name": "@azure/arm-oracledatabase", - "version": "2.0.0", + "version": "3.0.0", "description": "A generated SDK for OracleDatabaseManagementClient.", "engines": { "node": ">=20.0.0" @@ -12,6 +12,10 @@ "./package.json": "./package.json", ".": "./src/index.ts", "./api": "./src/api/index.ts", + "./api/dbVersions": "./src/api/dbVersions/index.ts", + "./api/dbSystems": "./src/api/dbSystems/index.ts", + "./api/resourceAnchors": "./src/api/resourceAnchors/index.ts", + "./api/networkAnchors": "./src/api/networkAnchors/index.ts", "./api/exascaleDbStorageVaults": "./src/api/exascaleDbStorageVaults/index.ts", "./api/exascaleDbNodes": "./src/api/exascaleDbNodes/index.ts", "./api/exadbVmClusters": "./src/api/exadbVmClusters/index.ts", @@ -48,6 +52,8 @@ "project": "../../../tsconfig.src.build.json" }, "type": "module", + "browser": "./dist/browser/index.js", + "react-native": "./dist/react-native/index.js", "keywords": [ "node", "azure", @@ -60,10 +66,9 @@ "license": "MIT", "files": [ "dist/", + "!dist/**/*.d.*ts.map", "README.md", - "LICENSE", - "review/", - "CHANGELOG.md" + "LICENSE" ], "sdk-type": "mgmt", "repository": "github:Azure/azure-sdk-for-js", @@ -81,12 +86,12 @@ ] }, "dependencies": { - "@azure-rest/core-client": "^2.1.0", + "@azure/core-util": "^1.12.0", + "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", - "@azure/core-lro": "^3.0.0", + "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", - "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -107,20 +112,21 @@ "vitest": "catalog:testing" }, "scripts": { - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "generate:client": "echo skipped", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "extract-api": "rimraf review && dev-tool run extract-api", + "pack": "pnpm pack 2>&1", "lint": "echo skipped", "lint:fix": "echo skipped", - "pack": "pnpm pack 2>&1", - "test": "npm run test:node && npm run test:browser", + "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "execute:samples": "dev-tool samples run samples-dev", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "generate:client": "echo skipped", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { @@ -131,8 +137,6 @@ "disableDocsMs": true, "apiRefLink": "https://learn.microsoft.com/javascript/api/@azure/arm-oracledatabase?view=azure-node-preview" }, - "browser": "./dist/browser/index.js", - "react-native": "./dist/react-native/index.js", "exports": { "./package.json": "./package.json", ".": { @@ -171,6 +175,78 @@ "default": "./dist/commonjs/api/index.js" } }, + "./api/dbVersions": { + "browser": { + "types": "./dist/browser/api/dbVersions/index.d.ts", + "default": "./dist/browser/api/dbVersions/index.js" + }, + "react-native": { + "types": "./dist/react-native/api/dbVersions/index.d.ts", + "default": "./dist/react-native/api/dbVersions/index.js" + }, + "import": { + "types": "./dist/esm/api/dbVersions/index.d.ts", + "default": "./dist/esm/api/dbVersions/index.js" + }, + "require": { + "types": "./dist/commonjs/api/dbVersions/index.d.ts", + "default": "./dist/commonjs/api/dbVersions/index.js" + } + }, + "./api/dbSystems": { + "browser": { + "types": "./dist/browser/api/dbSystems/index.d.ts", + "default": "./dist/browser/api/dbSystems/index.js" + }, + "react-native": { + "types": "./dist/react-native/api/dbSystems/index.d.ts", + "default": "./dist/react-native/api/dbSystems/index.js" + }, + "import": { + "types": "./dist/esm/api/dbSystems/index.d.ts", + "default": "./dist/esm/api/dbSystems/index.js" + }, + "require": { + "types": "./dist/commonjs/api/dbSystems/index.d.ts", + "default": "./dist/commonjs/api/dbSystems/index.js" + } + }, + "./api/resourceAnchors": { + "browser": { + "types": "./dist/browser/api/resourceAnchors/index.d.ts", + "default": "./dist/browser/api/resourceAnchors/index.js" + }, + "react-native": { + "types": "./dist/react-native/api/resourceAnchors/index.d.ts", + "default": "./dist/react-native/api/resourceAnchors/index.js" + }, + "import": { + "types": "./dist/esm/api/resourceAnchors/index.d.ts", + "default": "./dist/esm/api/resourceAnchors/index.js" + }, + "require": { + "types": "./dist/commonjs/api/resourceAnchors/index.d.ts", + "default": "./dist/commonjs/api/resourceAnchors/index.js" + } + }, + "./api/networkAnchors": { + "browser": { + "types": "./dist/browser/api/networkAnchors/index.d.ts", + "default": "./dist/browser/api/networkAnchors/index.js" + }, + "react-native": { + "types": "./dist/react-native/api/networkAnchors/index.d.ts", + "default": "./dist/react-native/api/networkAnchors/index.js" + }, + "import": { + "types": "./dist/esm/api/networkAnchors/index.d.ts", + "default": "./dist/esm/api/networkAnchors/index.js" + }, + "require": { + "types": "./dist/commonjs/api/networkAnchors/index.d.ts", + "default": "./dist/commonjs/api/networkAnchors/index.js" + } + }, "./api/exascaleDbStorageVaults": { "browser": { "types": "./dist/browser/api/exascaleDbStorageVaults/index.d.ts", diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseBackups-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseBackups-node.api.md index a384b9d43698..f521ca52f037 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseBackups-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseBackups-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, autonomousdatabasename: string, adbbackupid: string, options?: AutonomousDatabaseBackupsDeleteOptionalParams): PollerLike, void>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseCharacterSets-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseCharacterSets-node.api.md index b1a28246a836..e643ed03a147 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseCharacterSets-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseCharacterSets-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface AutonomousDatabaseCharacterSetsGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseNationalCharacterSets-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseNationalCharacterSets-node.api.md index 85c9b74a6da9..bffc3d602352 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseNationalCharacterSets-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseNationalCharacterSets-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface AutonomousDatabaseNationalCharacterSetsGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseVersions-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseVersions-node.api.md index 10369f7bad12..91c44e9b55a6 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseVersions-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabaseVersions-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface AutonomousDatabaseVersionsGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabases-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabases-node.api.md index fa5704d480ac..7dc25f97be36 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabases-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-autonomousDatabases-node.api.md @@ -4,14 +4,22 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, autonomousdatabasename: string, options?: AutonomousDatabasesDeleteOptionalParams): PollerLike, void>; +// @public +export function action(context: OracleDatabaseManagementContext, resourceGroupName: string, autonomousdatabasename: string, body: AutonomousDatabaseLifecycleAction, options?: AutonomousDatabasesActionOptionalParams): PollerLike, AutonomousDatabase>; + +// @public +export interface AutonomousDatabasesActionOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + // @public export interface AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams extends OperationOptions { updateIntervalInMs?: number; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudExadataInfrastructures-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudExadataInfrastructures-node.api.md index ce2b37b3d598..b3a96fd7dfa4 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudExadataInfrastructures-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudExadataInfrastructures-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresDeleteOptionalParams): PollerLike, void>; @@ -20,6 +20,11 @@ export interface CloudExadataInfrastructuresAddStorageCapacityOptionalParams ext updateIntervalInMs?: number; } +// @public +export interface CloudExadataInfrastructuresConfigureExascaleOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + // @public export interface CloudExadataInfrastructuresCreateOrUpdateOptionalParams extends OperationOptions { updateIntervalInMs?: number; @@ -47,6 +52,9 @@ export interface CloudExadataInfrastructuresUpdateOptionalParams extends Operati updateIntervalInMs?: number; } +// @public +export function configureExascale(context: OracleDatabaseManagementContext, resourceGroupName: string, cloudexadatainfrastructurename: string, body: ConfigureExascaleCloudExadataInfrastructureDetails, options?: CloudExadataInfrastructuresConfigureExascaleOptionalParams): PollerLike, CloudExadataInfrastructure>; + // @public export function createOrUpdate(context: OracleDatabaseManagementContext, resourceGroupName: string, cloudexadatainfrastructurename: string, resource: CloudExadataInfrastructure, options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams): PollerLike, CloudExadataInfrastructure>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudVmClusters-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudVmClusters-node.api.md index 9ca077504ab6..c2772df06479 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudVmClusters-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-cloudVmClusters-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, cloudvmclustername: string, options?: CloudVmClustersDeleteOptionalParams): PollerLike, void>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbNodes-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbNodes-node.api.md index f9e1eba30aef..0984346c999d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbNodes-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbNodes-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function action(context: OracleDatabaseManagementContext, resourceGroupName: string, cloudvmclustername: string, dbnodeocid: string, body: DbNodeAction, options?: DbNodesActionOptionalParams): PollerLike, DbNode>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbServers-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbServers-node.api.md index 68df0dc5d836..73a6b01f1ff2 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbServers-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbServers-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface DbServersGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystemShapes-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystemShapes-node.api.md index e0ef93a6d7d4..0370a14e610a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystemShapes-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystemShapes-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface DbSystemShapesGetOptionalParams extends OperationOptions { @@ -13,6 +13,7 @@ export interface DbSystemShapesGetOptionalParams extends OperationOptions { // @public export interface DbSystemShapesListByLocationOptionalParams extends OperationOptions { + shapeAttribute?: string; zone?: string; } diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystems-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystems-node.api.md new file mode 100644 index 000000000000..8d241be3c84e --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbSystems-node.api.md @@ -0,0 +1,59 @@ +## API Report File for "@azure/arm-oracledatabase" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; + +// @public +export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, dbSystemName: string, options?: DbSystemsDeleteOptionalParams): PollerLike, void>; + +// @public +export function createOrUpdate(context: OracleDatabaseManagementContext, resourceGroupName: string, dbSystemName: string, resource: DbSystem, options?: DbSystemsCreateOrUpdateOptionalParams): PollerLike, DbSystem>; + +// @public +export interface DbSystemsCreateOrUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface DbSystemsDeleteOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface DbSystemsGetOptionalParams extends OperationOptions { +} + +// @public +export interface DbSystemsListByResourceGroupOptionalParams extends OperationOptions { +} + +// @public +export interface DbSystemsListBySubscriptionOptionalParams extends OperationOptions { +} + +// @public +export interface DbSystemsUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export function get(context: OracleDatabaseManagementContext, resourceGroupName: string, dbSystemName: string, options?: DbSystemsGetOptionalParams): Promise; + +// @public +export function listByResourceGroup(context: OracleDatabaseManagementContext, resourceGroupName: string, options?: DbSystemsListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + +// @public +export function listBySubscription(context: OracleDatabaseManagementContext, options?: DbSystemsListBySubscriptionOptionalParams): PagedAsyncIterableIterator; + +// @public +export function update(context: OracleDatabaseManagementContext, resourceGroupName: string, dbSystemName: string, properties: DbSystemUpdate, options?: DbSystemsUpdateOptionalParams): PollerLike, DbSystem>; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbVersions-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbVersions-node.api.md new file mode 100644 index 000000000000..f7e9549ea455 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dbVersions-node.api.md @@ -0,0 +1,32 @@ +## API Report File for "@azure/arm-oracledatabase" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; + +// @public +export interface DbVersionsGetOptionalParams extends OperationOptions { +} + +// @public +export interface DbVersionsListByLocationOptionalParams extends OperationOptions { + dbSystemId?: string; + dbSystemShape?: BaseDbSystemShapes; + isDatabaseSoftwareImageSupported?: boolean; + isUpgradeSupported?: boolean; + shapeFamily?: ShapeFamilyType; + storageManagement?: StorageManagementType; +} + +// @public +export function get(context: OracleDatabaseManagementContext, location: string, dbversionsname: string, options?: DbVersionsGetOptionalParams): Promise; + +// @public +export function listByLocation(context: OracleDatabaseManagementContext, location: string, options?: DbVersionsListByLocationOptionalParams): PagedAsyncIterableIterator; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateViews-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateViews-node.api.md index 74fda1d8c027..f665f4ee5e23 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateViews-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateViews-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface DnsPrivateViewsGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateZones-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateZones-node.api.md index bba81ef09a2b..5b3269351354 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateZones-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-dnsPrivateZones-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface DnsPrivateZonesGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exadbVmClusters-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exadbVmClusters-node.api.md index 730ca0f0d18e..822383d1cb8a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exadbVmClusters-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exadbVmClusters-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, exadbVmClusterName: string, options?: ExadbVmClustersDeleteOptionalParams): PollerLike, void>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbNodes-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbNodes-node.api.md index 31bb5f79f626..5c24d61cd3be 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbNodes-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbNodes-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function action(context: OracleDatabaseManagementContext, resourceGroupName: string, exadbVmClusterName: string, exascaleDbNodeName: string, body: DbNodeAction, options?: ExascaleDbNodesActionOptionalParams): PollerLike, DbActionResponse>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbStorageVaults-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbStorageVaults-node.api.md index fbf3b21635e3..6908ab35665e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbStorageVaults-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-exascaleDbStorageVaults-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, exascaleDbStorageVaultName: string, options?: ExascaleDbStorageVaultsDeleteOptionalParams): PollerLike, void>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-flexComponents-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-flexComponents-node.api.md index d568b2cd02a4..b4fa96d4b074 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-flexComponents-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-flexComponents-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export interface FlexComponentsGetOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giMinorVersions-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giMinorVersions-node.api.md index b35fc62cfb63..30b32237aa49 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giMinorVersions-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giMinorVersions-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export function get(context: OracleDatabaseManagementContext, location: string, giversionname: string, giMinorVersionName: string, options?: GiMinorVersionsGetOptionalParams): Promise; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giVersions-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giVersions-node.api.md index 792a8c3b13f0..5741f09f114f 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giVersions-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-giVersions-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export function get(context: OracleDatabaseManagementContext, location: string, giversionname: string, options?: GiVersionsGetOptionalParams): Promise; @@ -17,6 +17,7 @@ export interface GiVersionsGetOptionalParams extends OperationOptions { // @public export interface GiVersionsListByLocationOptionalParams extends OperationOptions { shape?: SystemShapes; + shapeAttribute?: string; zone?: string; } diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-networkAnchors-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-networkAnchors-node.api.md new file mode 100644 index 000000000000..b888c1028406 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-networkAnchors-node.api.md @@ -0,0 +1,59 @@ +## API Report File for "@azure/arm-oracledatabase" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; + +// @public +export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, networkAnchorName: string, options?: NetworkAnchorsDeleteOptionalParams): PollerLike, void>; + +// @public +export function createOrUpdate(context: OracleDatabaseManagementContext, resourceGroupName: string, networkAnchorName: string, resource: NetworkAnchor, options?: NetworkAnchorsCreateOrUpdateOptionalParams): PollerLike, NetworkAnchor>; + +// @public +export function get(context: OracleDatabaseManagementContext, resourceGroupName: string, networkAnchorName: string, options?: NetworkAnchorsGetOptionalParams): Promise; + +// @public +export function listByResourceGroup(context: OracleDatabaseManagementContext, resourceGroupName: string, options?: NetworkAnchorsListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + +// @public +export function listBySubscription(context: OracleDatabaseManagementContext, options?: NetworkAnchorsListBySubscriptionOptionalParams): PagedAsyncIterableIterator; + +// @public +export interface NetworkAnchorsCreateOrUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface NetworkAnchorsDeleteOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface NetworkAnchorsGetOptionalParams extends OperationOptions { +} + +// @public +export interface NetworkAnchorsListByResourceGroupOptionalParams extends OperationOptions { +} + +// @public +export interface NetworkAnchorsListBySubscriptionOptionalParams extends OperationOptions { +} + +// @public +export interface NetworkAnchorsUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export function update(context: OracleDatabaseManagementContext, resourceGroupName: string, networkAnchorName: string, properties: NetworkAnchorUpdate, options?: NetworkAnchorsUpdateOptionalParams): PollerLike, NetworkAnchor>; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-node.api.md index a477f1e3bcd8..347e14454f79 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-node.api.md @@ -4,9 +4,9 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { ClientOptions } from '@azure-rest/core-client'; -import { TokenCredential } from '@azure/core-auth'; +import type { Client } from '@azure-rest/core-client'; +import type { ClientOptions } from '@azure-rest/core-client'; +import type { TokenCredential } from '@azure/core-auth'; // @public (undocumented) export function createOracleDatabaseManagement(credential: TokenCredential, subscriptionId: string, options?: OracleDatabaseManagementClientOptionalParams): OracleDatabaseManagementContext; @@ -14,6 +14,7 @@ export function createOracleDatabaseManagement(credential: TokenCredential, subs // @public export interface OracleDatabaseManagementClientOptionalParams extends ClientOptions { apiVersion?: string; + cloudSetting?: AzureSupportedClouds; } // @public (undocumented) diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-operations-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-operations-node.api.md index 540e9a25beb4..e625d386d51e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-operations-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-operations-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export function list(context: OracleDatabaseManagementContext, options?: OperationsListOptionalParams): PagedAsyncIterableIterator; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-oracleSubscriptions-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-oracleSubscriptions-node.api.md index a4a82f5bb84c..28173d4d48b0 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-oracleSubscriptions-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-oracleSubscriptions-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, options?: OracleSubscriptionsDeleteOptionalParams): PollerLike, void>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-resourceAnchors-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-resourceAnchors-node.api.md new file mode 100644 index 000000000000..65c93a9dd668 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-resourceAnchors-node.api.md @@ -0,0 +1,59 @@ +## API Report File for "@azure/arm-oracledatabase" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; + +// @public +export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, resourceAnchorName: string, options?: ResourceAnchorsDeleteOptionalParams): PollerLike, void>; + +// @public +export function createOrUpdate(context: OracleDatabaseManagementContext, resourceGroupName: string, resourceAnchorName: string, resource: ResourceAnchor, options?: ResourceAnchorsCreateOrUpdateOptionalParams): PollerLike, ResourceAnchor>; + +// @public +export function get(context: OracleDatabaseManagementContext, resourceGroupName: string, resourceAnchorName: string, options?: ResourceAnchorsGetOptionalParams): Promise; + +// @public +export function listByResourceGroup(context: OracleDatabaseManagementContext, resourceGroupName: string, options?: ResourceAnchorsListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + +// @public +export function listBySubscription(context: OracleDatabaseManagementContext, options?: ResourceAnchorsListBySubscriptionOptionalParams): PagedAsyncIterableIterator; + +// @public +export interface ResourceAnchorsCreateOrUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface ResourceAnchorsDeleteOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface ResourceAnchorsGetOptionalParams extends OperationOptions { +} + +// @public +export interface ResourceAnchorsListByResourceGroupOptionalParams extends OperationOptions { +} + +// @public +export interface ResourceAnchorsListBySubscriptionOptionalParams extends OperationOptions { +} + +// @public +export interface ResourceAnchorsUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export function update(context: OracleDatabaseManagementContext, resourceGroupName: string, resourceAnchorName: string, properties: ResourceAnchorUpdate, options?: ResourceAnchorsUpdateOptionalParams): PollerLike, ResourceAnchor>; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-systemVersions-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-systemVersions-node.api.md index 4a600a013bb2..e25c4dcd2db2 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-systemVersions-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-systemVersions-node.api.md @@ -4,8 +4,8 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; // @public export function get(context: OracleDatabaseManagementContext, location: string, systemversionname: string, options?: SystemVersionsGetOptionalParams): Promise; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-virtualNetworkAddresses-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-virtualNetworkAddresses-node.api.md index ce9350b95a62..810b1ef772a7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-virtualNetworkAddresses-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-api-virtualNetworkAddresses-node.api.md @@ -4,10 +4,10 @@ ```ts -import { Client } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PollerLike } from '@azure/core-lro'; +import type { Client } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PollerLike } from '@azure/core-lro'; // @public export function $delete(context: OracleDatabaseManagementContext, resourceGroupName: string, cloudvmclustername: string, virtualnetworkaddressname: string, options?: VirtualNetworkAddressesDeleteOptionalParams): PollerLike, void>; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-models-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-models-node.api.md index d2400d06fca9..a13c254722af 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-models-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-models-node.api.md @@ -138,7 +138,7 @@ export interface AutonomousDatabaseBaseProperties { readonly provisioningState?: AzureResourceProvisioningState; readonly remoteDisasterRecoveryConfiguration?: DisasterRecoveryConfigurationDetails; role?: RoleType; - scheduledOperations?: ScheduledOperationsType; + scheduledOperationsList?: ScheduledOperationsType[]; readonly serviceConsoleUrl?: string; readonly sqlWebDeveloperUrl?: string; subnetId?: string; @@ -208,6 +208,14 @@ export interface AutonomousDatabaseFromBackupTimestampProperties extends Autonom useLatestAvailableBackupTimeStamp?: boolean; } +// @public +export interface AutonomousDatabaseLifecycleAction { + action: AutonomousDatabaseLifecycleActionEnum; +} + +// @public +export type AutonomousDatabaseLifecycleActionEnum = string; + // @public export type AutonomousDatabaseLifecycleState = string; @@ -264,7 +272,7 @@ export interface AutonomousDatabaseUpdateProperties { peerDbId?: string; permissionLevel?: PermissionLevelType; role?: RoleType; - scheduledOperations?: ScheduledOperationsTypeUpdate; + scheduledOperationsList?: ScheduledOperationsTypeUpdate[]; whitelistedIps?: string[]; } @@ -299,6 +307,9 @@ export interface AzureSubscriptions { azureSubscriptionIds: string[]; } +// @public +export type BaseDbSystemShapes = string; + // @public export type CloneType = string; @@ -336,6 +347,7 @@ export interface CloudExadataInfrastructureProperties { readonly definedFileSystemConfiguration?: DefinedFileSystemConfiguration[]; displayName: string; readonly estimatedPatchingTime?: EstimatedPatchingTime; + readonly exascaleConfig?: ExascaleConfigDetails; readonly lastMaintenanceRunId?: string; readonly lifecycleDetails?: string; readonly lifecycleState?: CloudExadataInfrastructureLifecycleState; @@ -400,6 +412,7 @@ export interface CloudVmClusterProperties { readonly diskRedundancy?: DiskRedundancy; displayName: string; domain?: string; + exascaleDbStorageVaultId?: string; fileSystemConfigurationDetails?: FileSystemConfigurationDetails[]; giVersion: string; hostname: string; @@ -426,6 +439,7 @@ export interface CloudVmClusterProperties { scanListenerPortTcpSsl?: number; readonly shape?: string; sshPublicKeys: string[]; + readonly storageManagementType?: ExadataVmClusterStorageManagementType; storageSizeInGbs?: number; subnetId: string; readonly subnetOcid?: string; @@ -462,6 +476,11 @@ export interface CloudVmClusterUpdateProperties { // @public export type ComputeModel = string; +// @public +export interface ConfigureExascaleCloudExadataInfrastructureDetails { + totalStorageInGbs: number; +} + // @public export interface ConnectionStringType { allConnectionStrings?: AllConnectionStringType; @@ -520,7 +539,7 @@ export type DayOfWeekName = string; // @public export interface DayOfWeekUpdate { - name: DayOfWeekName; + name?: DayOfWeekName; } // @public @@ -630,6 +649,69 @@ export interface DbServerProperties { // @public export type DbServerProvisioningState = string; +// @public +export interface DbSystem extends TrackedResource { + properties?: DbSystemProperties; + zones?: string[]; +} + +// @public +export interface DbSystemBaseProperties { + clusterName?: string; + computeCount?: number; + computeModel?: ComputeModel; + readonly dataStorageSizeInGbs?: number; + dbSystemOptions?: DbSystemOptions; + diskRedundancy?: DiskRedundancyType; + displayName?: string; + domainV2?: string; + readonly gridImageOcid?: string; + hostname: string; + initialDataStorageSizeInGb?: number; + licenseModelV2?: LicenseModel; + readonly lifecycleDetails?: string; + readonly lifecycleState?: DbSystemLifecycleState; + readonly listenerPort?: number; + readonly memorySizeInGbs?: number; + networkAnchorId: string; + nodeCount?: number; + readonly ocid?: string; + readonly ociUrl?: string; + readonly provisioningState?: AzureResourceProvisioningState; + resourceAnchorId: string; + readonly scanDnsName?: string; + readonly scanIps?: string[]; + shape: string; + source?: DbSystemSourceType; + sshPublicKeys: string[]; + storageVolumePerformanceMode?: StorageVolumePerformanceMode; + timeZone?: string; + readonly version?: string; +} + +// @public +export type DbSystemBasePropertiesUnion = DbSystemProperties | DbSystemBaseProperties; + +// @public +export type DbSystemDatabaseEditionType = string; + +// @public +export type DbSystemLifecycleState = string; + +// @public +export interface DbSystemOptions { + storageManagement?: StorageManagementType; +} + +// @public +export interface DbSystemProperties extends DbSystemBaseProperties { + adminPassword?: string; + databaseEdition: DbSystemDatabaseEditionType; + dbVersion: string; + pdbName?: string; + source: "None"; +} + // @public export interface DbSystemShape extends ProxyResource { properties?: DbSystemShapeProperties; @@ -659,10 +741,40 @@ export interface DbSystemShapeProperties { minMemoryPerNodeInGbs?: number; minStorageCount?: number; runtimeMinimumCoreCount?: number; + shapeAttributes?: string[]; shapeFamily?: string; shapeName: string; } +// @public +export type DbSystemSourceType = string; + +// @public +export interface DbSystemUpdate { + properties?: DbSystemUpdateProperties; + tags?: Record; + zones?: string[]; +} + +// @public +export interface DbSystemUpdateProperties { + source?: "None"; +} + +// @public +export interface DbVersion extends ProxyResource { + properties?: DbVersionProperties; +} + +// @public +export interface DbVersionProperties { + isLatestForMajorVersion?: boolean; + isPreviewDbVersion?: boolean; + isUpgradeSupported?: boolean; + supportsPdb?: boolean; + version: string; +} + // @public export interface DefinedFileSystemConfiguration { isBackupPartition?: boolean; @@ -685,6 +797,15 @@ export type DisasterRecoveryType = string; // @public export type DiskRedundancy = string; +// @public +export type DiskRedundancyType = string; + +// @public +export interface DnsForwardingRule { + domainNames: string; + forwardingIpAddress: string; +} + // @public export interface DnsPrivateView extends ProxyResource { properties?: DnsPrivateViewProperties; @@ -763,6 +884,9 @@ export interface ExadataIormConfig { objective?: Objective; } +// @public +export type ExadataVmClusterStorageManagementType = string; + // @public export interface ExadbVmCluster extends TrackedResource { properties?: ExadbVmClusterProperties; @@ -805,6 +929,7 @@ export interface ExadbVmClusterProperties { scanListenerPortTcp?: number; scanListenerPortTcpSsl?: number; shape: string; + shapeAttribute?: ShapeAttribute; readonly snapshotFileSystemStorage?: ExadbVmClusterStorageDetails; sshPublicKeys: string[]; subnetId: string; @@ -836,6 +961,12 @@ export interface ExadbVmClusterUpdateProperties { nodeCount?: number; } +// @public +export interface ExascaleConfigDetails { + availableStorageInGbs?: number; + totalStorageInGbs: number; +} + // @public export interface ExascaleDbNode extends ProxyResource { properties?: ExascaleDbNodeProperties; @@ -881,8 +1012,10 @@ export type ExascaleDbStorageVaultLifecycleState = string; // @public export interface ExascaleDbStorageVaultProperties { additionalFlashCacheInPercent?: number; + readonly attachedShapeAttributes?: ShapeAttribute[]; description?: string; displayName: string; + exadataInfrastructureId?: string; readonly highCapacityDatabaseStorage?: ExascaleDbStorageDetails; highCapacityDatabaseStorageInput: ExascaleDbStorageInputDetails; readonly lifecycleDetails?: string; @@ -998,6 +1131,13 @@ export enum KnownAutonomousDatabaseBackupType { LongTerm = "LongTerm" } +// @public +export enum KnownAutonomousDatabaseLifecycleActionEnum { + Restart = "Restart", + Start = "Start", + Stop = "Stop" +} + // @public export enum KnownAutonomousDatabaseLifecycleState { Available = "Available", @@ -1037,6 +1177,11 @@ export enum KnownAzureResourceProvisioningState { Succeeded = "Succeeded" } +// @public +export enum KnownBaseDbSystemShapes { + VMStandardX86 = "VM.Standard.x86" +} + // @public export enum KnownCloneType { Full = "Full", @@ -1173,6 +1318,34 @@ export enum KnownDbServerProvisioningState { Unavailable = "Unavailable" } +// @public +export enum KnownDbSystemDatabaseEditionType { + EnterpriseEdition = "EnterpriseEdition", + EnterpriseEditionDeveloper = "EnterpriseEditionDeveloper", + EnterpriseEditionExtreme = "EnterpriseEditionExtreme", + EnterpriseEditionHighPerformance = "EnterpriseEditionHighPerformance", + StandardEdition = "StandardEdition" +} + +// @public +export enum KnownDbSystemLifecycleState { + Available = "Available", + Failed = "Failed", + MaintenanceInProgress = "MaintenanceInProgress", + Migrated = "Migrated", + NeedsAttention = "NeedsAttention", + Provisioning = "Provisioning", + Terminated = "Terminated", + Terminating = "Terminating", + Updating = "Updating", + Upgrading = "Upgrading" +} + +// @public +export enum KnownDbSystemSourceType { + None = "None" +} + // @public export enum KnownDisasterRecoveryType { Adg = "Adg", @@ -1185,6 +1358,12 @@ export enum KnownDiskRedundancy { Normal = "Normal" } +// @public +export enum KnownDiskRedundancyType { + High = "High", + Normal = "Normal" +} + // @public export enum KnownDnsPrivateViewsLifecycleState { Active = "Active", @@ -1202,6 +1381,12 @@ export enum KnownDnsPrivateZonesLifecycleState { Updating = "Updating" } +// @public +export enum KnownExadataVmClusterStorageManagementType { + ASM = "ASM", + Exascale = "Exascale" +} + // @public export enum KnownExadbVmClusterLifecycleState { Available = "Available", @@ -1389,12 +1574,26 @@ export enum KnownSessionModeType { Redirect = "Redirect" } +// @public +export enum KnownShapeAttribute { + BlockStorage = "BLOCK_STORAGE", + SmartStorage = "SMART_STORAGE" +} + // @public export enum KnownShapeFamily { Exadata = "EXADATA", ExadbXs = "EXADB_XS" } +// @public +export enum KnownShapeFamilyType { + Exadata = "EXADATA", + ExadbXs = "EXADB_XS", + SingleNode = "SINGLENODE", + VirtualMachine = "VIRTUALMACHINE" +} + // @public export enum KnownSourceType { BackupFromId = "BackupFromId", @@ -1406,6 +1605,17 @@ export enum KnownSourceType { None = "None" } +// @public +export enum KnownStorageManagementType { + LVM = "LVM" +} + +// @public +export enum KnownStorageVolumePerformanceMode { + Balanced = "Balanced", + HighPerformance = "HighPerformance" +} + // @public export enum KnownSyntaxFormatType { Ezconnect = "Ezconnect", @@ -1430,7 +1640,8 @@ export enum KnownTlsAuthenticationType { export enum KnownVersions { V20230901 = "2023-09-01", V20240601 = "2024-06-01", - V20250301 = "2025-03-01" + V20250301 = "2025-03-01", + V20250901 = "2025-09-01" } // @public @@ -1489,6 +1700,50 @@ export interface Month { // @public export type MonthName = string; +// @public +export interface NetworkAnchor extends TrackedResource { + properties?: NetworkAnchorProperties; + zones?: string[]; +} + +// @public +export interface NetworkAnchorProperties { + readonly cidrBlock?: string; + readonly dnsForwardingEndpointIpAddress?: string; + readonly dnsForwardingEndpointNsgRulesUrl?: string; + dnsForwardingRules?: DnsForwardingRule[]; + readonly dnsForwardingRulesUrl?: string; + dnsListeningEndpointAllowedCidrs?: string; + readonly dnsListeningEndpointIpAddress?: string; + readonly dnsListeningEndpointNsgRulesUrl?: string; + isOracleDnsForwardingEndpointEnabled?: boolean; + isOracleDnsListeningEndpointEnabled?: boolean; + isOracleToAzureDnsZoneSyncEnabled?: boolean; + ociBackupCidrBlock?: string; + readonly ociSubnetId?: string; + ociVcnDnsLabel?: string; + readonly ociVcnId?: string; + readonly provisioningState?: AzureResourceProvisioningState; + resourceAnchorId: string; + subnetId: string; + readonly vnetId?: string; +} + +// @public +export interface NetworkAnchorUpdate { + properties?: NetworkAnchorUpdateProperties; + tags?: Record; + zones?: string[]; +} + +// @public +export interface NetworkAnchorUpdateProperties { + isOracleDnsForwardingEndpointEnabled?: boolean; + isOracleDnsListeningEndpointEnabled?: boolean; + isOracleToAzureDnsZoneSyncEnabled?: boolean; + ociBackupCidrBlock?: string; +} + // @public export interface NsgCidr { destinationPortRange?: PortRange; @@ -1656,6 +1911,22 @@ export interface Resource { readonly type?: string; } +// @public +export interface ResourceAnchor extends TrackedResource { + properties?: ResourceAnchorProperties; +} + +// @public +export interface ResourceAnchorProperties { + readonly linkedCompartmentId?: string; + readonly provisioningState?: AzureResourceProvisioningState; +} + +// @public +export interface ResourceAnchorUpdate { + tags?: Record; +} + // @public export type ResourceProvisioningState = string; @@ -1692,7 +1963,7 @@ export interface ScheduledOperationsType { // @public export interface ScheduledOperationsTypeUpdate { - dayOfWeek: DayOfWeekUpdate; + dayOfWeek?: DayOfWeekUpdate; scheduledStartTime?: string; scheduledStopTime?: string; } @@ -1700,12 +1971,24 @@ export interface ScheduledOperationsTypeUpdate { // @public export type SessionModeType = string; +// @public +export type ShapeAttribute = string; + // @public export type ShapeFamily = string; +// @public +export type ShapeFamilyType = string; + // @public export type SourceType = string; +// @public +export type StorageManagementType = string; + +// @public +export type StorageVolumePerformanceMode = string; + // @public export type SyntaxFormatType = string; diff --git a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-node.api.md b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-node.api.md index 455f1be564b4..3b79980de40d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-node.api.md +++ b/sdk/oracledatabase/arm-oracledatabase/review/arm-oracledatabase-node.api.md @@ -4,14 +4,14 @@ ```ts -import { AbortSignalLike } from '@azure/abort-controller'; -import { ClientOptions } from '@azure-rest/core-client'; -import { OperationOptions } from '@azure-rest/core-client'; -import { OperationState } from '@azure/core-lro'; -import { PathUncheckedResponse } from '@azure-rest/core-client'; -import { Pipeline } from '@azure/core-rest-pipeline'; -import { PollerLike } from '@azure/core-lro'; -import { TokenCredential } from '@azure/core-auth'; +import type { AbortSignalLike } from '@azure/abort-controller'; +import type { ClientOptions } from '@azure-rest/core-client'; +import type { OperationOptions } from '@azure-rest/core-client'; +import type { OperationState } from '@azure/core-lro'; +import type { PathUncheckedResponse } from '@azure-rest/core-client'; +import type { Pipeline } from '@azure/core-rest-pipeline'; +import type { PollerLike } from '@azure/core-lro'; +import type { TokenCredential } from '@azure/core-auth'; // @public export type ActionType = string; @@ -179,7 +179,7 @@ export interface AutonomousDatabaseBaseProperties { readonly provisioningState?: AzureResourceProvisioningState; readonly remoteDisasterRecoveryConfiguration?: DisasterRecoveryConfigurationDetails; role?: RoleType; - scheduledOperations?: ScheduledOperationsType; + scheduledOperationsList?: ScheduledOperationsType[]; readonly serviceConsoleUrl?: string; readonly sqlWebDeveloperUrl?: string; subnetId?: string; @@ -263,6 +263,14 @@ export interface AutonomousDatabaseFromBackupTimestampProperties extends Autonom useLatestAvailableBackupTimeStamp?: boolean; } +// @public +export interface AutonomousDatabaseLifecycleAction { + action: AutonomousDatabaseLifecycleActionEnum; +} + +// @public +export type AutonomousDatabaseLifecycleActionEnum = string; + // @public export type AutonomousDatabaseLifecycleState = string; @@ -295,6 +303,11 @@ export interface AutonomousDatabaseProperties extends AutonomousDatabaseBaseProp dataBaseType: "Regular"; } +// @public +export interface AutonomousDatabasesActionOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + // @public export interface AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams extends OperationOptions { updateIntervalInMs?: number; @@ -333,6 +346,7 @@ export interface AutonomousDatabasesListBySubscriptionOptionalParams extends Ope // @public export interface AutonomousDatabasesOperations { + action: (resourceGroupName: string, autonomousdatabasename: string, body: AutonomousDatabaseLifecycleAction, options?: AutonomousDatabasesActionOptionalParams) => PollerLike, AutonomousDatabase>; changeDisasterRecoveryConfiguration: (resourceGroupName: string, autonomousdatabasename: string, body: DisasterRecoveryConfigurationDetails, options?: AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams) => PollerLike, AutonomousDatabase>; createOrUpdate: (resourceGroupName: string, autonomousdatabasename: string, resource: AutonomousDatabase, options?: AutonomousDatabasesCreateOrUpdateOptionalParams) => PollerLike, AutonomousDatabase>; delete: (resourceGroupName: string, autonomousdatabasename: string, options?: AutonomousDatabasesDeleteOptionalParams) => PollerLike, void>; @@ -405,7 +419,7 @@ export interface AutonomousDatabaseUpdateProperties { peerDbId?: string; permissionLevel?: PermissionLevelType; role?: RoleType; - scheduledOperations?: ScheduledOperationsTypeUpdate; + scheduledOperationsList?: ScheduledOperationsTypeUpdate[]; whitelistedIps?: string[]; } @@ -446,6 +460,13 @@ export interface AutonomousDbVersionProperties { // @public export type AutonomousMaintenanceScheduleType = string; +// @public +export enum AzureClouds { + AZURE_CHINA_CLOUD = "AZURE_CHINA_CLOUD", + AZURE_PUBLIC_CLOUD = "AZURE_PUBLIC_CLOUD", + AZURE_US_GOVERNMENT = "AZURE_US_GOVERNMENT" +} + // @public export type AzureResourceProvisioningState = string; @@ -454,6 +475,12 @@ export interface AzureSubscriptions { azureSubscriptionIds: string[]; } +// @public +export type AzureSupportedClouds = `${AzureClouds}`; + +// @public +export type BaseDbSystemShapes = string; + // @public export type CloneType = string; @@ -491,6 +518,7 @@ export interface CloudExadataInfrastructureProperties { readonly definedFileSystemConfiguration?: DefinedFileSystemConfiguration[]; displayName: string; readonly estimatedPatchingTime?: EstimatedPatchingTime; + readonly exascaleConfig?: ExascaleConfigDetails; readonly lastMaintenanceRunId?: string; readonly lifecycleDetails?: string; readonly lifecycleState?: CloudExadataInfrastructureLifecycleState; @@ -519,6 +547,11 @@ export interface CloudExadataInfrastructuresAddStorageCapacityOptionalParams ext updateIntervalInMs?: number; } +// @public +export interface CloudExadataInfrastructuresConfigureExascaleOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + // @public export interface CloudExadataInfrastructuresCreateOrUpdateOptionalParams extends OperationOptions { updateIntervalInMs?: number; @@ -544,6 +577,7 @@ export interface CloudExadataInfrastructuresListBySubscriptionOptionalParams ext // @public export interface CloudExadataInfrastructuresOperations { addStorageCapacity: (resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresAddStorageCapacityOptionalParams) => PollerLike, CloudExadataInfrastructure>; + configureExascale: (resourceGroupName: string, cloudexadatainfrastructurename: string, body: ConfigureExascaleCloudExadataInfrastructureDetails, options?: CloudExadataInfrastructuresConfigureExascaleOptionalParams) => PollerLike, CloudExadataInfrastructure>; createOrUpdate: (resourceGroupName: string, cloudexadatainfrastructurename: string, resource: CloudExadataInfrastructure, options?: CloudExadataInfrastructuresCreateOrUpdateOptionalParams) => PollerLike, CloudExadataInfrastructure>; delete: (resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresDeleteOptionalParams) => PollerLike, void>; get: (resourceGroupName: string, cloudexadatainfrastructurename: string, options?: CloudExadataInfrastructuresGetOptionalParams) => Promise; @@ -598,6 +632,7 @@ export interface CloudVmClusterProperties { readonly diskRedundancy?: DiskRedundancy; displayName: string; domain?: string; + exascaleDbStorageVaultId?: string; fileSystemConfigurationDetails?: FileSystemConfigurationDetails[]; giVersion: string; hostname: string; @@ -624,6 +659,7 @@ export interface CloudVmClusterProperties { scanListenerPortTcpSsl?: number; readonly shape?: string; sshPublicKeys: string[]; + readonly storageManagementType?: ExadataVmClusterStorageManagementType; storageSizeInGbs?: number; subnetId: string; readonly subnetOcid?: string; @@ -714,6 +750,11 @@ export interface CloudVmClusterUpdateProperties { // @public export type ComputeModel = string; +// @public +export interface ConfigureExascaleCloudExadataInfrastructureDetails { + totalStorageInGbs: number; +} + // @public export interface ConnectionStringType { allConnectionStrings?: AllConnectionStringType; @@ -777,7 +818,7 @@ export type DayOfWeekName = string; // @public export interface DayOfWeekUpdate { - name: DayOfWeekName; + name?: DayOfWeekName; } // @public @@ -921,6 +962,83 @@ export interface DbServersOperations { listByParent: (resourceGroupName: string, cloudexadatainfrastructurename: string, options?: DbServersListByParentOptionalParams) => PagedAsyncIterableIterator; } +// @public +export interface DbSystem extends TrackedResource { + properties?: DbSystemProperties; + zones?: string[]; +} + +// @public +export interface DbSystemBaseProperties { + clusterName?: string; + computeCount?: number; + computeModel?: ComputeModel; + readonly dataStorageSizeInGbs?: number; + dbSystemOptions?: DbSystemOptions; + diskRedundancy?: DiskRedundancyType; + displayName?: string; + domainV2?: string; + readonly gridImageOcid?: string; + hostname: string; + initialDataStorageSizeInGb?: number; + licenseModelV2?: LicenseModel; + readonly lifecycleDetails?: string; + readonly lifecycleState?: DbSystemLifecycleState; + readonly listenerPort?: number; + readonly memorySizeInGbs?: number; + networkAnchorId: string; + nodeCount?: number; + readonly ocid?: string; + readonly ociUrl?: string; + readonly provisioningState?: AzureResourceProvisioningState; + resourceAnchorId: string; + readonly scanDnsName?: string; + readonly scanIps?: string[]; + shape: string; + source?: DbSystemSourceType; + sshPublicKeys: string[]; + storageVolumePerformanceMode?: StorageVolumePerformanceMode; + timeZone?: string; + readonly version?: string; +} + +// @public +export type DbSystemBasePropertiesUnion = DbSystemProperties | DbSystemBaseProperties; + +// @public +export type DbSystemDatabaseEditionType = string; + +// @public +export type DbSystemLifecycleState = string; + +// @public +export interface DbSystemOptions { + storageManagement?: StorageManagementType; +} + +// @public +export interface DbSystemProperties extends DbSystemBaseProperties { + adminPassword?: string; + databaseEdition: DbSystemDatabaseEditionType; + dbVersion: string; + pdbName?: string; + source: "None"; +} + +// @public +export interface DbSystemsCreateOrUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface DbSystemsDeleteOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface DbSystemsGetOptionalParams extends OperationOptions { +} + // @public export interface DbSystemShape extends ProxyResource { properties?: DbSystemShapeProperties; @@ -950,6 +1068,7 @@ export interface DbSystemShapeProperties { minMemoryPerNodeInGbs?: number; minStorageCount?: number; runtimeMinimumCoreCount?: number; + shapeAttributes?: string[]; shapeFamily?: string; shapeName: string; } @@ -960,6 +1079,7 @@ export interface DbSystemShapesGetOptionalParams extends OperationOptions { // @public export interface DbSystemShapesListByLocationOptionalParams extends OperationOptions { + shapeAttribute?: string; zone?: string; } @@ -969,6 +1089,78 @@ export interface DbSystemShapesOperations { listByLocation: (location: string, options?: DbSystemShapesListByLocationOptionalParams) => PagedAsyncIterableIterator; } +// @public +export interface DbSystemsListByResourceGroupOptionalParams extends OperationOptions { +} + +// @public +export interface DbSystemsListBySubscriptionOptionalParams extends OperationOptions { +} + +// @public +export interface DbSystemsOperations { + createOrUpdate: (resourceGroupName: string, dbSystemName: string, resource: DbSystem, options?: DbSystemsCreateOrUpdateOptionalParams) => PollerLike, DbSystem>; + delete: (resourceGroupName: string, dbSystemName: string, options?: DbSystemsDeleteOptionalParams) => PollerLike, void>; + get: (resourceGroupName: string, dbSystemName: string, options?: DbSystemsGetOptionalParams) => Promise; + listByResourceGroup: (resourceGroupName: string, options?: DbSystemsListByResourceGroupOptionalParams) => PagedAsyncIterableIterator; + listBySubscription: (options?: DbSystemsListBySubscriptionOptionalParams) => PagedAsyncIterableIterator; + update: (resourceGroupName: string, dbSystemName: string, properties: DbSystemUpdate, options?: DbSystemsUpdateOptionalParams) => PollerLike, DbSystem>; +} + +// @public +export type DbSystemSourceType = string; + +// @public +export interface DbSystemsUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface DbSystemUpdate { + properties?: DbSystemUpdateProperties; + tags?: Record; + zones?: string[]; +} + +// @public +export interface DbSystemUpdateProperties { + source?: "None"; +} + +// @public +export interface DbVersion extends ProxyResource { + properties?: DbVersionProperties; +} + +// @public +export interface DbVersionProperties { + isLatestForMajorVersion?: boolean; + isPreviewDbVersion?: boolean; + isUpgradeSupported?: boolean; + supportsPdb?: boolean; + version: string; +} + +// @public +export interface DbVersionsGetOptionalParams extends OperationOptions { +} + +// @public +export interface DbVersionsListByLocationOptionalParams extends OperationOptions { + dbSystemId?: string; + dbSystemShape?: BaseDbSystemShapes; + isDatabaseSoftwareImageSupported?: boolean; + isUpgradeSupported?: boolean; + shapeFamily?: ShapeFamilyType; + storageManagement?: StorageManagementType; +} + +// @public +export interface DbVersionsOperations { + get: (location: string, dbversionsname: string, options?: DbVersionsGetOptionalParams) => Promise; + listByLocation: (location: string, options?: DbVersionsListByLocationOptionalParams) => PagedAsyncIterableIterator; +} + // @public export interface DefinedFileSystemConfiguration { isBackupPartition?: boolean; @@ -991,6 +1183,15 @@ export type DisasterRecoveryType = string; // @public export type DiskRedundancy = string; +// @public +export type DiskRedundancyType = string; + +// @public +export interface DnsForwardingRule { + domainNames: string; + forwardingIpAddress: string; +} + // @public export interface DnsPrivateView extends ProxyResource { properties?: DnsPrivateViewProperties; @@ -1097,6 +1298,9 @@ export interface ExadataIormConfig { objective?: Objective; } +// @public +export type ExadataVmClusterStorageManagementType = string; + // @public export interface ExadbVmCluster extends TrackedResource { properties?: ExadbVmClusterProperties; @@ -1139,6 +1343,7 @@ export interface ExadbVmClusterProperties { scanListenerPortTcp?: number; scanListenerPortTcpSsl?: number; shape: string; + shapeAttribute?: ShapeAttribute; readonly snapshotFileSystemStorage?: ExadbVmClusterStorageDetails; sshPublicKeys: string[]; subnetId: string; @@ -1213,6 +1418,12 @@ export interface ExadbVmClusterUpdateProperties { nodeCount?: number; } +// @public +export interface ExascaleConfigDetails { + availableStorageInGbs?: number; + totalStorageInGbs: number; +} + // @public export interface ExascaleDbNode extends ProxyResource { properties?: ExascaleDbNodeProperties; @@ -1278,8 +1489,10 @@ export type ExascaleDbStorageVaultLifecycleState = string; // @public export interface ExascaleDbStorageVaultProperties { additionalFlashCacheInPercent?: number; + readonly attachedShapeAttributes?: ShapeAttribute[]; description?: string; displayName: string; + exadataInfrastructureId?: string; readonly highCapacityDatabaseStorage?: ExascaleDbStorageDetails; highCapacityDatabaseStorageInput: ExascaleDbStorageInputDetails; readonly lifecycleDetails?: string; @@ -1427,6 +1640,7 @@ export interface GiVersionsGetOptionalParams extends OperationOptions { // @public export interface GiVersionsListByLocationOptionalParams extends OperationOptions { shape?: SystemShapes; + shapeAttribute?: string; zone?: string; } @@ -1479,6 +1693,13 @@ export enum KnownAutonomousDatabaseBackupType { LongTerm = "LongTerm" } +// @public +export enum KnownAutonomousDatabaseLifecycleActionEnum { + Restart = "Restart", + Start = "Start", + Stop = "Stop" +} + // @public export enum KnownAutonomousDatabaseLifecycleState { Available = "Available", @@ -1518,6 +1739,11 @@ export enum KnownAzureResourceProvisioningState { Succeeded = "Succeeded" } +// @public +export enum KnownBaseDbSystemShapes { + VMStandardX86 = "VM.Standard.x86" +} + // @public export enum KnownCloneType { Full = "Full", @@ -1654,6 +1880,34 @@ export enum KnownDbServerProvisioningState { Unavailable = "Unavailable" } +// @public +export enum KnownDbSystemDatabaseEditionType { + EnterpriseEdition = "EnterpriseEdition", + EnterpriseEditionDeveloper = "EnterpriseEditionDeveloper", + EnterpriseEditionExtreme = "EnterpriseEditionExtreme", + EnterpriseEditionHighPerformance = "EnterpriseEditionHighPerformance", + StandardEdition = "StandardEdition" +} + +// @public +export enum KnownDbSystemLifecycleState { + Available = "Available", + Failed = "Failed", + MaintenanceInProgress = "MaintenanceInProgress", + Migrated = "Migrated", + NeedsAttention = "NeedsAttention", + Provisioning = "Provisioning", + Terminated = "Terminated", + Terminating = "Terminating", + Updating = "Updating", + Upgrading = "Upgrading" +} + +// @public +export enum KnownDbSystemSourceType { + None = "None" +} + // @public export enum KnownDisasterRecoveryType { Adg = "Adg", @@ -1666,6 +1920,12 @@ export enum KnownDiskRedundancy { Normal = "Normal" } +// @public +export enum KnownDiskRedundancyType { + High = "High", + Normal = "Normal" +} + // @public export enum KnownDnsPrivateViewsLifecycleState { Active = "Active", @@ -1683,6 +1943,12 @@ export enum KnownDnsPrivateZonesLifecycleState { Updating = "Updating" } +// @public +export enum KnownExadataVmClusterStorageManagementType { + ASM = "ASM", + Exascale = "Exascale" +} + // @public export enum KnownExadbVmClusterLifecycleState { Available = "Available", @@ -1870,12 +2136,26 @@ export enum KnownSessionModeType { Redirect = "Redirect" } +// @public +export enum KnownShapeAttribute { + BlockStorage = "BLOCK_STORAGE", + SmartStorage = "SMART_STORAGE" +} + // @public export enum KnownShapeFamily { Exadata = "EXADATA", ExadbXs = "EXADB_XS" } +// @public +export enum KnownShapeFamilyType { + Exadata = "EXADATA", + ExadbXs = "EXADB_XS", + SingleNode = "SINGLENODE", + VirtualMachine = "VIRTUALMACHINE" +} + // @public export enum KnownSourceType { BackupFromId = "BackupFromId", @@ -1887,6 +2167,17 @@ export enum KnownSourceType { None = "None" } +// @public +export enum KnownStorageManagementType { + LVM = "LVM" +} + +// @public +export enum KnownStorageVolumePerformanceMode { + Balanced = "Balanced", + HighPerformance = "HighPerformance" +} + // @public export enum KnownSyntaxFormatType { Ezconnect = "Ezconnect", @@ -1911,7 +2202,8 @@ export enum KnownTlsAuthenticationType { export enum KnownVersions { V20230901 = "2023-09-01", V20240601 = "2024-06-01", - V20250301 = "2025-03-01" + V20250301 = "2025-03-01", + V20250901 = "2025-09-01" } // @public @@ -1970,6 +2262,87 @@ export interface Month { // @public export type MonthName = string; +// @public +export interface NetworkAnchor extends TrackedResource { + properties?: NetworkAnchorProperties; + zones?: string[]; +} + +// @public +export interface NetworkAnchorProperties { + readonly cidrBlock?: string; + readonly dnsForwardingEndpointIpAddress?: string; + readonly dnsForwardingEndpointNsgRulesUrl?: string; + dnsForwardingRules?: DnsForwardingRule[]; + readonly dnsForwardingRulesUrl?: string; + dnsListeningEndpointAllowedCidrs?: string; + readonly dnsListeningEndpointIpAddress?: string; + readonly dnsListeningEndpointNsgRulesUrl?: string; + isOracleDnsForwardingEndpointEnabled?: boolean; + isOracleDnsListeningEndpointEnabled?: boolean; + isOracleToAzureDnsZoneSyncEnabled?: boolean; + ociBackupCidrBlock?: string; + readonly ociSubnetId?: string; + ociVcnDnsLabel?: string; + readonly ociVcnId?: string; + readonly provisioningState?: AzureResourceProvisioningState; + resourceAnchorId: string; + subnetId: string; + readonly vnetId?: string; +} + +// @public +export interface NetworkAnchorsCreateOrUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface NetworkAnchorsDeleteOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface NetworkAnchorsGetOptionalParams extends OperationOptions { +} + +// @public +export interface NetworkAnchorsListByResourceGroupOptionalParams extends OperationOptions { +} + +// @public +export interface NetworkAnchorsListBySubscriptionOptionalParams extends OperationOptions { +} + +// @public +export interface NetworkAnchorsOperations { + createOrUpdate: (resourceGroupName: string, networkAnchorName: string, resource: NetworkAnchor, options?: NetworkAnchorsCreateOrUpdateOptionalParams) => PollerLike, NetworkAnchor>; + delete: (resourceGroupName: string, networkAnchorName: string, options?: NetworkAnchorsDeleteOptionalParams) => PollerLike, void>; + get: (resourceGroupName: string, networkAnchorName: string, options?: NetworkAnchorsGetOptionalParams) => Promise; + listByResourceGroup: (resourceGroupName: string, options?: NetworkAnchorsListByResourceGroupOptionalParams) => PagedAsyncIterableIterator; + listBySubscription: (options?: NetworkAnchorsListBySubscriptionOptionalParams) => PagedAsyncIterableIterator; + update: (resourceGroupName: string, networkAnchorName: string, properties: NetworkAnchorUpdate, options?: NetworkAnchorsUpdateOptionalParams) => PollerLike, NetworkAnchor>; +} + +// @public +export interface NetworkAnchorsUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface NetworkAnchorUpdate { + properties?: NetworkAnchorUpdateProperties; + tags?: Record; + zones?: string[]; +} + +// @public +export interface NetworkAnchorUpdateProperties { + isOracleDnsForwardingEndpointEnabled?: boolean; + isOracleDnsListeningEndpointEnabled?: boolean; + isOracleToAzureDnsZoneSyncEnabled?: boolean; + ociBackupCidrBlock?: string; +} + // @public export interface NsgCidr { destinationPortRange?: PortRange; @@ -2023,7 +2396,9 @@ export class OracleDatabaseManagementClient { readonly cloudVmClusters: CloudVmClustersOperations; readonly dbNodes: DbNodesOperations; readonly dbServers: DbServersOperations; + readonly dbSystems: DbSystemsOperations; readonly dbSystemShapes: DbSystemShapesOperations; + readonly dbVersions: DbVersionsOperations; readonly dnsPrivateViews: DnsPrivateViewsOperations; readonly dnsPrivateZones: DnsPrivateZonesOperations; readonly exadbVmClusters: ExadbVmClustersOperations; @@ -2032,9 +2407,11 @@ export class OracleDatabaseManagementClient { readonly flexComponents: FlexComponentsOperations; readonly giMinorVersions: GiMinorVersionsOperations; readonly giVersions: GiVersionsOperations; + readonly networkAnchors: NetworkAnchorsOperations; readonly operations: OperationsOperations; readonly oracleSubscriptions: OracleSubscriptionsOperations; readonly pipeline: Pipeline; + readonly resourceAnchors: ResourceAnchorsOperations; readonly systemVersions: SystemVersionsOperations; readonly virtualNetworkAddresses: VirtualNetworkAddressesOperations; } @@ -2042,6 +2419,7 @@ export class OracleDatabaseManagementClient { // @public export interface OracleDatabaseManagementClientOptionalParams extends ClientOptions { apiVersion?: string; + cloudSetting?: AzureSupportedClouds; } // @public @@ -2247,6 +2625,59 @@ export interface Resource { readonly type?: string; } +// @public +export interface ResourceAnchor extends TrackedResource { + properties?: ResourceAnchorProperties; +} + +// @public +export interface ResourceAnchorProperties { + readonly linkedCompartmentId?: string; + readonly provisioningState?: AzureResourceProvisioningState; +} + +// @public +export interface ResourceAnchorsCreateOrUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface ResourceAnchorsDeleteOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface ResourceAnchorsGetOptionalParams extends OperationOptions { +} + +// @public +export interface ResourceAnchorsListByResourceGroupOptionalParams extends OperationOptions { +} + +// @public +export interface ResourceAnchorsListBySubscriptionOptionalParams extends OperationOptions { +} + +// @public +export interface ResourceAnchorsOperations { + createOrUpdate: (resourceGroupName: string, resourceAnchorName: string, resource: ResourceAnchor, options?: ResourceAnchorsCreateOrUpdateOptionalParams) => PollerLike, ResourceAnchor>; + delete: (resourceGroupName: string, resourceAnchorName: string, options?: ResourceAnchorsDeleteOptionalParams) => PollerLike, void>; + get: (resourceGroupName: string, resourceAnchorName: string, options?: ResourceAnchorsGetOptionalParams) => Promise; + listByResourceGroup: (resourceGroupName: string, options?: ResourceAnchorsListByResourceGroupOptionalParams) => PagedAsyncIterableIterator; + listBySubscription: (options?: ResourceAnchorsListBySubscriptionOptionalParams) => PagedAsyncIterableIterator; + update: (resourceGroupName: string, resourceAnchorName: string, properties: ResourceAnchorUpdate, options?: ResourceAnchorsUpdateOptionalParams) => PollerLike, ResourceAnchor>; +} + +// @public +export interface ResourceAnchorsUpdateOptionalParams extends OperationOptions { + updateIntervalInMs?: number; +} + +// @public +export interface ResourceAnchorUpdate { + tags?: Record; +} + // @public export type ResourceProvisioningState = string; @@ -2293,7 +2724,7 @@ export interface ScheduledOperationsType { // @public export interface ScheduledOperationsTypeUpdate { - dayOfWeek: DayOfWeekUpdate; + dayOfWeek?: DayOfWeekUpdate; scheduledStartTime?: string; scheduledStopTime?: string; } @@ -2301,12 +2732,24 @@ export interface ScheduledOperationsTypeUpdate { // @public export type SessionModeType = string; +// @public +export type ShapeAttribute = string; + // @public export type ShapeFamily = string; +// @public +export type ShapeFamilyType = string; + // @public export type SourceType = string; +// @public +export type StorageManagementType = string; + +// @public +export type StorageVolumePerformanceMode = string; + // @public export type SyntaxFormatType = string; diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesListByResourceGroupSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsListByParentSample.ts similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesListByResourceGroupSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsListByParentSample.ts index 1a24fedef230..0d6f89ce7db7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesListByResourceGroupSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsListByParentSample.ts @@ -5,17 +5,20 @@ import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; import { DefaultAzureCredential } from "@azure/identity"; /** - * This sample demonstrates how to list AutonomousDatabase resources by resource group + * This sample demonstrates how to list AutonomousDatabaseBackup resources by AutonomousDatabase * - * @summary list AutonomousDatabase resources by resource group - * x-ms-original-file: 2025-03-01/autonomousDatabase_listByResourceGroup.json + * @summary list AutonomousDatabaseBackup resources by AutonomousDatabase + * x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_ListByParent_MaximumSet_Gen.json */ -async function autonomousDatabasesListByResourceGroup(): Promise { +async function listAutonomousDatabaseBackupsByAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.autonomousDatabases.listByResourceGroup("rg000")) { + for await (const item of client.autonomousDatabaseBackups.listByParent( + "rgopenapi", + "databasedb1", + )) { resArray.push(item); } @@ -23,7 +26,7 @@ async function autonomousDatabasesListByResourceGroup(): Promise { } async function main(): Promise { - await autonomousDatabasesListByResourceGroup(); + await listAutonomousDatabaseBackupsByAutonomousDatabaseGeneratedByMaximumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsUpdateSample.ts index 6b25f59d2653..00bf83eb8eb7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsUpdateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabaseBackupsUpdateSample.ts @@ -1,16 +1,34 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to update a AutonomousDatabaseBackup * * @summary update a AutonomousDatabaseBackup - * x-ms-original-file: 2025-03-01/autonomousDatabaseBackup_patch.json + * x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_Update_MaximumSet_Gen.json */ +async function patchAutonomousDatabaseBackupGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabaseBackups.update( + "rgopenapi", + "databasedb1", + "1711644130", + { properties: { retentionPeriodInDays: 90 } }, + ); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to update a AutonomousDatabaseBackup + * + * @summary update a AutonomousDatabaseBackup + * x-ms-original-file: 2025-09-01/autonomousDatabaseBackup_patch.json + */ async function autonomousDatabaseBackupsUpdate(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -25,6 +43,7 @@ async function autonomousDatabaseBackupsUpdate(): Promise { } async function main(): Promise { + await patchAutonomousDatabaseBackupGeneratedByMaximumSetRule(); await autonomousDatabaseBackupsUpdate(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbNodesActionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesActionSample.ts similarity index 54% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbNodesActionSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesActionSample.ts index ee7b8e31d909..e33db88d2e42 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbNodesActionSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesActionSample.ts @@ -5,23 +5,23 @@ import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; import { DefaultAzureCredential } from "@azure/identity"; /** - * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * This sample demonstrates how to perform Lifecycle Management Action on Autonomous Database * - * @summary vM actions on DbNode of VM Cluster by the provided filter - * x-ms-original-file: 2025-03-01/dbNodes_action.json + * @summary perform Lifecycle Management Action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Action_MaximumSet_Gen.json */ -async function dbNodesAction(): Promise { +async function autonomousDatabasesActionMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.dbNodes.action("rg000", "cluster1", "ocid1....aaaaaa", { + const result = await client.autonomousDatabases.action("rgopenapi", "databasedb1", { action: "Start", }); console.log(result); } async function main(): Promise { - await dbNodesAction(); + await autonomousDatabasesActionMaximumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts index d3956cc06bab..e513598be067 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts @@ -1,16 +1,38 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database * * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ChangeDisasterRecoveryConfiguration_MaximumSet_Gen.json */ +async function performChangeDisasterRecoveryConfigurationActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( + "rgopenapi", + "databasedb1", + { + disasterRecoveryType: "Adg", + isReplicateAutomaticBackups: true, + timeSnapshotStandbyEnabledTill: new Date("2025-08-01T04:32:58.725Z"), + isSnapshotStandby: true, + }, + ); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * + * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json + */ async function autonomousDatabasesChangeDisasterRecoveryConfiguration(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -24,6 +46,7 @@ async function autonomousDatabasesChangeDisasterRecoveryConfiguration(): Promise } async function main(): Promise { + await performChangeDisasterRecoveryConfigurationActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesChangeDisasterRecoveryConfiguration(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesFailoverSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesFailoverSample.ts index 16c49bfad10c..73f9ca5cd903 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesFailoverSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesFailoverSample.ts @@ -1,16 +1,33 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to perform failover action on Autonomous Database * * @summary perform failover action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_failover.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Failover_MaximumSet_Gen.json */ +async function performFailoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.failover("rgopenapi", "databasedb1*", { + peerDbId: "peerDbId", + peerDbOcid: "yozpqyefqhirkybmzwgoidyl", + peerDbLocation: "cxlzbzbfzi", + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to perform failover action on Autonomous Database + * + * @summary perform failover action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_failover.json + */ async function autonomousDatabasesFailover(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -22,6 +39,7 @@ async function autonomousDatabasesFailover(): Promise { } async function main(): Promise { + await performFailoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesFailover(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesGenerateWalletSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesGenerateWalletSample.ts index 8973d8128db0..a8ca543b36df 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesGenerateWalletSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesGenerateWalletSample.ts @@ -1,16 +1,33 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to generate wallet action on Autonomous Database * * @summary generate wallet action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_generateWallet.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_GenerateWallet_MaximumSet_Gen.json */ +async function generateWalletActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.generateWallet("rgopenapi", "databasedb1", { + generateType: "Single", + isRegional: true, + password: "********", + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to generate wallet action on Autonomous Database + * + * @summary generate wallet action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_generateWallet.json + */ async function autonomousDatabasesGenerateWallet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -24,6 +41,7 @@ async function autonomousDatabasesGenerateWallet(): Promise { } async function main(): Promise { + await generateWalletActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesGenerateWallet(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesListByResourceGroupSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesListByResourceGroupSample.ts index c55cfe60b4c5..e7caa1caec4b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesListByResourceGroupSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesListByResourceGroupSample.ts @@ -1,16 +1,51 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list AutonomousDatabase resources by resource group * * @summary list AutonomousDatabase resources by resource group - * x-ms-original-file: 2025-03-01/autonomousDatabase_listByResourceGroup.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MaximumSet_Gen.json */ +async function listAutonomousDatabaseByResourceGroupGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; + console.log(resArray); +} +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MinimumSet_Gen.json + */ +async function listAutonomousDatabaseByResourceGroupGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/autonomousDatabase_listByResourceGroup.json + */ async function autonomousDatabasesListByResourceGroup(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -24,6 +59,8 @@ async function autonomousDatabasesListByResourceGroup(): Promise { } async function main(): Promise { + await listAutonomousDatabaseByResourceGroupGeneratedByMaximumSetRule(); + await listAutonomousDatabaseByResourceGroupGeneratedByMinimumSetRule(); await autonomousDatabasesListByResourceGroup(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesRestoreSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesRestoreSample.ts index 2080481fc23e..8e44c1ba651d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesRestoreSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesRestoreSample.ts @@ -1,16 +1,31 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to restores an Autonomous Database based on the provided request parameters. * * @summary restores an Autonomous Database based on the provided request parameters. - * x-ms-original-file: 2025-03-01/autonomousDatabase_restore.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Restore_MaximumSet_Gen.json */ +async function performRestoreActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.restore("rgopenapi", "database1", { + timestamp: new Date("2024-04-23T00:00:00.000Z"), + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to restores an Autonomous Database based on the provided request parameters. + * + * @summary restores an Autonomous Database based on the provided request parameters. + * x-ms-original-file: 2025-09-01/autonomousDatabase_restore.json + */ async function autonomousDatabasesRestore(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -22,6 +37,7 @@ async function autonomousDatabasesRestore(): Promise { } async function main(): Promise { + await performRestoreActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesRestore(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesShrinkSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesShrinkSample.ts new file mode 100644 index 000000000000..f1ba1959e637 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesShrinkSample.ts @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to this operation shrinks the current allocated storage down to the current actual used data storage. + * + * @summary this operation shrinks the current allocated storage down to the current actual used data storage. + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Shrink_MaximumSet_Gen.json + */ +async function performShrinkActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.shrink("rgopenapi", "database1"); + console.log(result); +} + +async function main(): Promise { + await performShrinkActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesSwitchoverSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesSwitchoverSample.ts index 81a013b95e61..5741a83d6a5e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesSwitchoverSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesSwitchoverSample.ts @@ -1,16 +1,33 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to perform switchover action on Autonomous Database * * @summary perform switchover action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_switchover.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Switchover_MaximumSet_Gen.json */ +async function performSwitchoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.switchover("rgopenapi", "databasedb1", { + peerDbId: "peerDbId", + peerDbOcid: "yozpqyefqhirkybmzwgoidyl", + peerDbLocation: "cxlzbzbfzi", + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to perform switchover action on Autonomous Database + * + * @summary perform switchover action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_switchover.json + */ async function autonomousDatabasesSwitchover(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -22,6 +39,7 @@ async function autonomousDatabasesSwitchover(): Promise { } async function main(): Promise { + await performSwitchoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesSwitchover(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesUpdateSample.ts index 3f3b7ad24baf..4acb70a3fe8c 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesUpdateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/autonomousDatabasesUpdateSample.ts @@ -1,16 +1,69 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to update a AutonomousDatabase * * @summary update a AutonomousDatabase - * x-ms-original-file: 2025-03-01/autonomousDatabase_patch.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Update_MaximumSet_Gen.json */ +async function patchAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.update("rgopenapi", "databasedb1", { + tags: { key9827: "bygpoqozrwfyiootncgcqq" }, + properties: { + adminPassword: "", + autonomousMaintenanceScheduleType: "Early", + computeCount: 56.1, + cpuCoreCount: 45, + customerContacts: [{ email: "dummyemail@microsoft.com" }], + dataStorageSizeInTbs: 133, + dataStorageSizeInGbs: 175271, + displayName: "lrdrjpyyvufnxdzpwvlkmfukpstrjftdxcejcxtnqhxqbhvtzeiokllnspotsqeggddxkjjtf", + isAutoScalingEnabled: true, + isAutoScalingForStorageEnabled: true, + peerDbId: "qmpfwtvpfvbgmulethqznsyyjlpxmyfqfanrymzqsgraavtmlqqbexpzguyqybngoupbshlzpxv", + isLocalDataGuardEnabled: true, + isMtlsConnectionRequired: true, + licenseModel: "LicenseIncluded", + scheduledOperationsList: [ + { + dayOfWeek: { name: "Monday" }, + scheduledStartTime: "lwwvkazgmfremfwhckfb", + scheduledStopTime: "hjwagzxijpiaogulmnmbuqakpqxhkjvaypjqnvbvtjddc", + }, + ], + databaseEdition: "StandardEdition", + longTermBackupSchedule: { + repeatCadence: "OneTime", + timeOfBackup: new Date("2025-08-01T04:32:58.715Z"), + retentionPeriodInDays: 188, + isDisabled: true, + }, + localAdgAutoFailoverMaxDataLossLimit: 212, + openMode: "ReadOnly", + permissionLevel: "Restricted", + role: "Primary", + backupRetentionPeriodInDays: 12, + whitelistedIps: [ + "kfierlppwurtqrhfxwgfgrnqtmvraignzwsddwmpdijeveuevuoejfmbjvpnlrmmdflilxcwkkzvdofctsdjfxrrrwctihhnchtrouauesqbmlcqhzwnppnhrtitecenlfyshassvajukbwxudhlwixkvkgsessvshcwmleoqujeemwenhwlsccbcjnnviugzgylsxkssalqoicatcvkahogdvweymhdxboyqwhaxuzlmrdbvgbnnetobkbwygcsflzanwknlybvvzgjzjirpfrksbxwgllgfxwdflcisvxpkjecpgdaxccqkzxofedkrawvhzeabmunpykwd", + ], + }, + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - +/** + * This sample demonstrates how to update a AutonomousDatabase + * + * @summary update a AutonomousDatabase + * x-ms-original-file: 2025-09-01/autonomousDatabase_patch.json + */ async function autonomousDatabasesUpdate(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -20,6 +73,7 @@ async function autonomousDatabasesUpdate(): Promise { } async function main(): Promise { + await patchAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesUpdate(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresAddStorageCapacitySample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresAddStorageCapacitySample.ts index 8fe700508eab..8698cc245cb2 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresAddStorageCapacitySample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresAddStorageCapacitySample.ts @@ -1,16 +1,49 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to perform add storage capacity on exadata infra * * @summary perform add storage capacity on exadata infra - * x-ms-original-file: 2025-03-01/exaInfra_addStorageCapacity.json + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MaximumSet_Gen.json */ +async function performAddStorageCapacityOnExadataInfraGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + ); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MinimumSet_Gen.json + */ +async function performAddStorageCapacityOnExadataInfraGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + ); + console.log(result); +} +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/exaInfra_addStorageCapacity.json + */ async function cloudExadataInfrastructuresAddStorageCapacity(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -20,6 +53,8 @@ async function cloudExadataInfrastructuresAddStorageCapacity(): Promise { } async function main(): Promise { + await performAddStorageCapacityOnExadataInfraGeneratedByMaximumSetRule(); + await performAddStorageCapacityOnExadataInfraGeneratedByMinimumSetRule(); await cloudExadataInfrastructuresAddStorageCapacity(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresConfigureExascaleSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresConfigureExascaleSample.ts new file mode 100644 index 000000000000..13190b9ac080 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudExadataInfrastructuresConfigureExascaleSample.ts @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to configures Exascale on Cloud exadata infrastructure resource + * + * @summary configures Exascale on Cloud exadata infrastructure resource + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MaximumSet_Gen.json + */ +async function cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.configureExascale( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + { totalStorageInGbs: 19 }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to configures Exascale on Cloud exadata infrastructure resource + * + * @summary configures Exascale on Cloud exadata infrastructure resource + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MinimumSet_Gen.json + */ +async function cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.configureExascale( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + { totalStorageInGbs: 19 }, + ); + console.log(result); +} + +async function main(): Promise { + await cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMaximumSetRule(); + await cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersAddVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersAddVmsSample.ts deleted file mode 100644 index 3ec45ff791df..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersAddVmsSample.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -/** - * This sample demonstrates how to add VMs to the VM Cluster - * - * @summary add VMs to the VM Cluster - * x-ms-original-file: 2025-03-01/vmClusters_addVms.json - */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -async function cloudVmClustersAddVms(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.addVms("rg000", "cluster1", { - dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], - }); - console.log(result); -} - -async function main(): Promise { - await cloudVmClustersAddVms(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersListPrivateIPAddressesSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersListPrivateIPAddressesSample.ts deleted file mode 100644 index 044a1ebcc1e5..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersListPrivateIPAddressesSample.ts +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -/** - * This sample demonstrates how to list Private IP Addresses by the provided filter - * - * @summary list Private IP Addresses by the provided filter - * x-ms-original-file: 2025-03-01/vmClusters_listPrivateIpAddresses.json - */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -async function cloudVmClustersListPrivateIpAddresses(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.listPrivateIpAddresses("rg000", "cluster1", { - subnetId: "ocid1..aaaaaa", - vnicId: "ocid1..aaaaa", - }); - console.log(result); -} - -async function main(): Promise { - await cloudVmClustersListPrivateIpAddresses(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersRemoveVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersRemoveVmsSample.ts deleted file mode 100644 index d6ce42844b9a..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVMClustersRemoveVmsSample.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -/** - * This sample demonstrates how to remove VMs from the VM Cluster - * - * @summary remove VMs from the VM Cluster - * x-ms-original-file: 2025-03-01/vmClusters_removeVms.json - */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -async function cloudVmClustersRemoveVms(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.removeVms("rg000", "cluster1", { - dbServers: ["ocid1..aaaa"], - }); - console.log(result); -} - -async function main(): Promise { - await cloudVmClustersRemoveVms(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersAddVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersAddVmsSample.ts new file mode 100644 index 000000000000..9cdd6cf5b0c5 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersAddVmsSample.ts @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MaximumSet_Gen.json + */ +async function addVMsToVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MinimumSet_Gen.json + */ +async function addVMsToVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/vmClusters_addVms.json + */ +async function cloudVmClustersAddVms(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rg000", "cluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +async function main(): Promise { + await addVMsToVMClusterGeneratedByMaximumSetRule(); + await addVMsToVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersAddVms(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersListPrivateIpAddressesSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersListPrivateIpAddressesSample.ts new file mode 100644 index 000000000000..19b5411351d2 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersListPrivateIpAddressesSample.ts @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MaximumSet_Gen.json + */ +async function listPrivateIPAddressesForVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses( + "rgopenapi", + "cloudvmcluster1", + { subnetId: "ocid1..aaaaaa", vnicId: "ocid1..aaaaa" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MinimumSet_Gen.json + */ +async function listPrivateIPAddressesForVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses( + "rgopenapi", + "cloudvmcluster1", + { subnetId: "ocid1..aaaaaa", vnicId: "ocid1..aaaaa" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/vmClusters_listPrivateIpAddresses.json + */ +async function cloudVmClustersListPrivateIpAddresses(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses("rg000", "cluster1", { + subnetId: "ocid1..aaaaaa", + vnicId: "ocid1..aaaaa", + }); + console.log(result); +} + +async function main(): Promise { + await listPrivateIPAddressesForVMClusterGeneratedByMaximumSetRule(); + await listPrivateIPAddressesForVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersListPrivateIpAddresses(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersRemoveVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersRemoveVmsSample.ts new file mode 100644 index 000000000000..5329de4ad7a5 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/cloudVmClustersRemoveVmsSample.ts @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MaximumSet_Gen.json + */ +async function removeVMsFromVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MinimumSet_Gen.json + */ +async function removeVMsFromVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/vmClusters_removeVms.json + */ +async function cloudVmClustersRemoveVms(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rg000", "cluster1", { + dbServers: ["ocid1..aaaa"], + }); + console.log(result); +} + +async function main(): Promise { + await removeVMsFromVMClusterGeneratedByMaximumSetRule(); + await removeVMsFromVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersRemoveVms(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesActionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesActionSample.ts index 7fab8db2aa45..1d02cf8e3413 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesActionSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesActionSample.ts @@ -1,16 +1,50 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter * * @summary vM actions on DbNode of VM Cluster by the provided filter - * x-ms-original-file: 2025-03-01/dbNodes_action.json + * x-ms-original-file: 2025-09-01/DbNodes_Action_MaximumSet_Gen.json */ +async function vmActionsOnDbNodesOfVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action("rgopenapi", "cloudvmcluster1", "abciderewdidsereq", { + action: "Start", + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/DbNodes_Action_MinimumSet_Gen.json + */ +async function vmActionsOnDbNodesOfVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action( + "rgopenapi", + "cloudvmcluster1", + "adfedefeewwevkieviect", + { action: "Start" }, + ); + console.log(result); +} +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/dbNodes_action.json + */ async function dbNodesAction(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -22,6 +56,8 @@ async function dbNodesAction(): Promise { } async function main(): Promise { + await vmActionsOnDbNodesOfVMClusterGeneratedByMaximumSetRule(); + await vmActionsOnDbNodesOfVMClusterGeneratedByMinimumSetRule(); await dbNodesAction(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesListByParentSample.ts new file mode 100644 index 000000000000..0fdb34d70046 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbNodesListByParentSample.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbNode resources by CloudVmCluster + * + * @summary list DbNode resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MaximumSet_Gen.json + */ +async function listDbNodesByVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbNodes.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbNode resources by CloudVmCluster + * + * @summary list DbNode resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MinimumSet_Gen.json + */ +async function listDbNodesByVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbNodes.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listDbNodesByVMClusterGeneratedByMaximumSetRule(); + await listDbNodesByVMClusterGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbServersListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbServersListByParentSample.ts new file mode 100644 index 000000000000..2c05fddb0762 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbServersListByParentSample.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbServer resources by CloudExadataInfrastructure + * + * @summary list DbServer resources by CloudExadataInfrastructure + * x-ms-original-file: 2025-09-01/DbServers_ListByParent_MaximumSet_Gen.json + */ +async function listDbServersByExadataInfrastructureGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbServers.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbServer resources by CloudExadataInfrastructure + * + * @summary list DbServer resources by CloudExadataInfrastructure + * x-ms-original-file: 2025-09-01/DbServers_ListByParent_MinimumSet_Gen.json + */ +async function listDbServersByExadataInfrastructureGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbServers.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listDbServersByExadataInfrastructureGeneratedByMaximumSetRule(); + await listDbServersByExadataInfrastructureGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbSystemShapesListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbSystemShapesListByLocationSample.ts index cdcd8de39e09..0823a6816ec7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbSystemShapesListByLocationSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbSystemShapesListByLocationSample.ts @@ -1,16 +1,53 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource * * @summary list DbSystemShape resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/dbSystemShapes_listByLocation.json + * x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MaximumSet_Gen.json */ +async function listDbSystemShapesByLocationGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus", { + zone: "ymedsvqavemtixp", + })) { + resArray.push(item); + } -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MinimumSet_Gen.json + */ +async function listDbSystemShapesByLocationGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus")) { + resArray.push(item); + } + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/dbSystemShapes_listByLocation.json + */ async function dbSystemShapesListByLocation(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -24,6 +61,8 @@ async function dbSystemShapesListByLocation(): Promise { } async function main(): Promise { + await listDbSystemShapesByLocationGeneratedByMaximumSetRule(); + await listDbSystemShapesByLocationGeneratedByMinimumSetRule(); await dbSystemShapesListByLocation(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbVersionsListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbVersionsListByLocationSample.ts new file mode 100644 index 000000000000..95276511d2fb --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/dbVersionsListByLocationSample.ts @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbVersion resources by SubscriptionLocationResource + * + * @summary list DbVersion resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbVersions_ListByLocation_MaximumSet_Gen.json + */ +async function dbVersionsListByLocationMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbVersions.listByLocation("eastus", { + dbSystemShape: "VM.Standard.x86", + dbSystemId: + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Oracle.Database/dbSystems/dbsystem1", + storageManagement: "LVM", + isUpgradeSupported: true, + isDatabaseSoftwareImageSupported: true, + shapeFamily: "VIRTUALMACHINE", + })) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await dbVersionsListByLocationMaximumSet(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exadbVmClustersRemoveVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exadbVmClustersRemoveVmsSample.ts index f8d3e4f2edc8..e62e0fb4c344 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exadbVmClustersRemoveVmsSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exadbVmClustersRemoveVmsSample.ts @@ -1,21 +1,41 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to remove VMs from the VM Cluster * * @summary remove VMs from the VM Cluster - * x-ms-original-file: 2025-03-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function exadbVmClustersRemoveVmsMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exadbVmClusters.removeVms("rgopenapi", "vmClusterName", { + const result = await client.exadbVmClusters.removeVms("rgopenapi", "exadbVmClusterName1", { + dbNodes: [ + { + dbNodeId: + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Oracle.Database/exadbVmClusters/vmCluster/dbNodes/dbNodeName", + }, + ], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MinimumSet_Gen.json + */ +async function exadbVmClustersRemoveVmsMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exadbVmClusters.removeVms("rgopenapi", "vmCluster1", { dbNodes: [ { dbNodeId: @@ -28,6 +48,7 @@ async function exadbVmClustersRemoveVmsMaximumSet(): Promise { async function main(): Promise { await exadbVmClustersRemoveVmsMaximumSet(); + await exadbVmClustersRemoveVmsMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesActionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesActionSample.ts index 463ff213b53c..d514ddcadc81 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesActionSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesActionSample.ts @@ -1,28 +1,50 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter * * @summary vM actions on DbNode of ExadbVmCluster by the provided filter - * x-ms-original-file: 2025-03-01/ExascaleDbNodes_Action_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function exascaleDbNodesActionMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbNodes.action("rgopenapi", "vmClusterName", "dbNodeName", { - action: "Start", - }); + const result = await client.exascaleDbNodes.action( + "rgopenapi", + "exadbvmcluster1", + "exascaledbnode1", + { action: "Start" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter + * + * @summary vM actions on DbNode of ExadbVmCluster by the provided filter + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MinimumSet_Gen.json + */ +async function exascaleDbNodesActionMinimumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbNodes.action( + "rgopenapi", + "exadbvmcluster1", + "exascaledbnode1", + { action: "Start" }, + ); console.log(result); } async function main(): Promise { await exascaleDbNodesActionMaximumSet(); + await exascaleDbNodesActionMinimumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesListByParentSample.ts index 6cc2bc312cc2..e3aa65600f09 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesListByParentSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbNodesListByParentSample.ts @@ -1,22 +1,39 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list ExascaleDbNode resources by ExadbVmCluster * * @summary list ExascaleDbNode resources by ExadbVmCluster - * x-ms-original-file: 2025-03-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json */ +async function exascaleDbNodesListByParentMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmcluster")) { + resArray.push(item); + } -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; + console.log(resArray); +} -async function exascaleDbNodesListByParentMaximumSet(): Promise { +/** + * This sample demonstrates how to list ExascaleDbNode resources by ExadbVmCluster + * + * @summary list ExascaleDbNode resources by ExadbVmCluster + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MinimumSet_Gen.json + */ +async function exascaleDbNodesListByParentMaximumSetGeneratedByMinimumSetRule(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmClusterName")) { + for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmcluster")) { resArray.push(item); } @@ -25,6 +42,7 @@ async function exascaleDbNodesListByParentMaximumSet(): Promise { async function main(): Promise { await exascaleDbNodesListByParentMaximumSet(); + await exascaleDbNodesListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsCreateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsCreateSample.ts index 0eed8334a230..59d65eb45ad8 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsCreateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsCreateSample.ts @@ -1,45 +1,60 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to create a ExascaleDbStorageVault * * @summary create a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function exascaleDbStorageVaultsCreateMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.create("rgopenapi", "vmClusterName", { + const result = await client.exascaleDbStorageVaults.create("rgopenapi", "storagevault1", { properties: { additionalFlashCacheInPercent: 0, - description: "dmnvnnduldfmrmkkvvsdtuvmsmruxzzpsfdydgytlckutfozephjygjetrauvbdfcwmti", - displayName: - "hbsybtelyvhpalemszcvartlhwvskrnpiveqfblvkdihoytqaotdgsgauvgivzaftfgeiwlyeqzssicwrrnlxtsmeakbcsxabjlt", - highCapacityDatabaseStorageInput: { totalSizeInGbs: 21 }, + description: + "kgqvxvtegzwyppegpvqxnlslvetbjlgveofcpjddenhbpocyzwtswaeaetqkipcxyhedsymuljalirryldlbviuvidhssyiwodacajjnbpkbvbvzwzsjctsidchalyjkievnivikwnnypaojcvhmokddstxwiqxmbfmbvglfimseguwyvibwzllggjtwejdfgezoeuvjjbsyfozswihydzuscjrqnklewongumiljeordhqlsclwlmftzdoey", + displayName: "storagevault1", + highCapacityDatabaseStorageInput: { totalSizeInGbs: 1 }, highCapacityDatabaseStorage: { - availableSizeInGbs: 28, - totalSizeInGbs: 16, + availableSizeInGbs: 4, + totalSizeInGbs: 12, }, - timeZone: - "ltrbozwxjunncicrtzjrpqnqrcjgghohztrdlbfjrbkpenopyldwolslwgrgumjfkyovvkzcuxjujuxtjjzubvqvnhrswnbdgcbslopeofmtepbrrlymqwwszvsglmyuvlcuejshtpokirwklnwpcykhyinjmlqvxtyixlthtdishhmtipbygsayvgqzfrprgppylydlcskbmvwctxifdltippfvsxiughqbojqpqrekxsotnqsk", + timeZone: "hyjcftlal", lifecycleState: "Provisioning", ocid: "ocid1.autonomousdatabase.oc1..aaaaa3klq", }, - zones: ["qk"], - tags: { key7827: "xqi" }, - location: "ltguhzffucaytqg", + zones: ["npqjhyekyumfybqas"], + tags: { key4521: "rrgotvwzckepkhgkbz" }, + location: "zuoudqbvlxerpjtlfooyqlb", + }); + console.log(result); +} + +/** + * This sample demonstrates how to create a ExascaleDbStorageVault + * + * @summary create a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsCreateMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.create("rgopenapi", "storagevault1", { + location: "odxgtv", }); console.log(result); } async function main(): Promise { await exascaleDbStorageVaultsCreateMaximumSet(); + await exascaleDbStorageVaultsCreateMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsDeleteSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsDeleteSample.ts index ad2d0a8bd444..4e4e771da555 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsDeleteSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsDeleteSample.ts @@ -1,25 +1,38 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to delete a ExascaleDbStorageVault * * @summary delete a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function exascaleDbStorageVaultsDeleteMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - await client.exascaleDbStorageVaults.delete("rgopenapi", "vmClusterName"); + await client.exascaleDbStorageVaults.delete("rgopenapi", "storagevault1"); +} + +/** + * This sample demonstrates how to delete a ExascaleDbStorageVault + * + * @summary delete a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsDeleteMinimumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.exascaleDbStorageVaults.delete("rgopenapi", "storagevault1"); } async function main(): Promise { await exascaleDbStorageVaultsDeleteMaximumSet(); + await exascaleDbStorageVaultsDeleteMinimumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsGetSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsGetSample.ts index dced3df779e7..10ae208e3638 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsGetSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsGetSample.ts @@ -1,26 +1,40 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to get a ExascaleDbStorageVault * * @summary get a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function exascaleDbStorageVaultsGetMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.get("rgopenapi", "vmClusterName"); + const result = await client.exascaleDbStorageVaults.get("rgopenapi", "storagevault1"); + console.log(result); +} + +/** + * This sample demonstrates how to get a ExascaleDbStorageVault + * + * @summary get a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsGetMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.get("rgopenapi", "storagevault1"); console.log(result); } async function main(): Promise { await exascaleDbStorageVaultsGetMaximumSet(); + await exascaleDbStorageVaultsGetMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListByResourceGroupSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListByResourceGroupSample.ts index 90997dfd05b7..a3cdec7b4a20 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListByResourceGroupSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListByResourceGroupSample.ts @@ -1,17 +1,34 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list ExascaleDbStorageVault resources by resource group * * @summary list ExascaleDbStorageVault resources by resource group - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json */ +async function exascaleDbStorageVaultsListByResourceGroupMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbStorageVaults.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; + console.log(resArray); +} -async function exascaleDbStorageVaultsListByResourceGroupMaximumSet(): Promise { +/** + * This sample demonstrates how to list ExascaleDbStorageVault resources by resource group + * + * @summary list ExascaleDbStorageVault resources by resource group + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsListByResourceGroupMaximumSetGeneratedByMinimumSetRule(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); @@ -25,6 +42,7 @@ async function exascaleDbStorageVaultsListByResourceGroupMaximumSet(): Promise { await exascaleDbStorageVaultsListByResourceGroupMaximumSet(); + await exascaleDbStorageVaultsListByResourceGroupMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListBySubscriptionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListBySubscriptionSample.ts index 45ae0fb54522..7c231df93e3d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListBySubscriptionSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsListBySubscriptionSample.ts @@ -1,17 +1,34 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list ExascaleDbStorageVault resources by subscription ID * * @summary list ExascaleDbStorageVault resources by subscription ID - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json */ +async function exascaleDbStorageVaultsListBySubscriptionMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbStorageVaults.listBySubscription()) { + resArray.push(item); + } -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; + console.log(resArray); +} -async function exascaleDbStorageVaultsListBySubscriptionMaximumSet(): Promise { +/** + * This sample demonstrates how to list ExascaleDbStorageVault resources by subscription ID + * + * @summary list ExascaleDbStorageVault resources by subscription ID + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsListBySubscriptionMaximumSetGeneratedByMinimumSetRule(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); @@ -25,6 +42,7 @@ async function exascaleDbStorageVaultsListBySubscriptionMaximumSet(): Promise { await exascaleDbStorageVaultsListBySubscriptionMaximumSet(); + await exascaleDbStorageVaultsListBySubscriptionMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsUpdateSample.ts index 14b326e0e6b8..aff036d5c405 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsUpdateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/exascaleDbStorageVaultsUpdateSample.ts @@ -1,28 +1,42 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to update a ExascaleDbStorageVault * * @summary update a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function exascaleDbStorageVaultsUpdateMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.update("rgopenapi", "vmClusterName", { - tags: { key6179: "ouj" }, + const result = await client.exascaleDbStorageVaults.update("rgopenapi", "storagevault1", { + tags: { key6486: "fxbuboilsiapodppdtfls" }, }); console.log(result); } +/** + * This sample demonstrates how to update a ExascaleDbStorageVault + * + * @summary update a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsUpdateMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.update("rgopenapi", "storagevault1", {}); + console.log(result); +} + async function main(): Promise { await exascaleDbStorageVaultsUpdateMaximumSet(); + await exascaleDbStorageVaultsUpdateMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsGetSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsGetSample.ts index 5351d42ce04b..a0e15fead297 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsGetSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsGetSample.ts @@ -1,21 +1,20 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to get a FlexComponent * * @summary get a FlexComponent - * x-ms-original-file: 2025-03-01/FlexComponents_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/FlexComponents_Get_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function flexComponentsGetMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.flexComponents.get("eastus", "flexComponent"); + const result = await client.flexComponents.get("eastus", "flexname1"); console.log(result); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsListByParentSample.ts index fc21130b8c66..6c172db9bc2d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsListByParentSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/flexComponentsListByParentSample.ts @@ -1,23 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list FlexComponent resources by SubscriptionLocationResource * * @summary list FlexComponent resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/FlexComponents_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function flexComponentsListByParentMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); for await (const item of client.flexComponents.listByParent("eastus", { - shape: "Exadata.X11M", + shape: "Exadata.X9M", })) { resArray.push(item); } @@ -25,8 +24,27 @@ async function flexComponentsListByParentMaximumSet(): Promise { console.log(resArray); } +/** + * This sample demonstrates how to list FlexComponent resources by SubscriptionLocationResource + * + * @summary list FlexComponent resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MinimumSet_Gen.json + */ +async function flexComponentsListByParentMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.flexComponents.listByParent("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main(): Promise { await flexComponentsListByParentMaximumSet(); + await flexComponentsListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsGetSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsGetSample.ts index 8784986fa681..b52d5de25593 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsGetSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsGetSample.ts @@ -1,21 +1,20 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to get a GiMinorVersion * * @summary get a GiMinorVersion - * x-ms-original-file: 2025-03-01/GiMinorVersions_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiMinorVersions_Get_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function giMinorVersionsGetMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.giMinorVersions.get("eastus", "giVersionName", "giMinorVersionName"); + const result = await client.giMinorVersions.get("eastus", "19.0.0.0", "minorversion"); console.log(result); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsListByParentSample.ts index 21d2664bc6af..40f18b956b3a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsListByParentSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/giMinorVersionsListByParentSample.ts @@ -1,23 +1,23 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list GiMinorVersion resources by GiVersion * * @summary list GiMinorVersion resources by GiVersion - * x-ms-original-file: 2025-03-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - async function giMinorVersionsListByParentMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.giMinorVersions.listByParent("eastus", "giVersionName", { - shapeFamily: "rtfcosvtlpeeqoicsjqggtgc", + for await (const item of client.giMinorVersions.listByParent("eastus", "name1", { + shapeFamily: "EXADATA", + zone: "zone1", })) { resArray.push(item); } @@ -25,8 +25,27 @@ async function giMinorVersionsListByParentMaximumSet(): Promise { console.log(resArray); } +/** + * This sample demonstrates how to list GiMinorVersion resources by GiVersion + * + * @summary list GiMinorVersion resources by GiVersion + * x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MinimumSet_Gen.json + */ +async function giMinorVersionsListByParentMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.giMinorVersions.listByParent("eastus", "giMinorVersionName")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main(): Promise { await giMinorVersionsListByParentMaximumSet(); + await giMinorVersionsListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/giVersionsListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/giVersionsListByLocationSample.ts index d55a56d21ad6..30b8b3da76d0 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/giVersionsListByLocationSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/giVersionsListByLocationSample.ts @@ -1,24 +1,23 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list GiVersion resources by SubscriptionLocationResource * * @summary list GiVersion resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/GiVersions_ListByLocation_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiVersions_ListByLocation_MaximumSet_Gen.json */ - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -async function listGiVersionsByLocationGeneratedByMaximumSetRule(): Promise { +async function giVersionsListByLocationMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); for await (const item of client.giVersions.listByLocation("eastus", { - shape: - "osixsklyaauhoqnkxvnvsqeqenhzogntqnpubldrrfvqncwetdtwqwjjcvspwhgecbimdlulwcubikebrdzmidrucgtsuqvytkqutmbyrvvyioxpocpmuwiivyanjzucaegihztluuvpznzaoakfsselumhhsvrtrbzwpjhcihsvyouonlxdluwhqfxoqvgthkaxppbydtqjntscgzbivfdcaobbkthrbdjwpejirqmbly", + shape: "Exadata.X9M", + zone: "hpzuyaemum", })) { resArray.push(item); } @@ -30,9 +29,9 @@ async function listGiVersionsByLocationGeneratedByMaximumSetRule(): Promise { +async function giVersionsListByLocationMinimumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); @@ -45,8 +44,8 @@ async function listGiVersionsByLocationGeneratedByMinimumSetRule(): Promise { - await listGiVersionsByLocationGeneratedByMaximumSetRule(); - await listGiVersionsByLocationGeneratedByMinimumSetRule(); + await giVersionsListByLocationMaximumSet(); + await giVersionsListByLocationMinimumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/operationsListSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/operationsListSample.ts index 20fd4d439f1d..0c3a206fc05b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/operationsListSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/operationsListSample.ts @@ -1,16 +1,51 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list the operations for the provider * * @summary list the operations for the provider - * x-ms-original-file: 2025-03-01/operations_list.json + * x-ms-original-file: 2025-09-01/Operations_List_MaximumSet_Gen.json */ +async function listOperationsGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; + console.log(resArray); +} +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/Operations_List_MinimumSet_Gen.json + */ +async function listOperationsGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/operations_list.json + */ async function operationsList(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-00000000000"; @@ -24,6 +59,8 @@ async function operationsList(): Promise { } async function main(): Promise { + await listOperationsGeneratedByMaximumSetRule(); + await listOperationsGeneratedByMinimumSetRule(); await operationsList(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsAddAzureSubscriptionsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsAddAzureSubscriptionsSample.ts index 3e65f288c299..f9a48a73f194 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsAddAzureSubscriptionsSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsAddAzureSubscriptionsSample.ts @@ -1,16 +1,45 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to add Azure Subscriptions * * @summary add Azure Subscriptions - * x-ms-original-file: 2025-03-01/oracleSubscriptions_addAzureSubscriptions.json + * x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MaximumSet_Gen.json */ +async function addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MinimumSet_Gen.json + */ +async function addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/oracleSubscriptions_addAzureSubscriptions.json + */ async function oracleSubscriptionsAddAzureSubscriptions(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -21,6 +50,8 @@ async function oracleSubscriptionsAddAzureSubscriptions(): Promise { } async function main(): Promise { + await addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMaximumSetRule(); + await addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMinimumSetRule(); await oracleSubscriptionsAddAzureSubscriptions(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListActivationLinksSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListActivationLinksSample.ts index f65f0794f4db..884eb4754c01 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListActivationLinksSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListActivationLinksSample.ts @@ -1,16 +1,43 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list Activation Links * * @summary list Activation Links - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listActivationLinks.json + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MaximumSet_Gen.json */ +async function listActivationLinksForTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MinimumSet_Gen.json + */ +async function listActivationLinksForTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listActivationLinks.json + */ async function oracleSubscriptionsListActivationLinks(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -20,6 +47,8 @@ async function oracleSubscriptionsListActivationLinks(): Promise { } async function main(): Promise { + await listActivationLinksForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listActivationLinksForTheOracleSubscriptionGeneratedByMinimumSetRule(); await oracleSubscriptionsListActivationLinks(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListCloudAccountDetailsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListCloudAccountDetailsSample.ts index a3ce69241db7..00f37324ea97 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListCloudAccountDetailsSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListCloudAccountDetailsSample.ts @@ -1,16 +1,43 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list Cloud Account Details * * @summary list Cloud Account Details - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listCloudAccountDetails.json + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MaximumSet_Gen.json */ +async function listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MinimumSet_Gen.json + */ +async function listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listCloudAccountDetails.json + */ async function oracleSubscriptionsListCloudAccountDetails(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -20,6 +47,8 @@ async function oracleSubscriptionsListCloudAccountDetails(): Promise { } async function main(): Promise { + await listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(); await oracleSubscriptionsListCloudAccountDetails(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts index 3952ded02337..7465ae61916d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts @@ -1,16 +1,43 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to list Saas Subscription Details * * @summary list Saas Subscription Details - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listSaasSubscriptionDetails.json + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MaximumSet_Gen.json */ +async function listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MinimumSet_Gen.json + */ +async function listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listSaasSubscriptionDetails.json + */ async function oracleSubscriptionsListSaasSubscriptionDetails(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -20,6 +47,8 @@ async function oracleSubscriptionsListSaasSubscriptionDetails(): Promise { } async function main(): Promise { + await listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(); await oracleSubscriptionsListSaasSubscriptionDetails(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsUpdateSample.ts index 632e193937c4..ad3b122c6bc8 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsUpdateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/oracleSubscriptionsUpdateSample.ts @@ -1,16 +1,52 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + /** * This sample demonstrates how to update a OracleSubscription * * @summary update a OracleSubscription - * x-ms-original-file: 2025-03-01/oracleSubscriptions_patch.json + * x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MaximumSet_Gen.json */ +async function patchOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({ + plan: { + name: "klnnbggrxhvvaiajvjx", + publisher: "xvsarzadrjqergudsohjk", + product: "hivkczjyrimjilbmqj", + promotionCode: "zhotaxrodldvmwpksvsrwbnc", + version: "ueudckjmuqpjvsmmenzyflgpa", + }, + properties: { productCode: "kbqzsukkjceoplyalyrdayfj", intent: "Retain" }, + }); + console.log(result); +} -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MinimumSet_Gen.json + */ +async function patchOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({}); + console.log(result); +} +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/oracleSubscriptions_patch.json + */ async function oracleSubscriptionsUpdate(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; @@ -20,6 +56,8 @@ async function oracleSubscriptionsUpdate(): Promise { } async function main(): Promise { + await patchOracleSubscriptionGeneratedByMaximumSetRule(); + await patchOracleSubscriptionGeneratedByMinimumSetRule(); await oracleSubscriptionsUpdate(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples-dev/virtualNetworkAddressesListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples-dev/virtualNetworkAddressesListByParentSample.ts new file mode 100644 index 000000000000..69995ad0064b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples-dev/virtualNetworkAddressesListByParentSample.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list VirtualNetworkAddress resources by CloudVmCluster + * + * @summary list VirtualNetworkAddress resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MaximumSet_Gen.json + */ +async function listVirtualNetworkAddressesByVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.virtualNetworkAddresses.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list VirtualNetworkAddress resources by CloudVmCluster + * + * @summary list VirtualNetworkAddress resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MinimumSet_Gen.json + */ +async function listVirtualNetworkAddressesByVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.virtualNetworkAddresses.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listVirtualNetworkAddressesByVMClusterGeneratedByMaximumSetRule(); + await listVirtualNetworkAddressesByVMClusterGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js deleted file mode 100644 index 3e5545123633..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database - * - * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json - */ -async function autonomousDatabasesChangeDisasterRecoveryConfiguration() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( - "rg000", - "databasedb1", - { disasterRecoveryType: "Adg", isReplicateAutomaticBackups: false }, - ); - console.log(result); -} - -async function main() { - await autonomousDatabasesChangeDisasterRecoveryConfiguration(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesFailoverSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesFailoverSample.js deleted file mode 100644 index 0a07f940da3a..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesFailoverSample.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to perform failover action on Autonomous Database - * - * @summary perform failover action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_failover.json - */ -async function autonomousDatabasesFailover() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.failover("rg000", "databasedb1", { - peerDbId: "peerDbId", - }); - console.log(result); -} - -async function main() { - await autonomousDatabasesFailover(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesSwitchoverSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesSwitchoverSample.js deleted file mode 100644 index 82cf79ba01a0..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesSwitchoverSample.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to perform switchover action on Autonomous Database - * - * @summary perform switchover action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_switchover.json - */ -async function autonomousDatabasesSwitchover() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.switchover("rg000", "databasedb1", { - peerDbId: "peerDbId", - }); - console.log(result); -} - -async function main() { - await autonomousDatabasesSwitchover(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesUpdateSample.js deleted file mode 100644 index ebcffca8d478..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesUpdateSample.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to update a AutonomousDatabase - * - * @summary update a AutonomousDatabase - * x-ms-original-file: 2025-03-01/autonomousDatabase_patch.json - */ -async function autonomousDatabasesUpdate() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.update("rg000", "databasedb1", {}); - console.log(result); -} - -async function main() { - await autonomousDatabasesUpdate(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js deleted file mode 100644 index 532d14e387b8..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to perform add storage capacity on exadata infra - * - * @summary perform add storage capacity on exadata infra - * x-ms-original-file: 2025-03-01/exaInfra_addStorageCapacity.json - */ -async function cloudExadataInfrastructuresAddStorageCapacity() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudExadataInfrastructures.addStorageCapacity("rg000", "infra1"); - console.log(result); -} - -async function main() { - await cloudExadataInfrastructuresAddStorageCapacity(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersAddVmsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersAddVmsSample.js deleted file mode 100644 index b7ff02be0bfa..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersAddVmsSample.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to add VMs to the VM Cluster - * - * @summary add VMs to the VM Cluster - * x-ms-original-file: 2025-03-01/vmClusters_addVms.json - */ -async function cloudVmClustersAddVms() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.addVms("rg000", "cluster1", { - dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], - }); - console.log(result); -} - -async function main() { - await cloudVmClustersAddVms(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersListPrivateIpAddressesSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersListPrivateIpAddressesSample.js deleted file mode 100644 index 15e6b95e0300..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersListPrivateIpAddressesSample.js +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to list Private IP Addresses by the provided filter - * - * @summary list Private IP Addresses by the provided filter - * x-ms-original-file: 2025-03-01/vmClusters_listPrivateIpAddresses.json - */ -async function cloudVmClustersListPrivateIpAddresses() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.listPrivateIpAddresses("rg000", "cluster1", { - subnetId: "ocid1..aaaaaa", - vnicId: "ocid1..aaaaa", - }); - console.log(result); -} - -async function main() { - await cloudVmClustersListPrivateIpAddresses(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersRemoveVmsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersRemoveVmsSample.js deleted file mode 100644 index 7110db05adc3..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersRemoveVmsSample.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to remove VMs from the VM Cluster - * - * @summary remove VMs from the VM Cluster - * x-ms-original-file: 2025-03-01/vmClusters_removeVms.json - */ -async function cloudVmClustersRemoveVms() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.removeVms("rg000", "cluster1", { - dbServers: ["ocid1..aaaa"], - }); - console.log(result); -} - -async function main() { - await cloudVmClustersRemoveVms(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbSystemShapesListByLocationSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbSystemShapesListByLocationSample.js deleted file mode 100644 index fe18510e2801..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbSystemShapesListByLocationSample.js +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource - * - * @summary list DbSystemShape resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/dbSystemShapes_listByLocation.json - */ -async function dbSystemShapesListByLocation() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const resArray = new Array(); - for await (const item of client.dbSystemShapes.listByLocation("eastus")) { - resArray.push(item); - } - - console.log(resArray); -} - -async function main() { - await dbSystemShapesListByLocation(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesActionSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesActionSample.js deleted file mode 100644 index 11e0b5df1ca9..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesActionSample.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter - * - * @summary vM actions on DbNode of ExadbVmCluster by the provided filter - * x-ms-original-file: 2025-03-01/ExascaleDbNodes_Action_MaximumSet_Gen.json - */ -async function exascaleDbNodesActionMaximumSet() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbNodes.action("rgopenapi", "vmClusterName", "dbNodeName", { - action: "Start", - }); - console.log(result); -} - -async function main() { - await exascaleDbNodesActionMaximumSet(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsCreateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsCreateSample.js deleted file mode 100644 index 5f5085b223ce..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsCreateSample.js +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to create a ExascaleDbStorageVault - * - * @summary create a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json - */ -async function exascaleDbStorageVaultsCreateMaximumSet() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.create("rgopenapi", "vmClusterName", { - properties: { - additionalFlashCacheInPercent: 0, - description: "dmnvnnduldfmrmkkvvsdtuvmsmruxzzpsfdydgytlckutfozephjygjetrauvbdfcwmti", - displayName: - "hbsybtelyvhpalemszcvartlhwvskrnpiveqfblvkdihoytqaotdgsgauvgivzaftfgeiwlyeqzssicwrrnlxtsmeakbcsxabjlt", - highCapacityDatabaseStorageInput: { totalSizeInGbs: 21 }, - highCapacityDatabaseStorage: { - availableSizeInGbs: 28, - totalSizeInGbs: 16, - }, - timeZone: - "ltrbozwxjunncicrtzjrpqnqrcjgghohztrdlbfjrbkpenopyldwolslwgrgumjfkyovvkzcuxjujuxtjjzubvqvnhrswnbdgcbslopeofmtepbrrlymqwwszvsglmyuvlcuejshtpokirwklnwpcykhyinjmlqvxtyixlthtdishhmtipbygsayvgqzfrprgppylydlcskbmvwctxifdltippfvsxiughqbojqpqrekxsotnqsk", - lifecycleState: "Provisioning", - ocid: "ocid1.autonomousdatabase.oc1..aaaaa3klq", - }, - zones: ["qk"], - tags: { key7827: "xqi" }, - location: "ltguhzffucaytqg", - }); - console.log(result); -} - -async function main() { - await exascaleDbStorageVaultsCreateMaximumSet(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsDeleteSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsDeleteSample.js deleted file mode 100644 index 298fc7d79f17..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsDeleteSample.js +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to delete a ExascaleDbStorageVault - * - * @summary delete a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json - */ -async function exascaleDbStorageVaultsDeleteMaximumSet() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - await client.exascaleDbStorageVaults.delete("rgopenapi", "vmClusterName"); -} - -async function main() { - await exascaleDbStorageVaultsDeleteMaximumSet(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsUpdateSample.js deleted file mode 100644 index 5165a9e3c7d5..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsUpdateSample.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to update a ExascaleDbStorageVault - * - * @summary update a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json - */ -async function exascaleDbStorageVaultsUpdateMaximumSet() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.update("rgopenapi", "vmClusterName", { - tags: { key6179: "ouj" }, - }); - console.log(result); -} - -async function main() { - await exascaleDbStorageVaultsUpdateMaximumSet(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/operationsListSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/operationsListSample.js deleted file mode 100644 index c96b44a7df07..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/operationsListSample.js +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to list the operations for the provider - * - * @summary list the operations for the provider - * x-ms-original-file: 2025-03-01/operations_list.json - */ -async function operationsList() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-00000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const resArray = new Array(); - for await (const item of client.operations.list()) { - resArray.push(item); - } - - console.log(resArray); -} - -async function main() { - await operationsList(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js deleted file mode 100644 index 253bf5097a44..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to add Azure Subscriptions - * - * @summary add Azure Subscriptions - * x-ms-original-file: 2025-03-01/oracleSubscriptions_addAzureSubscriptions.json - */ -async function oracleSubscriptionsAddAzureSubscriptions() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - await client.oracleSubscriptions.addAzureSubscriptions({ - azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], - }); -} - -async function main() { - await oracleSubscriptionsAddAzureSubscriptions(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListActivationLinksSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListActivationLinksSample.js deleted file mode 100644 index c136bdddc81a..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListActivationLinksSample.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to list Activation Links - * - * @summary list Activation Links - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listActivationLinks.json - */ -async function oracleSubscriptionsListActivationLinks() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.listActivationLinks(); - console.log(result); -} - -async function main() { - await oracleSubscriptionsListActivationLinks(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js deleted file mode 100644 index ecdb6baf9e74..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to list Cloud Account Details - * - * @summary list Cloud Account Details - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listCloudAccountDetails.json - */ -async function oracleSubscriptionsListCloudAccountDetails() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.listCloudAccountDetails(); - console.log(result); -} - -async function main() { - await oracleSubscriptionsListCloudAccountDetails(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js deleted file mode 100644 index 3d27b4b2ce24..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to list Saas Subscription Details - * - * @summary list Saas Subscription Details - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listSaasSubscriptionDetails.json - */ -async function oracleSubscriptionsListSaasSubscriptionDetails() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); - console.log(result); -} - -async function main() { - await oracleSubscriptionsListSaasSubscriptionDetails(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsUpdateSample.js deleted file mode 100644 index 8a35d0923d47..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsUpdateSample.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); -const { DefaultAzureCredential } = require("@azure/identity"); - -/** - * This sample demonstrates how to update a OracleSubscription - * - * @summary update a OracleSubscription - * x-ms-original-file: 2025-03-01/oracleSubscriptions_patch.json - */ -async function oracleSubscriptionsUpdate() { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.update({}); - console.log(result); -} - -async function main() { - await oracleSubscriptionsUpdate(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts deleted file mode 100644 index dd9f4e31c483..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database - * - * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json - */ -async function autonomousDatabasesChangeDisasterRecoveryConfiguration(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( - "rg000", - "databasedb1", - { disasterRecoveryType: "Adg", isReplicateAutomaticBackups: false }, - ); - console.log(result); -} - -async function main(): Promise { - await autonomousDatabasesChangeDisasterRecoveryConfiguration(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesFailoverSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesFailoverSample.ts deleted file mode 100644 index 8112e1616e22..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesFailoverSample.ts +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to perform failover action on Autonomous Database - * - * @summary perform failover action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_failover.json - */ -async function autonomousDatabasesFailover(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.failover("rg000", "databasedb1", { - peerDbId: "peerDbId", - }); - console.log(result); -} - -async function main(): Promise { - await autonomousDatabasesFailover(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesSwitchoverSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesSwitchoverSample.ts deleted file mode 100644 index 9375b3a9ef70..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesSwitchoverSample.ts +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to perform switchover action on Autonomous Database - * - * @summary perform switchover action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_switchover.json - */ -async function autonomousDatabasesSwitchover(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.switchover("rg000", "databasedb1", { - peerDbId: "peerDbId", - }); - console.log(result); -} - -async function main(): Promise { - await autonomousDatabasesSwitchover(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesUpdateSample.ts deleted file mode 100644 index 887ba0a0440c..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesUpdateSample.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to update a AutonomousDatabase - * - * @summary update a AutonomousDatabase - * x-ms-original-file: 2025-03-01/autonomousDatabase_patch.json - */ -async function autonomousDatabasesUpdate(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.autonomousDatabases.update("rg000", "databasedb1", {}); - console.log(result); -} - -async function main(): Promise { - await autonomousDatabasesUpdate(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts deleted file mode 100644 index eda81e9c019d..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to perform add storage capacity on exadata infra - * - * @summary perform add storage capacity on exadata infra - * x-ms-original-file: 2025-03-01/exaInfra_addStorageCapacity.json - */ -async function cloudExadataInfrastructuresAddStorageCapacity(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudExadataInfrastructures.addStorageCapacity("rg000", "infra1"); - console.log(result); -} - -async function main(): Promise { - await cloudExadataInfrastructuresAddStorageCapacity(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersAddVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersAddVmsSample.ts deleted file mode 100644 index dc73c908b620..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersAddVmsSample.ts +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to add VMs to the VM Cluster - * - * @summary add VMs to the VM Cluster - * x-ms-original-file: 2025-03-01/vmClusters_addVms.json - */ -async function cloudVmClustersAddVms(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.addVms("rg000", "cluster1", { - dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], - }); - console.log(result); -} - -async function main(): Promise { - await cloudVmClustersAddVms(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts deleted file mode 100644 index a283308e2220..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to list Private IP Addresses by the provided filter - * - * @summary list Private IP Addresses by the provided filter - * x-ms-original-file: 2025-03-01/vmClusters_listPrivateIpAddresses.json - */ -async function cloudVmClustersListPrivateIpAddresses(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.listPrivateIpAddresses("rg000", "cluster1", { - subnetId: "ocid1..aaaaaa", - vnicId: "ocid1..aaaaa", - }); - console.log(result); -} - -async function main(): Promise { - await cloudVmClustersListPrivateIpAddresses(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersRemoveVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersRemoveVmsSample.ts deleted file mode 100644 index 04aabc16e136..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersRemoveVmsSample.ts +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to remove VMs from the VM Cluster - * - * @summary remove VMs from the VM Cluster - * x-ms-original-file: 2025-03-01/vmClusters_removeVms.json - */ -async function cloudVmClustersRemoveVms(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.cloudVmClusters.removeVms("rg000", "cluster1", { - dbServers: ["ocid1..aaaa"], - }); - console.log(result); -} - -async function main(): Promise { - await cloudVmClustersRemoveVms(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsCreateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsCreateSample.ts deleted file mode 100644 index b0f639503392..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsCreateSample.ts +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to create a ExascaleDbStorageVault - * - * @summary create a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json - */ -async function exascaleDbStorageVaultsCreateMaximumSet(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.create("rgopenapi", "vmClusterName", { - properties: { - additionalFlashCacheInPercent: 0, - description: "dmnvnnduldfmrmkkvvsdtuvmsmruxzzpsfdydgytlckutfozephjygjetrauvbdfcwmti", - displayName: - "hbsybtelyvhpalemszcvartlhwvskrnpiveqfblvkdihoytqaotdgsgauvgivzaftfgeiwlyeqzssicwrrnlxtsmeakbcsxabjlt", - highCapacityDatabaseStorageInput: { totalSizeInGbs: 21 }, - highCapacityDatabaseStorage: { - availableSizeInGbs: 28, - totalSizeInGbs: 16, - }, - timeZone: - "ltrbozwxjunncicrtzjrpqnqrcjgghohztrdlbfjrbkpenopyldwolslwgrgumjfkyovvkzcuxjujuxtjjzubvqvnhrswnbdgcbslopeofmtepbrrlymqwwszvsglmyuvlcuejshtpokirwklnwpcykhyinjmlqvxtyixlthtdishhmtipbygsayvgqzfrprgppylydlcskbmvwctxifdltippfvsxiughqbojqpqrekxsotnqsk", - lifecycleState: "Provisioning", - ocid: "ocid1.autonomousdatabase.oc1..aaaaa3klq", - }, - zones: ["qk"], - tags: { key7827: "xqi" }, - location: "ltguhzffucaytqg", - }); - console.log(result); -} - -async function main(): Promise { - await exascaleDbStorageVaultsCreateMaximumSet(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/operationsListSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/operationsListSample.ts deleted file mode 100644 index 469aed2f8320..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/operationsListSample.ts +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to list the operations for the provider - * - * @summary list the operations for the provider - * x-ms-original-file: 2025-03-01/operations_list.json - */ -async function operationsList(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-00000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const resArray = new Array(); - for await (const item of client.operations.list()) { - resArray.push(item); - } - - console.log(resArray); -} - -async function main(): Promise { - await operationsList(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts deleted file mode 100644 index 4c65c2b4bc78..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to add Azure Subscriptions - * - * @summary add Azure Subscriptions - * x-ms-original-file: 2025-03-01/oracleSubscriptions_addAzureSubscriptions.json - */ -async function oracleSubscriptionsAddAzureSubscriptions(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - await client.oracleSubscriptions.addAzureSubscriptions({ - azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], - }); -} - -async function main(): Promise { - await oracleSubscriptionsAddAzureSubscriptions(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListActivationLinksSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListActivationLinksSample.ts deleted file mode 100644 index 0235fc1b59bf..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListActivationLinksSample.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to list Activation Links - * - * @summary list Activation Links - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listActivationLinks.json - */ -async function oracleSubscriptionsListActivationLinks(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.listActivationLinks(); - console.log(result); -} - -async function main(): Promise { - await oracleSubscriptionsListActivationLinks(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts deleted file mode 100644 index 8ed9a47eeeef..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to list Cloud Account Details - * - * @summary list Cloud Account Details - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listCloudAccountDetails.json - */ -async function oracleSubscriptionsListCloudAccountDetails(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.listCloudAccountDetails(); - console.log(result); -} - -async function main(): Promise { - await oracleSubscriptionsListCloudAccountDetails(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts deleted file mode 100644 index 3193a83c2e6e..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to list Saas Subscription Details - * - * @summary list Saas Subscription Details - * x-ms-original-file: 2025-03-01/oracleSubscriptions_listSaasSubscriptionDetails.json - */ -async function oracleSubscriptionsListSaasSubscriptionDetails(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); - console.log(result); -} - -async function main(): Promise { - await oracleSubscriptionsListSaasSubscriptionDetails(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsUpdateSample.ts deleted file mode 100644 index eb4202997e2d..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsUpdateSample.ts +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; -import { DefaultAzureCredential } from "@azure/identity"; - -/** - * This sample demonstrates how to update a OracleSubscription - * - * @summary update a OracleSubscription - * x-ms-original-file: 2025-03-01/oracleSubscriptions_patch.json - */ -async function oracleSubscriptionsUpdate(): Promise { - const credential = new DefaultAzureCredential(); - const subscriptionId = "00000000-0000-0000-0000-000000000000"; - const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.oracleSubscriptions.update({}); - console.log(result); -} - -async function main(): Promise { - await oracleSubscriptionsUpdate(); -} - -main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/README.md b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/README.md similarity index 54% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/README.md rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/README.md index febae8904ece..49928ac0747f 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/README.md +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/README.md @@ -2,42 +2,50 @@ These sample programs show how to use the JavaScript client libraries for @azure/arm-oracledatabase in some common scenarios. -| **File Name** | **Description** | -| ------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [autonomousDatabaseBackupsUpdateSample.js][autonomousdatabasebackupsupdatesample] | update a AutonomousDatabaseBackup x-ms-original-file: 2025-03-01/autonomousDatabaseBackup_patch.json | -| [autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js][autonomousdatabaseschangedisasterrecoveryconfigurationsample] | perform ChangeDisasterRecoveryConfiguration action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json | -| [autonomousDatabasesFailoverSample.js][autonomousdatabasesfailoversample] | perform failover action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_failover.json | -| [autonomousDatabasesGenerateWalletSample.js][autonomousdatabasesgeneratewalletsample] | generate wallet action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_generateWallet.json | -| [autonomousDatabasesListByResourceGroupSample.js][autonomousdatabaseslistbyresourcegroupsample] | list AutonomousDatabase resources by resource group x-ms-original-file: 2025-03-01/autonomousDatabase_listByResourceGroup.json | -| [autonomousDatabasesRestoreSample.js][autonomousdatabasesrestoresample] | restores an Autonomous Database based on the provided request parameters. x-ms-original-file: 2025-03-01/autonomousDatabase_restore.json | -| [autonomousDatabasesSwitchoverSample.js][autonomousdatabasesswitchoversample] | perform switchover action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_switchover.json | -| [autonomousDatabasesUpdateSample.js][autonomousdatabasesupdatesample] | update a AutonomousDatabase x-ms-original-file: 2025-03-01/autonomousDatabase_patch.json | -| [cloudExadataInfrastructuresAddStorageCapacitySample.js][cloudexadatainfrastructuresaddstoragecapacitysample] | perform add storage capacity on exadata infra x-ms-original-file: 2025-03-01/exaInfra_addStorageCapacity.json | -| [cloudVmClustersAddVmsSample.js][cloudvmclustersaddvmssample] | add VMs to the VM Cluster x-ms-original-file: 2025-03-01/vmClusters_addVms.json | -| [cloudVmClustersListPrivateIpAddressesSample.js][cloudvmclusterslistprivateipaddressessample] | list Private IP Addresses by the provided filter x-ms-original-file: 2025-03-01/vmClusters_listPrivateIpAddresses.json | -| [cloudVmClustersRemoveVmsSample.js][cloudvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-03-01/vmClusters_removeVms.json | -| [dbNodesActionSample.js][dbnodesactionsample] | vM actions on DbNode of VM Cluster by the provided filter x-ms-original-file: 2025-03-01/dbNodes_action.json | -| [dbSystemShapesListByLocationSample.js][dbsystemshapeslistbylocationsample] | list DbSystemShape resources by SubscriptionLocationResource x-ms-original-file: 2025-03-01/dbSystemShapes_listByLocation.json | -| [exadbVmClustersRemoveVmsSample.js][exadbvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-03-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json | -| [exascaleDbNodesActionSample.js][exascaledbnodesactionsample] | vM actions on DbNode of ExadbVmCluster by the provided filter x-ms-original-file: 2025-03-01/ExascaleDbNodes_Action_MaximumSet_Gen.json | -| [exascaleDbNodesListByParentSample.js][exascaledbnodeslistbyparentsample] | list ExascaleDbNode resources by ExadbVmCluster x-ms-original-file: 2025-03-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsCreateSample.js][exascaledbstoragevaultscreatesample] | create a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsDeleteSample.js][exascaledbstoragevaultsdeletesample] | delete a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsGetSample.js][exascaledbstoragevaultsgetsample] | get a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsListByResourceGroupSample.js][exascaledbstoragevaultslistbyresourcegroupsample] | list ExascaleDbStorageVault resources by resource group x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsListBySubscriptionSample.js][exascaledbstoragevaultslistbysubscriptionsample] | list ExascaleDbStorageVault resources by subscription ID x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsUpdateSample.js][exascaledbstoragevaultsupdatesample] | update a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json | -| [flexComponentsGetSample.js][flexcomponentsgetsample] | get a FlexComponent x-ms-original-file: 2025-03-01/FlexComponents_Get_MaximumSet_Gen.json | -| [flexComponentsListByParentSample.js][flexcomponentslistbyparentsample] | list FlexComponent resources by SubscriptionLocationResource x-ms-original-file: 2025-03-01/FlexComponents_ListByParent_MaximumSet_Gen.json | -| [giMinorVersionsGetSample.js][giminorversionsgetsample] | get a GiMinorVersion x-ms-original-file: 2025-03-01/GiMinorVersions_Get_MaximumSet_Gen.json | -| [giMinorVersionsListByParentSample.js][giminorversionslistbyparentsample] | list GiMinorVersion resources by GiVersion x-ms-original-file: 2025-03-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json | -| [giVersionsListByLocationSample.js][giversionslistbylocationsample] | list GiVersion resources by SubscriptionLocationResource x-ms-original-file: 2025-03-01/GiVersions_ListByLocation_MaximumSet_Gen.json | -| [operationsListSample.js][operationslistsample] | list the operations for the provider x-ms-original-file: 2025-03-01/operations_list.json | -| [oracleSubscriptionsAddAzureSubscriptionsSample.js][oraclesubscriptionsaddazuresubscriptionssample] | add Azure Subscriptions x-ms-original-file: 2025-03-01/oracleSubscriptions_addAzureSubscriptions.json | -| [oracleSubscriptionsListActivationLinksSample.js][oraclesubscriptionslistactivationlinkssample] | list Activation Links x-ms-original-file: 2025-03-01/oracleSubscriptions_listActivationLinks.json | -| [oracleSubscriptionsListCloudAccountDetailsSample.js][oraclesubscriptionslistcloudaccountdetailssample] | list Cloud Account Details x-ms-original-file: 2025-03-01/oracleSubscriptions_listCloudAccountDetails.json | -| [oracleSubscriptionsListSaasSubscriptionDetailsSample.js][oraclesubscriptionslistsaassubscriptiondetailssample] | list Saas Subscription Details x-ms-original-file: 2025-03-01/oracleSubscriptions_listSaasSubscriptionDetails.json | -| [oracleSubscriptionsUpdateSample.js][oraclesubscriptionsupdatesample] | update a OracleSubscription x-ms-original-file: 2025-03-01/oracleSubscriptions_patch.json | +| **File Name** | **Description** | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [autonomousDatabaseBackupsListByParentSample.js][autonomousdatabasebackupslistbyparentsample] | list AutonomousDatabaseBackup resources by AutonomousDatabase x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_ListByParent_MaximumSet_Gen.json | +| [autonomousDatabaseBackupsUpdateSample.js][autonomousdatabasebackupsupdatesample] | update a AutonomousDatabaseBackup x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_Update_MaximumSet_Gen.json | +| [autonomousDatabasesActionSample.js][autonomousdatabasesactionsample] | perform Lifecycle Management Action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_Action_MaximumSet_Gen.json | +| [autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js][autonomousdatabaseschangedisasterrecoveryconfigurationsample] | perform ChangeDisasterRecoveryConfiguration action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_ChangeDisasterRecoveryConfiguration_MaximumSet_Gen.json | +| [autonomousDatabasesFailoverSample.js][autonomousdatabasesfailoversample] | perform failover action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_Failover_MaximumSet_Gen.json | +| [autonomousDatabasesGenerateWalletSample.js][autonomousdatabasesgeneratewalletsample] | generate wallet action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_GenerateWallet_MaximumSet_Gen.json | +| [autonomousDatabasesListByResourceGroupSample.js][autonomousdatabaseslistbyresourcegroupsample] | list AutonomousDatabase resources by resource group x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MaximumSet_Gen.json | +| [autonomousDatabasesRestoreSample.js][autonomousdatabasesrestoresample] | restores an Autonomous Database based on the provided request parameters. x-ms-original-file: 2025-09-01/AutonomousDatabases_Restore_MaximumSet_Gen.json | +| [autonomousDatabasesShrinkSample.js][autonomousdatabasesshrinksample] | this operation shrinks the current allocated storage down to the current actual used data storage. x-ms-original-file: 2025-09-01/AutonomousDatabases_Shrink_MaximumSet_Gen.json | +| [autonomousDatabasesSwitchoverSample.js][autonomousdatabasesswitchoversample] | perform switchover action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_Switchover_MaximumSet_Gen.json | +| [autonomousDatabasesUpdateSample.js][autonomousdatabasesupdatesample] | update a AutonomousDatabase x-ms-original-file: 2025-09-01/AutonomousDatabases_Update_MaximumSet_Gen.json | +| [cloudExadataInfrastructuresAddStorageCapacitySample.js][cloudexadatainfrastructuresaddstoragecapacitysample] | perform add storage capacity on exadata infra x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MaximumSet_Gen.json | +| [cloudExadataInfrastructuresConfigureExascaleSample.js][cloudexadatainfrastructuresconfigureexascalesample] | configures Exascale on Cloud exadata infrastructure resource x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MaximumSet_Gen.json | +| [cloudVmClustersAddVmsSample.js][cloudvmclustersaddvmssample] | add VMs to the VM Cluster x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MaximumSet_Gen.json | +| [cloudVmClustersListPrivateIpAddressesSample.js][cloudvmclusterslistprivateipaddressessample] | list Private IP Addresses by the provided filter x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MaximumSet_Gen.json | +| [cloudVmClustersRemoveVmsSample.js][cloudvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MaximumSet_Gen.json | +| [dbNodesActionSample.js][dbnodesactionsample] | vM actions on DbNode of VM Cluster by the provided filter x-ms-original-file: 2025-09-01/DbNodes_Action_MaximumSet_Gen.json | +| [dbNodesListByParentSample.js][dbnodeslistbyparentsample] | list DbNode resources by CloudVmCluster x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MaximumSet_Gen.json | +| [dbServersListByParentSample.js][dbserverslistbyparentsample] | list DbServer resources by CloudExadataInfrastructure x-ms-original-file: 2025-09-01/DbServers_ListByParent_MaximumSet_Gen.json | +| [dbSystemShapesListByLocationSample.js][dbsystemshapeslistbylocationsample] | list DbSystemShape resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MaximumSet_Gen.json | +| [dbVersionsListByLocationSample.js][dbversionslistbylocationsample] | list DbVersion resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/DbVersions_ListByLocation_MaximumSet_Gen.json | +| [exadbVmClustersRemoveVmsSample.js][exadbvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json | +| [exascaleDbNodesActionSample.js][exascaledbnodesactionsample] | vM actions on DbNode of ExadbVmCluster by the provided filter x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MaximumSet_Gen.json | +| [exascaleDbNodesListByParentSample.js][exascaledbnodeslistbyparentsample] | list ExascaleDbNode resources by ExadbVmCluster x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsCreateSample.js][exascaledbstoragevaultscreatesample] | create a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsDeleteSample.js][exascaledbstoragevaultsdeletesample] | delete a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsGetSample.js][exascaledbstoragevaultsgetsample] | get a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsListByResourceGroupSample.js][exascaledbstoragevaultslistbyresourcegroupsample] | list ExascaleDbStorageVault resources by resource group x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsListBySubscriptionSample.js][exascaledbstoragevaultslistbysubscriptionsample] | list ExascaleDbStorageVault resources by subscription ID x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsUpdateSample.js][exascaledbstoragevaultsupdatesample] | update a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json | +| [flexComponentsGetSample.js][flexcomponentsgetsample] | get a FlexComponent x-ms-original-file: 2025-09-01/FlexComponents_Get_MaximumSet_Gen.json | +| [flexComponentsListByParentSample.js][flexcomponentslistbyparentsample] | list FlexComponent resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MaximumSet_Gen.json | +| [giMinorVersionsGetSample.js][giminorversionsgetsample] | get a GiMinorVersion x-ms-original-file: 2025-09-01/GiMinorVersions_Get_MaximumSet_Gen.json | +| [giMinorVersionsListByParentSample.js][giminorversionslistbyparentsample] | list GiMinorVersion resources by GiVersion x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json | +| [giVersionsListByLocationSample.js][giversionslistbylocationsample] | list GiVersion resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/GiVersions_ListByLocation_MaximumSet_Gen.json | +| [operationsListSample.js][operationslistsample] | list the operations for the provider x-ms-original-file: 2025-09-01/Operations_List_MaximumSet_Gen.json | +| [oracleSubscriptionsAddAzureSubscriptionsSample.js][oraclesubscriptionsaddazuresubscriptionssample] | add Azure Subscriptions x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MaximumSet_Gen.json | +| [oracleSubscriptionsListActivationLinksSample.js][oraclesubscriptionslistactivationlinkssample] | list Activation Links x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MaximumSet_Gen.json | +| [oracleSubscriptionsListCloudAccountDetailsSample.js][oraclesubscriptionslistcloudaccountdetailssample] | list Cloud Account Details x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MaximumSet_Gen.json | +| [oracleSubscriptionsListSaasSubscriptionDetailsSample.js][oraclesubscriptionslistsaassubscriptiondetailssample] | list Saas Subscription Details x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MaximumSet_Gen.json | +| [oracleSubscriptionsUpdateSample.js][oraclesubscriptionsupdatesample] | update a OracleSubscription x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MaximumSet_Gen.json | +| [virtualNetworkAddressesListByParentSample.js][virtualnetworkaddresseslistbyparentsample] | list VirtualNetworkAddress resources by CloudVmCluster x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MaximumSet_Gen.json | ## Prerequisites @@ -64,53 +72,61 @@ npm install 3. Run whichever samples you like (note that some samples may require additional setup, see the table above): ```bash -node autonomousDatabaseBackupsUpdateSample.js +node autonomousDatabaseBackupsListByParentSample.js ``` Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node autonomousDatabaseBackupsUpdateSample.js +npx dev-tool run vendored cross-env node autonomousDatabaseBackupsListByParentSample.js ``` ## Next Steps Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. -[autonomousdatabasebackupsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabaseBackupsUpdateSample.js -[autonomousdatabaseschangedisasterrecoveryconfigurationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js -[autonomousdatabasesfailoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesFailoverSample.js -[autonomousdatabasesgeneratewalletsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesGenerateWalletSample.js -[autonomousdatabaseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesListByResourceGroupSample.js -[autonomousdatabasesrestoresample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesRestoreSample.js -[autonomousdatabasesswitchoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesSwitchoverSample.js -[autonomousdatabasesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesUpdateSample.js -[cloudexadatainfrastructuresaddstoragecapacitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js -[cloudvmclustersaddvmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersAddVmsSample.js -[cloudvmclusterslistprivateipaddressessample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersListPrivateIpAddressesSample.js -[cloudvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/cloudVmClustersRemoveVmsSample.js -[dbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbNodesActionSample.js -[dbsystemshapeslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbSystemShapesListByLocationSample.js -[exadbvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exadbVmClustersRemoveVmsSample.js -[exascaledbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesActionSample.js -[exascaledbnodeslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesListByParentSample.js -[exascaledbstoragevaultscreatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsCreateSample.js -[exascaledbstoragevaultsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsDeleteSample.js -[exascaledbstoragevaultsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsGetSample.js -[exascaledbstoragevaultslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js -[exascaledbstoragevaultslistbysubscriptionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js -[exascaledbstoragevaultsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsUpdateSample.js -[flexcomponentsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsGetSample.js -[flexcomponentslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsListByParentSample.js -[giminorversionsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsGetSample.js -[giminorversionslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsListByParentSample.js -[giversionslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giVersionsListByLocationSample.js -[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/operationsListSample.js -[oraclesubscriptionsaddazuresubscriptionssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js -[oraclesubscriptionslistactivationlinkssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListActivationLinksSample.js -[oraclesubscriptionslistcloudaccountdetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js -[oraclesubscriptionslistsaassubscriptiondetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js -[oraclesubscriptionsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/oracleSubscriptionsUpdateSample.js +[autonomousdatabasebackupslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsListByParentSample.js +[autonomousdatabasebackupsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsUpdateSample.js +[autonomousdatabasesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesActionSample.js +[autonomousdatabaseschangedisasterrecoveryconfigurationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js +[autonomousdatabasesfailoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesFailoverSample.js +[autonomousdatabasesgeneratewalletsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesGenerateWalletSample.js +[autonomousdatabaseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesListByResourceGroupSample.js +[autonomousdatabasesrestoresample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesRestoreSample.js +[autonomousdatabasesshrinksample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesShrinkSample.js +[autonomousdatabasesswitchoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesSwitchoverSample.js +[autonomousdatabasesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesUpdateSample.js +[cloudexadatainfrastructuresaddstoragecapacitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js +[cloudexadatainfrastructuresconfigureexascalesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresConfigureExascaleSample.js +[cloudvmclustersaddvmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersAddVmsSample.js +[cloudvmclusterslistprivateipaddressessample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersListPrivateIpAddressesSample.js +[cloudvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersRemoveVmsSample.js +[dbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesActionSample.js +[dbnodeslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesListByParentSample.js +[dbserverslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbServersListByParentSample.js +[dbsystemshapeslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbSystemShapesListByLocationSample.js +[dbversionslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbVersionsListByLocationSample.js +[exadbvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exadbVmClustersRemoveVmsSample.js +[exascaledbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesActionSample.js +[exascaledbnodeslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesListByParentSample.js +[exascaledbstoragevaultscreatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsCreateSample.js +[exascaledbstoragevaultsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsDeleteSample.js +[exascaledbstoragevaultsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsGetSample.js +[exascaledbstoragevaultslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js +[exascaledbstoragevaultslistbysubscriptionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js +[exascaledbstoragevaultsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsUpdateSample.js +[flexcomponentsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsGetSample.js +[flexcomponentslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsListByParentSample.js +[giminorversionsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsGetSample.js +[giminorversionslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsListByParentSample.js +[giversionslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giVersionsListByLocationSample.js +[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/operationsListSample.js +[oraclesubscriptionsaddazuresubscriptionssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js +[oraclesubscriptionslistactivationlinkssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListActivationLinksSample.js +[oraclesubscriptionslistcloudaccountdetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js +[oraclesubscriptionslistsaassubscriptiondetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js +[oraclesubscriptionsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsUpdateSample.js +[virtualnetworkaddresseslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/virtualNetworkAddressesListByParentSample.js [apiref]: https://learn.microsoft.com/javascript/api/@azure/arm-oracledatabase?view=azure-node-preview [freesub]: https://azure.microsoft.com/free/ [package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/oracledatabase/arm-oracledatabase/README.md diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesListByResourceGroupSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsListByParentSample.js similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesListByResourceGroupSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsListByParentSample.js index e4e2e2a5492e..4a2f0720dc3d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesListByResourceGroupSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsListByParentSample.js @@ -5,17 +5,20 @@ const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); const { DefaultAzureCredential } = require("@azure/identity"); /** - * This sample demonstrates how to list AutonomousDatabase resources by resource group + * This sample demonstrates how to list AutonomousDatabaseBackup resources by AutonomousDatabase * - * @summary list AutonomousDatabase resources by resource group - * x-ms-original-file: 2025-03-01/autonomousDatabase_listByResourceGroup.json + * @summary list AutonomousDatabaseBackup resources by AutonomousDatabase + * x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_ListByParent_MaximumSet_Gen.json */ -async function autonomousDatabasesListByResourceGroup() { +async function listAutonomousDatabaseBackupsByAutonomousDatabaseGeneratedByMaximumSetRule() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.autonomousDatabases.listByResourceGroup("rg000")) { + for await (const item of client.autonomousDatabaseBackups.listByParent( + "rgopenapi", + "databasedb1", + )) { resArray.push(item); } @@ -23,7 +26,7 @@ async function autonomousDatabasesListByResourceGroup() { } async function main() { - await autonomousDatabasesListByResourceGroup(); + await listAutonomousDatabaseBackupsByAutonomousDatabaseGeneratedByMaximumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabaseBackupsUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsUpdateSample.js similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabaseBackupsUpdateSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsUpdateSample.js index f4174406124e..5d4a14bfdb47 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabaseBackupsUpdateSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabaseBackupsUpdateSample.js @@ -8,7 +8,26 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to update a AutonomousDatabaseBackup * * @summary update a AutonomousDatabaseBackup - * x-ms-original-file: 2025-03-01/autonomousDatabaseBackup_patch.json + * x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_Update_MaximumSet_Gen.json + */ +async function patchAutonomousDatabaseBackupGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabaseBackups.update( + "rgopenapi", + "databasedb1", + "1711644130", + { properties: { retentionPeriodInDays: 90 } }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to update a AutonomousDatabaseBackup + * + * @summary update a AutonomousDatabaseBackup + * x-ms-original-file: 2025-09-01/autonomousDatabaseBackup_patch.json */ async function autonomousDatabaseBackupsUpdate() { const credential = new DefaultAzureCredential(); @@ -24,6 +43,7 @@ async function autonomousDatabaseBackupsUpdate() { } async function main() { + await patchAutonomousDatabaseBackupGeneratedByMaximumSetRule(); await autonomousDatabaseBackupsUpdate(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbNodesActionSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesActionSample.js similarity index 55% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbNodesActionSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesActionSample.js index 59403e4f6b40..b4b6e5896c8d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/dbNodesActionSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesActionSample.js @@ -5,23 +5,23 @@ const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); const { DefaultAzureCredential } = require("@azure/identity"); /** - * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * This sample demonstrates how to perform Lifecycle Management Action on Autonomous Database * - * @summary vM actions on DbNode of VM Cluster by the provided filter - * x-ms-original-file: 2025-03-01/dbNodes_action.json + * @summary perform Lifecycle Management Action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Action_MaximumSet_Gen.json */ -async function dbNodesAction() { +async function autonomousDatabasesActionMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.dbNodes.action("rg000", "cluster1", "ocid1....aaaaaa", { + const result = await client.autonomousDatabases.action("rgopenapi", "databasedb1", { action: "Start", }); console.log(result); } async function main() { - await dbNodesAction(); + await autonomousDatabasesActionMaximumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js new file mode 100644 index 000000000000..dce5b31d108d --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.js @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * + * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ChangeDisasterRecoveryConfiguration_MaximumSet_Gen.json + */ +async function performChangeDisasterRecoveryConfigurationActionOnAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( + "rgopenapi", + "databasedb1", + { + disasterRecoveryType: "Adg", + isReplicateAutomaticBackups: true, + timeSnapshotStandbyEnabledTill: new Date("2025-08-01T04:32:58.725Z"), + isSnapshotStandby: true, + }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * + * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json + */ +async function autonomousDatabasesChangeDisasterRecoveryConfiguration() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( + "rg000", + "databasedb1", + { disasterRecoveryType: "Adg", isReplicateAutomaticBackups: false }, + ); + console.log(result); +} + +async function main() { + await performChangeDisasterRecoveryConfigurationActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesChangeDisasterRecoveryConfiguration(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesFailoverSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesFailoverSample.js new file mode 100644 index 000000000000..3aaa3152b796 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesFailoverSample.js @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to perform failover action on Autonomous Database + * + * @summary perform failover action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Failover_MaximumSet_Gen.json + */ +async function performFailoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.failover("rgopenapi", "databasedb1*", { + peerDbId: "peerDbId", + peerDbOcid: "yozpqyefqhirkybmzwgoidyl", + peerDbLocation: "cxlzbzbfzi", + }); + console.log(result); +} + +/** + * This sample demonstrates how to perform failover action on Autonomous Database + * + * @summary perform failover action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_failover.json + */ +async function autonomousDatabasesFailover() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.failover("rg000", "databasedb1", { + peerDbId: "peerDbId", + }); + console.log(result); +} + +async function main() { + await performFailoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesFailover(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesGenerateWalletSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesGenerateWalletSample.js similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesGenerateWalletSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesGenerateWalletSample.js index 1513aa4a23f9..a5372b7da5a4 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesGenerateWalletSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesGenerateWalletSample.js @@ -8,7 +8,25 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to generate wallet action on Autonomous Database * * @summary generate wallet action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_generateWallet.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_GenerateWallet_MaximumSet_Gen.json + */ +async function generateWalletActionOnAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.generateWallet("rgopenapi", "databasedb1", { + generateType: "Single", + isRegional: true, + password: "********", + }); + console.log(result); +} + +/** + * This sample demonstrates how to generate wallet action on Autonomous Database + * + * @summary generate wallet action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_generateWallet.json */ async function autonomousDatabasesGenerateWallet() { const credential = new DefaultAzureCredential(); @@ -23,6 +41,7 @@ async function autonomousDatabasesGenerateWallet() { } async function main() { + await generateWalletActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesGenerateWallet(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesListByResourceGroupSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesListByResourceGroupSample.js new file mode 100644 index 000000000000..c9b05f1fff13 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesListByResourceGroupSample.js @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MaximumSet_Gen.json + */ +async function listAutonomousDatabaseByResourceGroupGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MinimumSet_Gen.json + */ +async function listAutonomousDatabaseByResourceGroupGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/autonomousDatabase_listByResourceGroup.json + */ +async function autonomousDatabasesListByResourceGroup() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rg000")) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await listAutonomousDatabaseByResourceGroupGeneratedByMaximumSetRule(); + await listAutonomousDatabaseByResourceGroupGeneratedByMinimumSetRule(); + await autonomousDatabasesListByResourceGroup(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesRestoreSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesRestoreSample.js similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesRestoreSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesRestoreSample.js index ee2736b1c1b0..3ea822789cee 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/autonomousDatabasesRestoreSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesRestoreSample.js @@ -8,7 +8,23 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to restores an Autonomous Database based on the provided request parameters. * * @summary restores an Autonomous Database based on the provided request parameters. - * x-ms-original-file: 2025-03-01/autonomousDatabase_restore.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Restore_MaximumSet_Gen.json + */ +async function performRestoreActionOnAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.restore("rgopenapi", "database1", { + timestamp: new Date("2024-04-23T00:00:00.000Z"), + }); + console.log(result); +} + +/** + * This sample demonstrates how to restores an Autonomous Database based on the provided request parameters. + * + * @summary restores an Autonomous Database based on the provided request parameters. + * x-ms-original-file: 2025-09-01/autonomousDatabase_restore.json */ async function autonomousDatabasesRestore() { const credential = new DefaultAzureCredential(); @@ -21,6 +37,7 @@ async function autonomousDatabasesRestore() { } async function main() { + await performRestoreActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesRestore(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesShrinkSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesShrinkSample.js new file mode 100644 index 000000000000..1087ef1b853e --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesShrinkSample.js @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to this operation shrinks the current allocated storage down to the current actual used data storage. + * + * @summary this operation shrinks the current allocated storage down to the current actual used data storage. + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Shrink_MaximumSet_Gen.json + */ +async function performShrinkActionOnAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.shrink("rgopenapi", "database1"); + console.log(result); +} + +async function main() { + await performShrinkActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesSwitchoverSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesSwitchoverSample.js new file mode 100644 index 000000000000..12ee9a59c8cd --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesSwitchoverSample.js @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to perform switchover action on Autonomous Database + * + * @summary perform switchover action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Switchover_MaximumSet_Gen.json + */ +async function performSwitchoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.switchover("rgopenapi", "databasedb1", { + peerDbId: "peerDbId", + peerDbOcid: "yozpqyefqhirkybmzwgoidyl", + peerDbLocation: "cxlzbzbfzi", + }); + console.log(result); +} + +/** + * This sample demonstrates how to perform switchover action on Autonomous Database + * + * @summary perform switchover action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_switchover.json + */ +async function autonomousDatabasesSwitchover() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.switchover("rg000", "databasedb1", { + peerDbId: "peerDbId", + }); + console.log(result); +} + +async function main() { + await performSwitchoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesSwitchover(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesUpdateSample.js new file mode 100644 index 000000000000..f775e8a506df --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/autonomousDatabasesUpdateSample.js @@ -0,0 +1,80 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to update a AutonomousDatabase + * + * @summary update a AutonomousDatabase + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Update_MaximumSet_Gen.json + */ +async function patchAutonomousDatabaseGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.update("rgopenapi", "databasedb1", { + tags: { key9827: "bygpoqozrwfyiootncgcqq" }, + properties: { + adminPassword: "", + autonomousMaintenanceScheduleType: "Early", + computeCount: 56.1, + cpuCoreCount: 45, + customerContacts: [{ email: "dummyemail@microsoft.com" }], + dataStorageSizeInTbs: 133, + dataStorageSizeInGbs: 175271, + displayName: "lrdrjpyyvufnxdzpwvlkmfukpstrjftdxcejcxtnqhxqbhvtzeiokllnspotsqeggddxkjjtf", + isAutoScalingEnabled: true, + isAutoScalingForStorageEnabled: true, + peerDbId: "qmpfwtvpfvbgmulethqznsyyjlpxmyfqfanrymzqsgraavtmlqqbexpzguyqybngoupbshlzpxv", + isLocalDataGuardEnabled: true, + isMtlsConnectionRequired: true, + licenseModel: "LicenseIncluded", + scheduledOperationsList: [ + { + dayOfWeek: { name: "Monday" }, + scheduledStartTime: "lwwvkazgmfremfwhckfb", + scheduledStopTime: "hjwagzxijpiaogulmnmbuqakpqxhkjvaypjqnvbvtjddc", + }, + ], + databaseEdition: "StandardEdition", + longTermBackupSchedule: { + repeatCadence: "OneTime", + timeOfBackup: new Date("2025-08-01T04:32:58.715Z"), + retentionPeriodInDays: 188, + isDisabled: true, + }, + localAdgAutoFailoverMaxDataLossLimit: 212, + openMode: "ReadOnly", + permissionLevel: "Restricted", + role: "Primary", + backupRetentionPeriodInDays: 12, + whitelistedIps: [ + "kfierlppwurtqrhfxwgfgrnqtmvraignzwsddwmpdijeveuevuoejfmbjvpnlrmmdflilxcwkkzvdofctsdjfxrrrwctihhnchtrouauesqbmlcqhzwnppnhrtitecenlfyshassvajukbwxudhlwixkvkgsessvshcwmleoqujeemwenhwlsccbcjnnviugzgylsxkssalqoicatcvkahogdvweymhdxboyqwhaxuzlmrdbvgbnnetobkbwygcsflzanwknlybvvzgjzjirpfrksbxwgllgfxwdflcisvxpkjecpgdaxccqkzxofedkrawvhzeabmunpykwd", + ], + }, + }); + console.log(result); +} + +/** + * This sample demonstrates how to update a AutonomousDatabase + * + * @summary update a AutonomousDatabase + * x-ms-original-file: 2025-09-01/autonomousDatabase_patch.json + */ +async function autonomousDatabasesUpdate() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.update("rg000", "databasedb1", {}); + console.log(result); +} + +async function main() { + await patchAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesUpdate(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js new file mode 100644 index 000000000000..21e30a2d40a0 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresAddStorageCapacitySample.js @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MaximumSet_Gen.json + */ +async function performAddStorageCapacityOnExadataInfraGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + ); + console.log(result); +} + +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MinimumSet_Gen.json + */ +async function performAddStorageCapacityOnExadataInfraGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + ); + console.log(result); +} + +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/exaInfra_addStorageCapacity.json + */ +async function cloudExadataInfrastructuresAddStorageCapacity() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity("rg000", "infra1"); + console.log(result); +} + +async function main() { + await performAddStorageCapacityOnExadataInfraGeneratedByMaximumSetRule(); + await performAddStorageCapacityOnExadataInfraGeneratedByMinimumSetRule(); + await cloudExadataInfrastructuresAddStorageCapacity(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresConfigureExascaleSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresConfigureExascaleSample.js new file mode 100644 index 000000000000..e274e7cf8d9b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudExadataInfrastructuresConfigureExascaleSample.js @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to configures Exascale on Cloud exadata infrastructure resource + * + * @summary configures Exascale on Cloud exadata infrastructure resource + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MaximumSet_Gen.json + */ +async function cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.configureExascale( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + { totalStorageInGbs: 19 }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to configures Exascale on Cloud exadata infrastructure resource + * + * @summary configures Exascale on Cloud exadata infrastructure resource + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MinimumSet_Gen.json + */ +async function cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.configureExascale( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + { totalStorageInGbs: 19 }, + ); + console.log(result); +} + +async function main() { + await cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMaximumSetRule(); + await cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersAddVmsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersAddVmsSample.js new file mode 100644 index 000000000000..1b659b327f8f --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersAddVmsSample.js @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MaximumSet_Gen.json + */ +async function addVMsToVMClusterGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MinimumSet_Gen.json + */ +async function addVMsToVMClusterGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/vmClusters_addVms.json + */ +async function cloudVmClustersAddVms() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rg000", "cluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +async function main() { + await addVMsToVMClusterGeneratedByMaximumSetRule(); + await addVMsToVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersAddVms(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersListPrivateIpAddressesSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersListPrivateIpAddressesSample.js new file mode 100644 index 000000000000..abbf932df9f5 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersListPrivateIpAddressesSample.js @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MaximumSet_Gen.json + */ +async function listPrivateIPAddressesForVMClusterGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses( + "rgopenapi", + "cloudvmcluster1", + { subnetId: "ocid1..aaaaaa", vnicId: "ocid1..aaaaa" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MinimumSet_Gen.json + */ +async function listPrivateIPAddressesForVMClusterGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses( + "rgopenapi", + "cloudvmcluster1", + { subnetId: "ocid1..aaaaaa", vnicId: "ocid1..aaaaa" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/vmClusters_listPrivateIpAddresses.json + */ +async function cloudVmClustersListPrivateIpAddresses() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses("rg000", "cluster1", { + subnetId: "ocid1..aaaaaa", + vnicId: "ocid1..aaaaa", + }); + console.log(result); +} + +async function main() { + await listPrivateIPAddressesForVMClusterGeneratedByMaximumSetRule(); + await listPrivateIPAddressesForVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersListPrivateIpAddresses(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersRemoveVmsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersRemoveVmsSample.js new file mode 100644 index 000000000000..b765e3650b6d --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/cloudVmClustersRemoveVmsSample.js @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MaximumSet_Gen.json + */ +async function removeVMsFromVMClusterGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MinimumSet_Gen.json + */ +async function removeVMsFromVMClusterGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/vmClusters_removeVms.json + */ +async function cloudVmClustersRemoveVms() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rg000", "cluster1", { + dbServers: ["ocid1..aaaa"], + }); + console.log(result); +} + +async function main() { + await removeVMsFromVMClusterGeneratedByMaximumSetRule(); + await removeVMsFromVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersRemoveVms(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesActionSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesActionSample.js new file mode 100644 index 000000000000..125e415d5a54 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesActionSample.js @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/DbNodes_Action_MaximumSet_Gen.json + */ +async function vmActionsOnDbNodesOfVMClusterGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action("rgopenapi", "cloudvmcluster1", "abciderewdidsereq", { + action: "Start", + }); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/DbNodes_Action_MinimumSet_Gen.json + */ +async function vmActionsOnDbNodesOfVMClusterGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action( + "rgopenapi", + "cloudvmcluster1", + "adfedefeewwevkieviect", + { action: "Start" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/dbNodes_action.json + */ +async function dbNodesAction() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action("rg000", "cluster1", "ocid1....aaaaaa", { + action: "Start", + }); + console.log(result); +} + +async function main() { + await vmActionsOnDbNodesOfVMClusterGeneratedByMaximumSetRule(); + await vmActionsOnDbNodesOfVMClusterGeneratedByMinimumSetRule(); + await dbNodesAction(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesListByParentSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesListByParentSample.js new file mode 100644 index 000000000000..a594ab96ccb0 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbNodesListByParentSample.js @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list DbNode resources by CloudVmCluster + * + * @summary list DbNode resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MaximumSet_Gen.json + */ +async function listDbNodesByVMClusterGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbNodes.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbNode resources by CloudVmCluster + * + * @summary list DbNode resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MinimumSet_Gen.json + */ +async function listDbNodesByVMClusterGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbNodes.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await listDbNodesByVMClusterGeneratedByMaximumSetRule(); + await listDbNodesByVMClusterGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbServersListByParentSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbServersListByParentSample.js new file mode 100644 index 000000000000..77842a370e6b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbServersListByParentSample.js @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list DbServer resources by CloudExadataInfrastructure + * + * @summary list DbServer resources by CloudExadataInfrastructure + * x-ms-original-file: 2025-09-01/DbServers_ListByParent_MaximumSet_Gen.json + */ +async function listDbServersByExadataInfrastructureGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbServers.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbServer resources by CloudExadataInfrastructure + * + * @summary list DbServer resources by CloudExadataInfrastructure + * x-ms-original-file: 2025-09-01/DbServers_ListByParent_MinimumSet_Gen.json + */ +async function listDbServersByExadataInfrastructureGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbServers.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await listDbServersByExadataInfrastructureGeneratedByMaximumSetRule(); + await listDbServersByExadataInfrastructureGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbSystemShapesListByLocationSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbSystemShapesListByLocationSample.js new file mode 100644 index 000000000000..9d6a429f4342 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbSystemShapesListByLocationSample.js @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MaximumSet_Gen.json + */ +async function listDbSystemShapesByLocationGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus", { + zone: "ymedsvqavemtixp", + })) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MinimumSet_Gen.json + */ +async function listDbSystemShapesByLocationGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/dbSystemShapes_listByLocation.json + */ +async function dbSystemShapesListByLocation() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await listDbSystemShapesByLocationGeneratedByMaximumSetRule(); + await listDbSystemShapesByLocationGeneratedByMinimumSetRule(); + await dbSystemShapesListByLocation(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbVersionsListByLocationSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbVersionsListByLocationSample.js new file mode 100644 index 000000000000..cadb26278f6b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/dbVersionsListByLocationSample.js @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list DbVersion resources by SubscriptionLocationResource + * + * @summary list DbVersion resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbVersions_ListByLocation_MaximumSet_Gen.json + */ +async function dbVersionsListByLocationMaximumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbVersions.listByLocation("eastus", { + dbSystemShape: "VM.Standard.x86", + dbSystemId: + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Oracle.Database/dbSystems/dbsystem1", + storageManagement: "LVM", + isUpgradeSupported: true, + isDatabaseSoftwareImageSupported: true, + shapeFamily: "VIRTUALMACHINE", + })) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await dbVersionsListByLocationMaximumSet(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exadbVmClustersRemoveVmsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exadbVmClustersRemoveVmsSample.js similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exadbVmClustersRemoveVmsSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exadbVmClustersRemoveVmsSample.js index a06679c4e4de..4ccc67fa99e1 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exadbVmClustersRemoveVmsSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exadbVmClustersRemoveVmsSample.js @@ -8,13 +8,34 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to remove VMs from the VM Cluster * * @summary remove VMs from the VM Cluster - * x-ms-original-file: 2025-03-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json */ async function exadbVmClustersRemoveVmsMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exadbVmClusters.removeVms("rgopenapi", "vmClusterName", { + const result = await client.exadbVmClusters.removeVms("rgopenapi", "exadbVmClusterName1", { + dbNodes: [ + { + dbNodeId: + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Oracle.Database/exadbVmClusters/vmCluster/dbNodes/dbNodeName", + }, + ], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MinimumSet_Gen.json + */ +async function exadbVmClustersRemoveVmsMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exadbVmClusters.removeVms("rgopenapi", "vmCluster1", { dbNodes: [ { dbNodeId: @@ -27,6 +48,7 @@ async function exadbVmClustersRemoveVmsMaximumSet() { async function main() { await exadbVmClustersRemoveVmsMaximumSet(); + await exadbVmClustersRemoveVmsMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesActionSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesActionSample.js new file mode 100644 index 000000000000..882af41907cb --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesActionSample.js @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter + * + * @summary vM actions on DbNode of ExadbVmCluster by the provided filter + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MaximumSet_Gen.json + */ +async function exascaleDbNodesActionMaximumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbNodes.action( + "rgopenapi", + "exadbvmcluster1", + "exascaledbnode1", + { action: "Start" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter + * + * @summary vM actions on DbNode of ExadbVmCluster by the provided filter + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MinimumSet_Gen.json + */ +async function exascaleDbNodesActionMinimumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbNodes.action( + "rgopenapi", + "exadbvmcluster1", + "exascaledbnode1", + { action: "Start" }, + ); + console.log(result); +} + +async function main() { + await exascaleDbNodesActionMaximumSet(); + await exascaleDbNodesActionMinimumSet(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesListByParentSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesListByParentSample.js similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesListByParentSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesListByParentSample.js index dc6d4a0c71a3..e9767c625c8d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbNodesListByParentSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbNodesListByParentSample.js @@ -8,14 +8,32 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to list ExascaleDbNode resources by ExadbVmCluster * * @summary list ExascaleDbNode resources by ExadbVmCluster - * x-ms-original-file: 2025-03-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json */ async function exascaleDbNodesListByParentMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmClusterName")) { + for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmcluster")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list ExascaleDbNode resources by ExadbVmCluster + * + * @summary list ExascaleDbNode resources by ExadbVmCluster + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MinimumSet_Gen.json + */ +async function exascaleDbNodesListByParentMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmcluster")) { resArray.push(item); } @@ -24,6 +42,7 @@ async function exascaleDbNodesListByParentMaximumSet() { async function main() { await exascaleDbNodesListByParentMaximumSet(); + await exascaleDbNodesListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsCreateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsCreateSample.js new file mode 100644 index 000000000000..34c75a4b4a70 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsCreateSample.js @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to create a ExascaleDbStorageVault + * + * @summary create a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json + */ +async function exascaleDbStorageVaultsCreateMaximumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.create("rgopenapi", "storagevault1", { + properties: { + additionalFlashCacheInPercent: 0, + description: + "kgqvxvtegzwyppegpvqxnlslvetbjlgveofcpjddenhbpocyzwtswaeaetqkipcxyhedsymuljalirryldlbviuvidhssyiwodacajjnbpkbvbvzwzsjctsidchalyjkievnivikwnnypaojcvhmokddstxwiqxmbfmbvglfimseguwyvibwzllggjtwejdfgezoeuvjjbsyfozswihydzuscjrqnklewongumiljeordhqlsclwlmftzdoey", + displayName: "storagevault1", + highCapacityDatabaseStorageInput: { totalSizeInGbs: 1 }, + highCapacityDatabaseStorage: { + availableSizeInGbs: 4, + totalSizeInGbs: 12, + }, + timeZone: "hyjcftlal", + lifecycleState: "Provisioning", + ocid: "ocid1.autonomousdatabase.oc1..aaaaa3klq", + }, + zones: ["npqjhyekyumfybqas"], + tags: { key4521: "rrgotvwzckepkhgkbz" }, + location: "zuoudqbvlxerpjtlfooyqlb", + }); + console.log(result); +} + +/** + * This sample demonstrates how to create a ExascaleDbStorageVault + * + * @summary create a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsCreateMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.create("rgopenapi", "storagevault1", { + location: "odxgtv", + }); + console.log(result); +} + +async function main() { + await exascaleDbStorageVaultsCreateMaximumSet(); + await exascaleDbStorageVaultsCreateMaximumSetGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsDeleteSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsDeleteSample.js new file mode 100644 index 000000000000..4078e7fc4f73 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsDeleteSample.js @@ -0,0 +1,38 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to delete a ExascaleDbStorageVault + * + * @summary delete a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json + */ +async function exascaleDbStorageVaultsDeleteMaximumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.exascaleDbStorageVaults.delete("rgopenapi", "storagevault1"); +} + +/** + * This sample demonstrates how to delete a ExascaleDbStorageVault + * + * @summary delete a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsDeleteMinimumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.exascaleDbStorageVaults.delete("rgopenapi", "storagevault1"); +} + +async function main() { + await exascaleDbStorageVaultsDeleteMaximumSet(); + await exascaleDbStorageVaultsDeleteMinimumSet(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsGetSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsGetSample.js similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsGetSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsGetSample.js index 36ba00a47290..dc8157805e98 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsGetSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsGetSample.js @@ -8,18 +8,33 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to get a ExascaleDbStorageVault * * @summary get a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsGetMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.get("rgopenapi", "vmClusterName"); + const result = await client.exascaleDbStorageVaults.get("rgopenapi", "storagevault1"); + console.log(result); +} + +/** + * This sample demonstrates how to get a ExascaleDbStorageVault + * + * @summary get a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsGetMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.get("rgopenapi", "storagevault1"); console.log(result); } async function main() { await exascaleDbStorageVaultsGetMaximumSet(); + await exascaleDbStorageVaultsGetMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js similarity index 52% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js index c0a85d2300a9..f0099aa97138 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListByResourceGroupSample.js @@ -8,7 +8,7 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to list ExascaleDbStorageVault resources by resource group * * @summary list ExascaleDbStorageVault resources by resource group - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsListByResourceGroupMaximumSet() { const credential = new DefaultAzureCredential(); @@ -22,8 +22,27 @@ async function exascaleDbStorageVaultsListByResourceGroupMaximumSet() { console.log(resArray); } +/** + * This sample demonstrates how to list ExascaleDbStorageVault resources by resource group + * + * @summary list ExascaleDbStorageVault resources by resource group + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsListByResourceGroupMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbStorageVaults.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main() { await exascaleDbStorageVaultsListByResourceGroupMaximumSet(); + await exascaleDbStorageVaultsListByResourceGroupMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js similarity index 52% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js index a98b447df295..46bf38c234dc 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsListBySubscriptionSample.js @@ -8,7 +8,7 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to list ExascaleDbStorageVault resources by subscription ID * * @summary list ExascaleDbStorageVault resources by subscription ID - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsListBySubscriptionMaximumSet() { const credential = new DefaultAzureCredential(); @@ -22,8 +22,27 @@ async function exascaleDbStorageVaultsListBySubscriptionMaximumSet() { console.log(resArray); } +/** + * This sample demonstrates how to list ExascaleDbStorageVault resources by subscription ID + * + * @summary list ExascaleDbStorageVault resources by subscription ID + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsListBySubscriptionMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbStorageVaults.listBySubscription()) { + resArray.push(item); + } + + console.log(resArray); +} + async function main() { await exascaleDbStorageVaultsListBySubscriptionMaximumSet(); + await exascaleDbStorageVaultsListBySubscriptionMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsUpdateSample.js new file mode 100644 index 000000000000..e8855bce4797 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/exascaleDbStorageVaultsUpdateSample.js @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to update a ExascaleDbStorageVault + * + * @summary update a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json + */ +async function exascaleDbStorageVaultsUpdateMaximumSet() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.update("rgopenapi", "storagevault1", { + tags: { key6486: "fxbuboilsiapodppdtfls" }, + }); + console.log(result); +} + +/** + * This sample demonstrates how to update a ExascaleDbStorageVault + * + * @summary update a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsUpdateMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.update("rgopenapi", "storagevault1", {}); + console.log(result); +} + +async function main() { + await exascaleDbStorageVaultsUpdateMaximumSet(); + await exascaleDbStorageVaultsUpdateMaximumSetGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsGetSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsGetSample.js similarity index 90% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsGetSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsGetSample.js index 62f73b4f9444..6ec8c5f22c20 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsGetSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsGetSample.js @@ -8,13 +8,13 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to get a FlexComponent * * @summary get a FlexComponent - * x-ms-original-file: 2025-03-01/FlexComponents_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/FlexComponents_Get_MaximumSet_Gen.json */ async function flexComponentsGetMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.flexComponents.get("eastus", "flexComponent"); + const result = await client.flexComponents.get("eastus", "flexname1"); console.log(result); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsListByParentSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsListByParentSample.js similarity index 52% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsListByParentSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsListByParentSample.js index fd1824522f8e..99f5baf78a1c 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/flexComponentsListByParentSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/flexComponentsListByParentSample.js @@ -8,7 +8,7 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to list FlexComponent resources by SubscriptionLocationResource * * @summary list FlexComponent resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/FlexComponents_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MaximumSet_Gen.json */ async function flexComponentsListByParentMaximumSet() { const credential = new DefaultAzureCredential(); @@ -16,7 +16,7 @@ async function flexComponentsListByParentMaximumSet() { const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); for await (const item of client.flexComponents.listByParent("eastus", { - shape: "Exadata.X11M", + shape: "Exadata.X9M", })) { resArray.push(item); } @@ -24,8 +24,27 @@ async function flexComponentsListByParentMaximumSet() { console.log(resArray); } +/** + * This sample demonstrates how to list FlexComponent resources by SubscriptionLocationResource + * + * @summary list FlexComponent resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MinimumSet_Gen.json + */ +async function flexComponentsListByParentMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.flexComponents.listByParent("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main() { await flexComponentsListByParentMaximumSet(); + await flexComponentsListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsGetSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsGetSample.js similarity index 80% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsGetSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsGetSample.js index 13512e059669..8abe510af995 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsGetSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsGetSample.js @@ -8,13 +8,13 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to get a GiMinorVersion * * @summary get a GiMinorVersion - * x-ms-original-file: 2025-03-01/GiMinorVersions_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiMinorVersions_Get_MaximumSet_Gen.json */ async function giMinorVersionsGetMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.giMinorVersions.get("eastus", "giVersionName", "giMinorVersionName"); + const result = await client.giMinorVersions.get("eastus", "19.0.0.0", "minorversion"); console.log(result); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsListByParentSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsListByParentSample.js similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsListByParentSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsListByParentSample.js index d158ef192c48..137a7b989dea 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giMinorVersionsListByParentSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giMinorVersionsListByParentSample.js @@ -8,15 +8,16 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to list GiMinorVersion resources by GiVersion * * @summary list GiMinorVersion resources by GiVersion - * x-ms-original-file: 2025-03-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json */ async function giMinorVersionsListByParentMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.giMinorVersions.listByParent("eastus", "giVersionName", { - shapeFamily: "rtfcosvtlpeeqoicsjqggtgc", + for await (const item of client.giMinorVersions.listByParent("eastus", "name1", { + shapeFamily: "EXADATA", + zone: "zone1", })) { resArray.push(item); } @@ -24,8 +25,27 @@ async function giMinorVersionsListByParentMaximumSet() { console.log(resArray); } +/** + * This sample demonstrates how to list GiMinorVersion resources by GiVersion + * + * @summary list GiMinorVersion resources by GiVersion + * x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MinimumSet_Gen.json + */ +async function giMinorVersionsListByParentMaximumSetGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.giMinorVersions.listByParent("eastus", "giMinorVersionName")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main() { await giMinorVersionsListByParentMaximumSet(); + await giMinorVersionsListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giVersionsListByLocationSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giVersionsListByLocationSample.js similarity index 68% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giVersionsListByLocationSample.js rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giVersionsListByLocationSample.js index 4af57247fdef..85571275c443 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/giVersionsListByLocationSample.js +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/giVersionsListByLocationSample.js @@ -8,16 +8,16 @@ const { DefaultAzureCredential } = require("@azure/identity"); * This sample demonstrates how to list GiVersion resources by SubscriptionLocationResource * * @summary list GiVersion resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/GiVersions_ListByLocation_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiVersions_ListByLocation_MaximumSet_Gen.json */ -async function listGiVersionsByLocationGeneratedByMaximumSetRule() { +async function giVersionsListByLocationMaximumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); for await (const item of client.giVersions.listByLocation("eastus", { - shape: - "osixsklyaauhoqnkxvnvsqeqenhzogntqnpubldrrfvqncwetdtwqwjjcvspwhgecbimdlulwcubikebrdzmidrucgtsuqvytkqutmbyrvvyioxpocpmuwiivyanjzucaegihztluuvpznzaoakfsselumhhsvrtrbzwpjhcihsvyouonlxdluwhqfxoqvgthkaxppbydtqjntscgzbivfdcaobbkthrbdjwpejirqmbly", + shape: "Exadata.X9M", + zone: "hpzuyaemum", })) { resArray.push(item); } @@ -29,9 +29,9 @@ async function listGiVersionsByLocationGeneratedByMaximumSetRule() { * This sample demonstrates how to list GiVersion resources by SubscriptionLocationResource * * @summary list GiVersion resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/GiVersions_ListByLocation_MinimumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiVersions_ListByLocation_MinimumSet_Gen.json */ -async function listGiVersionsByLocationGeneratedByMinimumSetRule() { +async function giVersionsListByLocationMinimumSet() { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); @@ -44,8 +44,8 @@ async function listGiVersionsByLocationGeneratedByMinimumSetRule() { } async function main() { - await listGiVersionsByLocationGeneratedByMaximumSetRule(); - await listGiVersionsByLocationGeneratedByMinimumSetRule(); + await giVersionsListByLocationMaximumSet(); + await giVersionsListByLocationMinimumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/operationsListSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/operationsListSample.js new file mode 100644 index 000000000000..4184599caba8 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/operationsListSample.js @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/Operations_List_MaximumSet_Gen.json + */ +async function listOperationsGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/Operations_List_MinimumSet_Gen.json + */ +async function listOperationsGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/operations_list.json + */ +async function operationsList() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await listOperationsGeneratedByMaximumSetRule(); + await listOperationsGeneratedByMinimumSetRule(); + await operationsList(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js new file mode 100644 index 000000000000..2bb7f941b4d5 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsAddAzureSubscriptionsSample.js @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MaximumSet_Gen.json + */ +async function addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} + +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MinimumSet_Gen.json + */ +async function addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} + +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/oracleSubscriptions_addAzureSubscriptions.json + */ +async function oracleSubscriptionsAddAzureSubscriptions() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} + +async function main() { + await addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMaximumSetRule(); + await addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsAddAzureSubscriptions(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListActivationLinksSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListActivationLinksSample.js new file mode 100644 index 000000000000..259931cbe466 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListActivationLinksSample.js @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MaximumSet_Gen.json + */ +async function listActivationLinksForTheOracleSubscriptionGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} + +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MinimumSet_Gen.json + */ +async function listActivationLinksForTheOracleSubscriptionGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} + +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listActivationLinks.json + */ +async function oracleSubscriptionsListActivationLinks() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} + +async function main() { + await listActivationLinksForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listActivationLinksForTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsListActivationLinks(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js new file mode 100644 index 000000000000..00e050fc5e2f --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListCloudAccountDetailsSample.js @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MaximumSet_Gen.json + */ +async function listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MinimumSet_Gen.json + */ +async function listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listCloudAccountDetails.json + */ +async function oracleSubscriptionsListCloudAccountDetails() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} + +async function main() { + await listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsListCloudAccountDetails(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js new file mode 100644 index 000000000000..eff3cc79eda8 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsListSaasSubscriptionDetailsSample.js @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MaximumSet_Gen.json + */ +async function listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MinimumSet_Gen.json + */ +async function listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listSaasSubscriptionDetails.json + */ +async function oracleSubscriptionsListSaasSubscriptionDetails() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} + +async function main() { + await listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsListSaasSubscriptionDetails(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsUpdateSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsUpdateSample.js new file mode 100644 index 000000000000..b10b64126488 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/oracleSubscriptionsUpdateSample.js @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MaximumSet_Gen.json + */ +async function patchOracleSubscriptionGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({ + plan: { + name: "klnnbggrxhvvaiajvjx", + publisher: "xvsarzadrjqergudsohjk", + product: "hivkczjyrimjilbmqj", + promotionCode: "zhotaxrodldvmwpksvsrwbnc", + version: "ueudckjmuqpjvsmmenzyflgpa", + }, + properties: { productCode: "kbqzsukkjceoplyalyrdayfj", intent: "Retain" }, + }); + console.log(result); +} + +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MinimumSet_Gen.json + */ +async function patchOracleSubscriptionGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({}); + console.log(result); +} + +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/oracleSubscriptions_patch.json + */ +async function oracleSubscriptionsUpdate() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({}); + console.log(result); +} + +async function main() { + await patchOracleSubscriptionGeneratedByMaximumSetRule(); + await patchOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsUpdate(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/package.json b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/package.json similarity index 96% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/package.json rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/package.json index 6a2f51490747..cdd8204ee7ce 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/package.json +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/package.json @@ -28,6 +28,6 @@ "dependencies": { "@azure/arm-oracledatabase": "latest", "dotenv": "latest", - "@azure/identity": "^4.10.0" + "@azure/identity": "^4.9.0" } } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/sample.env b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/sample.env similarity index 100% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/javascript/sample.env rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/sample.env diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/virtualNetworkAddressesListByParentSample.js b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/virtualNetworkAddressesListByParentSample.js new file mode 100644 index 000000000000..95f8e19d42ec --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/javascript/virtualNetworkAddressesListByParentSample.js @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +const { OracleDatabaseManagementClient } = require("@azure/arm-oracledatabase"); +const { DefaultAzureCredential } = require("@azure/identity"); + +/** + * This sample demonstrates how to list VirtualNetworkAddress resources by CloudVmCluster + * + * @summary list VirtualNetworkAddress resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MaximumSet_Gen.json + */ +async function listVirtualNetworkAddressesByVMClusterGeneratedByMaximumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.virtualNetworkAddresses.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list VirtualNetworkAddress resources by CloudVmCluster + * + * @summary list VirtualNetworkAddress resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MinimumSet_Gen.json + */ +async function listVirtualNetworkAddressesByVMClusterGeneratedByMinimumSetRule() { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.virtualNetworkAddresses.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main() { + await listVirtualNetworkAddressesByVMClusterGeneratedByMaximumSetRule(); + await listVirtualNetworkAddressesByVMClusterGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/README.md b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/README.md similarity index 54% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/README.md rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/README.md index 1c8e2d2ce916..f96a4d63b498 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/README.md +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/README.md @@ -2,42 +2,50 @@ These sample programs show how to use the TypeScript client libraries for @azure/arm-oracledatabase in some common scenarios. -| **File Name** | **Description** | -| ------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [autonomousDatabaseBackupsUpdateSample.ts][autonomousdatabasebackupsupdatesample] | update a AutonomousDatabaseBackup x-ms-original-file: 2025-03-01/autonomousDatabaseBackup_patch.json | -| [autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts][autonomousdatabaseschangedisasterrecoveryconfigurationsample] | perform ChangeDisasterRecoveryConfiguration action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json | -| [autonomousDatabasesFailoverSample.ts][autonomousdatabasesfailoversample] | perform failover action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_failover.json | -| [autonomousDatabasesGenerateWalletSample.ts][autonomousdatabasesgeneratewalletsample] | generate wallet action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_generateWallet.json | -| [autonomousDatabasesListByResourceGroupSample.ts][autonomousdatabaseslistbyresourcegroupsample] | list AutonomousDatabase resources by resource group x-ms-original-file: 2025-03-01/autonomousDatabase_listByResourceGroup.json | -| [autonomousDatabasesRestoreSample.ts][autonomousdatabasesrestoresample] | restores an Autonomous Database based on the provided request parameters. x-ms-original-file: 2025-03-01/autonomousDatabase_restore.json | -| [autonomousDatabasesSwitchoverSample.ts][autonomousdatabasesswitchoversample] | perform switchover action on Autonomous Database x-ms-original-file: 2025-03-01/autonomousDatabase_switchover.json | -| [autonomousDatabasesUpdateSample.ts][autonomousdatabasesupdatesample] | update a AutonomousDatabase x-ms-original-file: 2025-03-01/autonomousDatabase_patch.json | -| [cloudExadataInfrastructuresAddStorageCapacitySample.ts][cloudexadatainfrastructuresaddstoragecapacitysample] | perform add storage capacity on exadata infra x-ms-original-file: 2025-03-01/exaInfra_addStorageCapacity.json | -| [cloudVmClustersAddVmsSample.ts][cloudvmclustersaddvmssample] | add VMs to the VM Cluster x-ms-original-file: 2025-03-01/vmClusters_addVms.json | -| [cloudVmClustersListPrivateIpAddressesSample.ts][cloudvmclusterslistprivateipaddressessample] | list Private IP Addresses by the provided filter x-ms-original-file: 2025-03-01/vmClusters_listPrivateIpAddresses.json | -| [cloudVmClustersRemoveVmsSample.ts][cloudvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-03-01/vmClusters_removeVms.json | -| [dbNodesActionSample.ts][dbnodesactionsample] | vM actions on DbNode of VM Cluster by the provided filter x-ms-original-file: 2025-03-01/dbNodes_action.json | -| [dbSystemShapesListByLocationSample.ts][dbsystemshapeslistbylocationsample] | list DbSystemShape resources by SubscriptionLocationResource x-ms-original-file: 2025-03-01/dbSystemShapes_listByLocation.json | -| [exadbVmClustersRemoveVmsSample.ts][exadbvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-03-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json | -| [exascaleDbNodesActionSample.ts][exascaledbnodesactionsample] | vM actions on DbNode of ExadbVmCluster by the provided filter x-ms-original-file: 2025-03-01/ExascaleDbNodes_Action_MaximumSet_Gen.json | -| [exascaleDbNodesListByParentSample.ts][exascaledbnodeslistbyparentsample] | list ExascaleDbNode resources by ExadbVmCluster x-ms-original-file: 2025-03-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsCreateSample.ts][exascaledbstoragevaultscreatesample] | create a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsDeleteSample.ts][exascaledbstoragevaultsdeletesample] | delete a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsGetSample.ts][exascaledbstoragevaultsgetsample] | get a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsListByResourceGroupSample.ts][exascaledbstoragevaultslistbyresourcegroupsample] | list ExascaleDbStorageVault resources by resource group x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsListBySubscriptionSample.ts][exascaledbstoragevaultslistbysubscriptionsample] | list ExascaleDbStorageVault resources by subscription ID x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json | -| [exascaleDbStorageVaultsUpdateSample.ts][exascaledbstoragevaultsupdatesample] | update a ExascaleDbStorageVault x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json | -| [flexComponentsGetSample.ts][flexcomponentsgetsample] | get a FlexComponent x-ms-original-file: 2025-03-01/FlexComponents_Get_MaximumSet_Gen.json | -| [flexComponentsListByParentSample.ts][flexcomponentslistbyparentsample] | list FlexComponent resources by SubscriptionLocationResource x-ms-original-file: 2025-03-01/FlexComponents_ListByParent_MaximumSet_Gen.json | -| [giMinorVersionsGetSample.ts][giminorversionsgetsample] | get a GiMinorVersion x-ms-original-file: 2025-03-01/GiMinorVersions_Get_MaximumSet_Gen.json | -| [giMinorVersionsListByParentSample.ts][giminorversionslistbyparentsample] | list GiMinorVersion resources by GiVersion x-ms-original-file: 2025-03-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json | -| [giVersionsListByLocationSample.ts][giversionslistbylocationsample] | list GiVersion resources by SubscriptionLocationResource x-ms-original-file: 2025-03-01/GiVersions_ListByLocation_MaximumSet_Gen.json | -| [operationsListSample.ts][operationslistsample] | list the operations for the provider x-ms-original-file: 2025-03-01/operations_list.json | -| [oracleSubscriptionsAddAzureSubscriptionsSample.ts][oraclesubscriptionsaddazuresubscriptionssample] | add Azure Subscriptions x-ms-original-file: 2025-03-01/oracleSubscriptions_addAzureSubscriptions.json | -| [oracleSubscriptionsListActivationLinksSample.ts][oraclesubscriptionslistactivationlinkssample] | list Activation Links x-ms-original-file: 2025-03-01/oracleSubscriptions_listActivationLinks.json | -| [oracleSubscriptionsListCloudAccountDetailsSample.ts][oraclesubscriptionslistcloudaccountdetailssample] | list Cloud Account Details x-ms-original-file: 2025-03-01/oracleSubscriptions_listCloudAccountDetails.json | -| [oracleSubscriptionsListSaasSubscriptionDetailsSample.ts][oraclesubscriptionslistsaassubscriptiondetailssample] | list Saas Subscription Details x-ms-original-file: 2025-03-01/oracleSubscriptions_listSaasSubscriptionDetails.json | -| [oracleSubscriptionsUpdateSample.ts][oraclesubscriptionsupdatesample] | update a OracleSubscription x-ms-original-file: 2025-03-01/oracleSubscriptions_patch.json | +| **File Name** | **Description** | +| ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [autonomousDatabaseBackupsListByParentSample.ts][autonomousdatabasebackupslistbyparentsample] | list AutonomousDatabaseBackup resources by AutonomousDatabase x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_ListByParent_MaximumSet_Gen.json | +| [autonomousDatabaseBackupsUpdateSample.ts][autonomousdatabasebackupsupdatesample] | update a AutonomousDatabaseBackup x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_Update_MaximumSet_Gen.json | +| [autonomousDatabasesActionSample.ts][autonomousdatabasesactionsample] | perform Lifecycle Management Action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_Action_MaximumSet_Gen.json | +| [autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts][autonomousdatabaseschangedisasterrecoveryconfigurationsample] | perform ChangeDisasterRecoveryConfiguration action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_ChangeDisasterRecoveryConfiguration_MaximumSet_Gen.json | +| [autonomousDatabasesFailoverSample.ts][autonomousdatabasesfailoversample] | perform failover action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_Failover_MaximumSet_Gen.json | +| [autonomousDatabasesGenerateWalletSample.ts][autonomousdatabasesgeneratewalletsample] | generate wallet action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_GenerateWallet_MaximumSet_Gen.json | +| [autonomousDatabasesListByResourceGroupSample.ts][autonomousdatabaseslistbyresourcegroupsample] | list AutonomousDatabase resources by resource group x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MaximumSet_Gen.json | +| [autonomousDatabasesRestoreSample.ts][autonomousdatabasesrestoresample] | restores an Autonomous Database based on the provided request parameters. x-ms-original-file: 2025-09-01/AutonomousDatabases_Restore_MaximumSet_Gen.json | +| [autonomousDatabasesShrinkSample.ts][autonomousdatabasesshrinksample] | this operation shrinks the current allocated storage down to the current actual used data storage. x-ms-original-file: 2025-09-01/AutonomousDatabases_Shrink_MaximumSet_Gen.json | +| [autonomousDatabasesSwitchoverSample.ts][autonomousdatabasesswitchoversample] | perform switchover action on Autonomous Database x-ms-original-file: 2025-09-01/AutonomousDatabases_Switchover_MaximumSet_Gen.json | +| [autonomousDatabasesUpdateSample.ts][autonomousdatabasesupdatesample] | update a AutonomousDatabase x-ms-original-file: 2025-09-01/AutonomousDatabases_Update_MaximumSet_Gen.json | +| [cloudExadataInfrastructuresAddStorageCapacitySample.ts][cloudexadatainfrastructuresaddstoragecapacitysample] | perform add storage capacity on exadata infra x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MaximumSet_Gen.json | +| [cloudExadataInfrastructuresConfigureExascaleSample.ts][cloudexadatainfrastructuresconfigureexascalesample] | configures Exascale on Cloud exadata infrastructure resource x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MaximumSet_Gen.json | +| [cloudVmClustersAddVmsSample.ts][cloudvmclustersaddvmssample] | add VMs to the VM Cluster x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MaximumSet_Gen.json | +| [cloudVmClustersListPrivateIpAddressesSample.ts][cloudvmclusterslistprivateipaddressessample] | list Private IP Addresses by the provided filter x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MaximumSet_Gen.json | +| [cloudVmClustersRemoveVmsSample.ts][cloudvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MaximumSet_Gen.json | +| [dbNodesActionSample.ts][dbnodesactionsample] | vM actions on DbNode of VM Cluster by the provided filter x-ms-original-file: 2025-09-01/DbNodes_Action_MaximumSet_Gen.json | +| [dbNodesListByParentSample.ts][dbnodeslistbyparentsample] | list DbNode resources by CloudVmCluster x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MaximumSet_Gen.json | +| [dbServersListByParentSample.ts][dbserverslistbyparentsample] | list DbServer resources by CloudExadataInfrastructure x-ms-original-file: 2025-09-01/DbServers_ListByParent_MaximumSet_Gen.json | +| [dbSystemShapesListByLocationSample.ts][dbsystemshapeslistbylocationsample] | list DbSystemShape resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MaximumSet_Gen.json | +| [dbVersionsListByLocationSample.ts][dbversionslistbylocationsample] | list DbVersion resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/DbVersions_ListByLocation_MaximumSet_Gen.json | +| [exadbVmClustersRemoveVmsSample.ts][exadbvmclustersremovevmssample] | remove VMs from the VM Cluster x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json | +| [exascaleDbNodesActionSample.ts][exascaledbnodesactionsample] | vM actions on DbNode of ExadbVmCluster by the provided filter x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MaximumSet_Gen.json | +| [exascaleDbNodesListByParentSample.ts][exascaledbnodeslistbyparentsample] | list ExascaleDbNode resources by ExadbVmCluster x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsCreateSample.ts][exascaledbstoragevaultscreatesample] | create a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsDeleteSample.ts][exascaledbstoragevaultsdeletesample] | delete a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsGetSample.ts][exascaledbstoragevaultsgetsample] | get a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsListByResourceGroupSample.ts][exascaledbstoragevaultslistbyresourcegroupsample] | list ExascaleDbStorageVault resources by resource group x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsListBySubscriptionSample.ts][exascaledbstoragevaultslistbysubscriptionsample] | list ExascaleDbStorageVault resources by subscription ID x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json | +| [exascaleDbStorageVaultsUpdateSample.ts][exascaledbstoragevaultsupdatesample] | update a ExascaleDbStorageVault x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json | +| [flexComponentsGetSample.ts][flexcomponentsgetsample] | get a FlexComponent x-ms-original-file: 2025-09-01/FlexComponents_Get_MaximumSet_Gen.json | +| [flexComponentsListByParentSample.ts][flexcomponentslistbyparentsample] | list FlexComponent resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MaximumSet_Gen.json | +| [giMinorVersionsGetSample.ts][giminorversionsgetsample] | get a GiMinorVersion x-ms-original-file: 2025-09-01/GiMinorVersions_Get_MaximumSet_Gen.json | +| [giMinorVersionsListByParentSample.ts][giminorversionslistbyparentsample] | list GiMinorVersion resources by GiVersion x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json | +| [giVersionsListByLocationSample.ts][giversionslistbylocationsample] | list GiVersion resources by SubscriptionLocationResource x-ms-original-file: 2025-09-01/GiVersions_ListByLocation_MaximumSet_Gen.json | +| [operationsListSample.ts][operationslistsample] | list the operations for the provider x-ms-original-file: 2025-09-01/Operations_List_MaximumSet_Gen.json | +| [oracleSubscriptionsAddAzureSubscriptionsSample.ts][oraclesubscriptionsaddazuresubscriptionssample] | add Azure Subscriptions x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MaximumSet_Gen.json | +| [oracleSubscriptionsListActivationLinksSample.ts][oraclesubscriptionslistactivationlinkssample] | list Activation Links x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MaximumSet_Gen.json | +| [oracleSubscriptionsListCloudAccountDetailsSample.ts][oraclesubscriptionslistcloudaccountdetailssample] | list Cloud Account Details x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MaximumSet_Gen.json | +| [oracleSubscriptionsListSaasSubscriptionDetailsSample.ts][oraclesubscriptionslistsaassubscriptiondetailssample] | list Saas Subscription Details x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MaximumSet_Gen.json | +| [oracleSubscriptionsUpdateSample.ts][oraclesubscriptionsupdatesample] | update a OracleSubscription x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MaximumSet_Gen.json | +| [virtualNetworkAddressesListByParentSample.ts][virtualnetworkaddresseslistbyparentsample] | list VirtualNetworkAddress resources by CloudVmCluster x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MaximumSet_Gen.json | ## Prerequisites @@ -76,53 +84,61 @@ npm run build 4. Run whichever samples you like (note that some samples may require additional setup, see the table above): ```bash -node dist/autonomousDatabaseBackupsUpdateSample.js +node dist/autonomousDatabaseBackupsListByParentSample.js ``` Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/autonomousDatabaseBackupsUpdateSample.js +npx dev-tool run vendored cross-env node dist/autonomousDatabaseBackupsListByParentSample.js ``` ## Next Steps Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. -[autonomousdatabasebackupsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabaseBackupsUpdateSample.ts -[autonomousdatabaseschangedisasterrecoveryconfigurationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts -[autonomousdatabasesfailoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesFailoverSample.ts -[autonomousdatabasesgeneratewalletsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesGenerateWalletSample.ts -[autonomousdatabaseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesListByResourceGroupSample.ts -[autonomousdatabasesrestoresample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesRestoreSample.ts -[autonomousdatabasesswitchoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesSwitchoverSample.ts -[autonomousdatabasesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesUpdateSample.ts -[cloudexadatainfrastructuresaddstoragecapacitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts -[cloudvmclustersaddvmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersAddVmsSample.ts -[cloudvmclusterslistprivateipaddressessample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts -[cloudvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/cloudVmClustersRemoveVmsSample.ts -[dbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbNodesActionSample.ts -[dbsystemshapeslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbSystemShapesListByLocationSample.ts -[exadbvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exadbVmClustersRemoveVmsSample.ts -[exascaledbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesActionSample.ts -[exascaledbnodeslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesListByParentSample.ts -[exascaledbstoragevaultscreatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsCreateSample.ts -[exascaledbstoragevaultsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsDeleteSample.ts -[exascaledbstoragevaultsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsGetSample.ts -[exascaledbstoragevaultslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts -[exascaledbstoragevaultslistbysubscriptionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts -[exascaledbstoragevaultsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsUpdateSample.ts -[flexcomponentsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsGetSample.ts -[flexcomponentslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsListByParentSample.ts -[giminorversionsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsGetSample.ts -[giminorversionslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsListByParentSample.ts -[giversionslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giVersionsListByLocationSample.ts -[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/operationsListSample.ts -[oraclesubscriptionsaddazuresubscriptionssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts -[oraclesubscriptionslistactivationlinkssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListActivationLinksSample.ts -[oraclesubscriptionslistcloudaccountdetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts -[oraclesubscriptionslistsaassubscriptiondetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts -[oraclesubscriptionsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/oracleSubscriptionsUpdateSample.ts +[autonomousdatabasebackupslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsListByParentSample.ts +[autonomousdatabasebackupsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsUpdateSample.ts +[autonomousdatabasesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesActionSample.ts +[autonomousdatabaseschangedisasterrecoveryconfigurationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts +[autonomousdatabasesfailoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesFailoverSample.ts +[autonomousdatabasesgeneratewalletsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesGenerateWalletSample.ts +[autonomousdatabaseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesListByResourceGroupSample.ts +[autonomousdatabasesrestoresample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesRestoreSample.ts +[autonomousdatabasesshrinksample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesShrinkSample.ts +[autonomousdatabasesswitchoversample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesSwitchoverSample.ts +[autonomousdatabasesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesUpdateSample.ts +[cloudexadatainfrastructuresaddstoragecapacitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts +[cloudexadatainfrastructuresconfigureexascalesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresConfigureExascaleSample.ts +[cloudvmclustersaddvmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersAddVmsSample.ts +[cloudvmclusterslistprivateipaddressessample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts +[cloudvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersRemoveVmsSample.ts +[dbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesActionSample.ts +[dbnodeslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesListByParentSample.ts +[dbserverslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbServersListByParentSample.ts +[dbsystemshapeslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbSystemShapesListByLocationSample.ts +[dbversionslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbVersionsListByLocationSample.ts +[exadbvmclustersremovevmssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exadbVmClustersRemoveVmsSample.ts +[exascaledbnodesactionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesActionSample.ts +[exascaledbnodeslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesListByParentSample.ts +[exascaledbstoragevaultscreatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsCreateSample.ts +[exascaledbstoragevaultsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsDeleteSample.ts +[exascaledbstoragevaultsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsGetSample.ts +[exascaledbstoragevaultslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts +[exascaledbstoragevaultslistbysubscriptionsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts +[exascaledbstoragevaultsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsUpdateSample.ts +[flexcomponentsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsGetSample.ts +[flexcomponentslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsListByParentSample.ts +[giminorversionsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsGetSample.ts +[giminorversionslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsListByParentSample.ts +[giversionslistbylocationsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giVersionsListByLocationSample.ts +[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/operationsListSample.ts +[oraclesubscriptionsaddazuresubscriptionssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts +[oraclesubscriptionslistactivationlinkssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListActivationLinksSample.ts +[oraclesubscriptionslistcloudaccountdetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts +[oraclesubscriptionslistsaassubscriptiondetailssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts +[oraclesubscriptionsupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsUpdateSample.ts +[virtualnetworkaddresseslistbyparentsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/virtualNetworkAddressesListByParentSample.ts [apiref]: https://learn.microsoft.com/javascript/api/@azure/arm-oracledatabase?view=azure-node-preview [freesub]: https://azure.microsoft.com/free/ [package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/oracledatabase/arm-oracledatabase/README.md diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/package.json b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/package.json similarity index 96% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/package.json rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/package.json index 304f6223a3cb..c24e7feb218e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/package.json +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/package.json @@ -32,7 +32,7 @@ "dependencies": { "@azure/arm-oracledatabase": "latest", "dotenv": "latest", - "@azure/identity": "^4.10.0" + "@azure/identity": "^4.9.0" }, "devDependencies": { "@types/node": "^20.0.0", diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/sample.env b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/sample.env similarity index 100% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/sample.env rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/sample.env diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbSystemShapesListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsListByParentSample.ts similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbSystemShapesListByLocationSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsListByParentSample.ts index 22fa200ed02c..0d6f89ce7db7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/dbSystemShapesListByLocationSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsListByParentSample.ts @@ -5,17 +5,20 @@ import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; import { DefaultAzureCredential } from "@azure/identity"; /** - * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * This sample demonstrates how to list AutonomousDatabaseBackup resources by AutonomousDatabase * - * @summary list DbSystemShape resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/dbSystemShapes_listByLocation.json + * @summary list AutonomousDatabaseBackup resources by AutonomousDatabase + * x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_ListByParent_MaximumSet_Gen.json */ -async function dbSystemShapesListByLocation(): Promise { +async function listAutonomousDatabaseBackupsByAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.dbSystemShapes.listByLocation("eastus")) { + for await (const item of client.autonomousDatabaseBackups.listByParent( + "rgopenapi", + "databasedb1", + )) { resArray.push(item); } @@ -23,7 +26,7 @@ async function dbSystemShapesListByLocation(): Promise { } async function main(): Promise { - await dbSystemShapesListByLocation(); + await listAutonomousDatabaseBackupsByAutonomousDatabaseGeneratedByMaximumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabaseBackupsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsUpdateSample.ts similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabaseBackupsUpdateSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsUpdateSample.ts index 9af896704060..00bf83eb8eb7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabaseBackupsUpdateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabaseBackupsUpdateSample.ts @@ -8,7 +8,26 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to update a AutonomousDatabaseBackup * * @summary update a AutonomousDatabaseBackup - * x-ms-original-file: 2025-03-01/autonomousDatabaseBackup_patch.json + * x-ms-original-file: 2025-09-01/AutonomousDatabaseBackups_Update_MaximumSet_Gen.json + */ +async function patchAutonomousDatabaseBackupGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabaseBackups.update( + "rgopenapi", + "databasedb1", + "1711644130", + { properties: { retentionPeriodInDays: 90 } }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to update a AutonomousDatabaseBackup + * + * @summary update a AutonomousDatabaseBackup + * x-ms-original-file: 2025-09-01/autonomousDatabaseBackup_patch.json */ async function autonomousDatabaseBackupsUpdate(): Promise { const credential = new DefaultAzureCredential(); @@ -24,6 +43,7 @@ async function autonomousDatabaseBackupsUpdate(): Promise { } async function main(): Promise { + await patchAutonomousDatabaseBackupGeneratedByMaximumSetRule(); await autonomousDatabaseBackupsUpdate(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesActionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesActionSample.ts similarity index 54% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesActionSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesActionSample.ts index ce8b3482fbd8..e33db88d2e42 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesActionSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesActionSample.ts @@ -5,23 +5,23 @@ import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; import { DefaultAzureCredential } from "@azure/identity"; /** - * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter + * This sample demonstrates how to perform Lifecycle Management Action on Autonomous Database * - * @summary vM actions on DbNode of ExadbVmCluster by the provided filter - * x-ms-original-file: 2025-03-01/ExascaleDbNodes_Action_MaximumSet_Gen.json + * @summary perform Lifecycle Management Action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Action_MaximumSet_Gen.json */ -async function exascaleDbNodesActionMaximumSet(): Promise { +async function autonomousDatabasesActionMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbNodes.action("rgopenapi", "vmClusterName", "dbNodeName", { + const result = await client.autonomousDatabases.action("rgopenapi", "databasedb1", { action: "Start", }); console.log(result); } async function main(): Promise { - await exascaleDbNodesActionMaximumSet(); + await autonomousDatabasesActionMaximumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts new file mode 100644 index 000000000000..e513598be067 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesChangeDisasterRecoveryConfigurationSample.ts @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * + * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ChangeDisasterRecoveryConfiguration_MaximumSet_Gen.json + */ +async function performChangeDisasterRecoveryConfigurationActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( + "rgopenapi", + "databasedb1", + { + disasterRecoveryType: "Adg", + isReplicateAutomaticBackups: true, + timeSnapshotStandbyEnabledTill: new Date("2025-08-01T04:32:58.725Z"), + isSnapshotStandby: true, + }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * + * @summary perform ChangeDisasterRecoveryConfiguration action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_changeDisasterRecoveryConfiguration.json + */ +async function autonomousDatabasesChangeDisasterRecoveryConfiguration(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.changeDisasterRecoveryConfiguration( + "rg000", + "databasedb1", + { disasterRecoveryType: "Adg", isReplicateAutomaticBackups: false }, + ); + console.log(result); +} + +async function main(): Promise { + await performChangeDisasterRecoveryConfigurationActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesChangeDisasterRecoveryConfiguration(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesFailoverSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesFailoverSample.ts new file mode 100644 index 000000000000..73f9ca5cd903 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesFailoverSample.ts @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to perform failover action on Autonomous Database + * + * @summary perform failover action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Failover_MaximumSet_Gen.json + */ +async function performFailoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.failover("rgopenapi", "databasedb1*", { + peerDbId: "peerDbId", + peerDbOcid: "yozpqyefqhirkybmzwgoidyl", + peerDbLocation: "cxlzbzbfzi", + }); + console.log(result); +} + +/** + * This sample demonstrates how to perform failover action on Autonomous Database + * + * @summary perform failover action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_failover.json + */ +async function autonomousDatabasesFailover(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.failover("rg000", "databasedb1", { + peerDbId: "peerDbId", + }); + console.log(result); +} + +async function main(): Promise { + await performFailoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesFailover(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesGenerateWalletSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesGenerateWalletSample.ts similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesGenerateWalletSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesGenerateWalletSample.ts index 6568ba8316b7..a8ca543b36df 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesGenerateWalletSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesGenerateWalletSample.ts @@ -8,7 +8,25 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to generate wallet action on Autonomous Database * * @summary generate wallet action on Autonomous Database - * x-ms-original-file: 2025-03-01/autonomousDatabase_generateWallet.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_GenerateWallet_MaximumSet_Gen.json + */ +async function generateWalletActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.generateWallet("rgopenapi", "databasedb1", { + generateType: "Single", + isRegional: true, + password: "********", + }); + console.log(result); +} + +/** + * This sample demonstrates how to generate wallet action on Autonomous Database + * + * @summary generate wallet action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_generateWallet.json */ async function autonomousDatabasesGenerateWallet(): Promise { const credential = new DefaultAzureCredential(); @@ -23,6 +41,7 @@ async function autonomousDatabasesGenerateWallet(): Promise { } async function main(): Promise { + await generateWalletActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesGenerateWallet(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesListByResourceGroupSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesListByResourceGroupSample.ts new file mode 100644 index 000000000000..e7caa1caec4b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesListByResourceGroupSample.ts @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MaximumSet_Gen.json + */ +async function listAutonomousDatabaseByResourceGroupGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/AutonomousDatabases_ListByResourceGroup_MinimumSet_Gen.json + */ +async function listAutonomousDatabaseByResourceGroupGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list AutonomousDatabase resources by resource group + * + * @summary list AutonomousDatabase resources by resource group + * x-ms-original-file: 2025-09-01/autonomousDatabase_listByResourceGroup.json + */ +async function autonomousDatabasesListByResourceGroup(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.autonomousDatabases.listByResourceGroup("rg000")) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listAutonomousDatabaseByResourceGroupGeneratedByMaximumSetRule(); + await listAutonomousDatabaseByResourceGroupGeneratedByMinimumSetRule(); + await autonomousDatabasesListByResourceGroup(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesRestoreSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesRestoreSample.ts similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesRestoreSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesRestoreSample.ts index 941aa5896f1f..8e44c1ba651d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/autonomousDatabasesRestoreSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesRestoreSample.ts @@ -8,7 +8,23 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to restores an Autonomous Database based on the provided request parameters. * * @summary restores an Autonomous Database based on the provided request parameters. - * x-ms-original-file: 2025-03-01/autonomousDatabase_restore.json + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Restore_MaximumSet_Gen.json + */ +async function performRestoreActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.restore("rgopenapi", "database1", { + timestamp: new Date("2024-04-23T00:00:00.000Z"), + }); + console.log(result); +} + +/** + * This sample demonstrates how to restores an Autonomous Database based on the provided request parameters. + * + * @summary restores an Autonomous Database based on the provided request parameters. + * x-ms-original-file: 2025-09-01/autonomousDatabase_restore.json */ async function autonomousDatabasesRestore(): Promise { const credential = new DefaultAzureCredential(); @@ -21,6 +37,7 @@ async function autonomousDatabasesRestore(): Promise { } async function main(): Promise { + await performRestoreActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); await autonomousDatabasesRestore(); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesShrinkSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesShrinkSample.ts new file mode 100644 index 000000000000..f1ba1959e637 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesShrinkSample.ts @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to this operation shrinks the current allocated storage down to the current actual used data storage. + * + * @summary this operation shrinks the current allocated storage down to the current actual used data storage. + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Shrink_MaximumSet_Gen.json + */ +async function performShrinkActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.shrink("rgopenapi", "database1"); + console.log(result); +} + +async function main(): Promise { + await performShrinkActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesSwitchoverSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesSwitchoverSample.ts new file mode 100644 index 000000000000..5741a83d6a5e --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesSwitchoverSample.ts @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to perform switchover action on Autonomous Database + * + * @summary perform switchover action on Autonomous Database + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Switchover_MaximumSet_Gen.json + */ +async function performSwitchoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.switchover("rgopenapi", "databasedb1", { + peerDbId: "peerDbId", + peerDbOcid: "yozpqyefqhirkybmzwgoidyl", + peerDbLocation: "cxlzbzbfzi", + }); + console.log(result); +} + +/** + * This sample demonstrates how to perform switchover action on Autonomous Database + * + * @summary perform switchover action on Autonomous Database + * x-ms-original-file: 2025-09-01/autonomousDatabase_switchover.json + */ +async function autonomousDatabasesSwitchover(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.switchover("rg000", "databasedb1", { + peerDbId: "peerDbId", + }); + console.log(result); +} + +async function main(): Promise { + await performSwitchoverActionOnAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesSwitchover(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesUpdateSample.ts new file mode 100644 index 000000000000..4acb70a3fe8c --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/autonomousDatabasesUpdateSample.ts @@ -0,0 +1,80 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to update a AutonomousDatabase + * + * @summary update a AutonomousDatabase + * x-ms-original-file: 2025-09-01/AutonomousDatabases_Update_MaximumSet_Gen.json + */ +async function patchAutonomousDatabaseGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.update("rgopenapi", "databasedb1", { + tags: { key9827: "bygpoqozrwfyiootncgcqq" }, + properties: { + adminPassword: "", + autonomousMaintenanceScheduleType: "Early", + computeCount: 56.1, + cpuCoreCount: 45, + customerContacts: [{ email: "dummyemail@microsoft.com" }], + dataStorageSizeInTbs: 133, + dataStorageSizeInGbs: 175271, + displayName: "lrdrjpyyvufnxdzpwvlkmfukpstrjftdxcejcxtnqhxqbhvtzeiokllnspotsqeggddxkjjtf", + isAutoScalingEnabled: true, + isAutoScalingForStorageEnabled: true, + peerDbId: "qmpfwtvpfvbgmulethqznsyyjlpxmyfqfanrymzqsgraavtmlqqbexpzguyqybngoupbshlzpxv", + isLocalDataGuardEnabled: true, + isMtlsConnectionRequired: true, + licenseModel: "LicenseIncluded", + scheduledOperationsList: [ + { + dayOfWeek: { name: "Monday" }, + scheduledStartTime: "lwwvkazgmfremfwhckfb", + scheduledStopTime: "hjwagzxijpiaogulmnmbuqakpqxhkjvaypjqnvbvtjddc", + }, + ], + databaseEdition: "StandardEdition", + longTermBackupSchedule: { + repeatCadence: "OneTime", + timeOfBackup: new Date("2025-08-01T04:32:58.715Z"), + retentionPeriodInDays: 188, + isDisabled: true, + }, + localAdgAutoFailoverMaxDataLossLimit: 212, + openMode: "ReadOnly", + permissionLevel: "Restricted", + role: "Primary", + backupRetentionPeriodInDays: 12, + whitelistedIps: [ + "kfierlppwurtqrhfxwgfgrnqtmvraignzwsddwmpdijeveuevuoejfmbjvpnlrmmdflilxcwkkzvdofctsdjfxrrrwctihhnchtrouauesqbmlcqhzwnppnhrtitecenlfyshassvajukbwxudhlwixkvkgsessvshcwmleoqujeemwenhwlsccbcjnnviugzgylsxkssalqoicatcvkahogdvweymhdxboyqwhaxuzlmrdbvgbnnetobkbwygcsflzanwknlybvvzgjzjirpfrksbxwgllgfxwdflcisvxpkjecpgdaxccqkzxofedkrawvhzeabmunpykwd", + ], + }, + }); + console.log(result); +} + +/** + * This sample demonstrates how to update a AutonomousDatabase + * + * @summary update a AutonomousDatabase + * x-ms-original-file: 2025-09-01/autonomousDatabase_patch.json + */ +async function autonomousDatabasesUpdate(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.autonomousDatabases.update("rg000", "databasedb1", {}); + console.log(result); +} + +async function main(): Promise { + await patchAutonomousDatabaseGeneratedByMaximumSetRule(); + await autonomousDatabasesUpdate(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts new file mode 100644 index 000000000000..8698cc245cb2 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresAddStorageCapacitySample.ts @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MaximumSet_Gen.json + */ +async function performAddStorageCapacityOnExadataInfraGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + ); + console.log(result); +} + +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_AddStorageCapacity_MinimumSet_Gen.json + */ +async function performAddStorageCapacityOnExadataInfraGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + ); + console.log(result); +} + +/** + * This sample demonstrates how to perform add storage capacity on exadata infra + * + * @summary perform add storage capacity on exadata infra + * x-ms-original-file: 2025-09-01/exaInfra_addStorageCapacity.json + */ +async function cloudExadataInfrastructuresAddStorageCapacity(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.addStorageCapacity("rg000", "infra1"); + console.log(result); +} + +async function main(): Promise { + await performAddStorageCapacityOnExadataInfraGeneratedByMaximumSetRule(); + await performAddStorageCapacityOnExadataInfraGeneratedByMinimumSetRule(); + await cloudExadataInfrastructuresAddStorageCapacity(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresConfigureExascaleSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresConfigureExascaleSample.ts new file mode 100644 index 000000000000..13190b9ac080 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudExadataInfrastructuresConfigureExascaleSample.ts @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to configures Exascale on Cloud exadata infrastructure resource + * + * @summary configures Exascale on Cloud exadata infrastructure resource + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MaximumSet_Gen.json + */ +async function cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.configureExascale( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + { totalStorageInGbs: 19 }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to configures Exascale on Cloud exadata infrastructure resource + * + * @summary configures Exascale on Cloud exadata infrastructure resource + * x-ms-original-file: 2025-09-01/CloudExadataInfrastructures_ConfigureExascale_MinimumSet_Gen.json + */ +async function cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudExadataInfrastructures.configureExascale( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + { totalStorageInGbs: 19 }, + ); + console.log(result); +} + +async function main(): Promise { + await cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMaximumSetRule(); + await cloudExadataInfrastructuresConfigureExascaleMaximumSetGenGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersAddVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersAddVmsSample.ts new file mode 100644 index 000000000000..9cdd6cf5b0c5 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersAddVmsSample.ts @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MaximumSet_Gen.json + */ +async function addVMsToVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_AddVms_MinimumSet_Gen.json + */ +async function addVMsToVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to add VMs to the VM Cluster + * + * @summary add VMs to the VM Cluster + * x-ms-original-file: 2025-09-01/vmClusters_addVms.json + */ +async function cloudVmClustersAddVms(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.addVms("rg000", "cluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +async function main(): Promise { + await addVMsToVMClusterGeneratedByMaximumSetRule(); + await addVMsToVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersAddVms(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts new file mode 100644 index 000000000000..19b5411351d2 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersListPrivateIpAddressesSample.ts @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MaximumSet_Gen.json + */ +async function listPrivateIPAddressesForVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses( + "rgopenapi", + "cloudvmcluster1", + { subnetId: "ocid1..aaaaaa", vnicId: "ocid1..aaaaa" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/CloudVmClusters_ListPrivateIpAddresses_MinimumSet_Gen.json + */ +async function listPrivateIPAddressesForVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses( + "rgopenapi", + "cloudvmcluster1", + { subnetId: "ocid1..aaaaaa", vnicId: "ocid1..aaaaa" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to list Private IP Addresses by the provided filter + * + * @summary list Private IP Addresses by the provided filter + * x-ms-original-file: 2025-09-01/vmClusters_listPrivateIpAddresses.json + */ +async function cloudVmClustersListPrivateIpAddresses(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.listPrivateIpAddresses("rg000", "cluster1", { + subnetId: "ocid1..aaaaaa", + vnicId: "ocid1..aaaaa", + }); + console.log(result); +} + +async function main(): Promise { + await listPrivateIPAddressesForVMClusterGeneratedByMaximumSetRule(); + await listPrivateIPAddressesForVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersListPrivateIpAddresses(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersRemoveVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersRemoveVmsSample.ts new file mode 100644 index 000000000000..5329de4ad7a5 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/cloudVmClustersRemoveVmsSample.ts @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MaximumSet_Gen.json + */ +async function removeVMsFromVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/CloudVmClusters_RemoveVms_MinimumSet_Gen.json + */ +async function removeVMsFromVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rgopenapi", "cloudvmcluster1", { + dbServers: ["ocid1..aaaa", "ocid1..aaaaaa"], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/vmClusters_removeVms.json + */ +async function cloudVmClustersRemoveVms(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.cloudVmClusters.removeVms("rg000", "cluster1", { + dbServers: ["ocid1..aaaa"], + }); + console.log(result); +} + +async function main(): Promise { + await removeVMsFromVMClusterGeneratedByMaximumSetRule(); + await removeVMsFromVMClusterGeneratedByMinimumSetRule(); + await cloudVmClustersRemoveVms(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesActionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesActionSample.ts new file mode 100644 index 000000000000..1d02cf8e3413 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesActionSample.ts @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/DbNodes_Action_MaximumSet_Gen.json + */ +async function vmActionsOnDbNodesOfVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action("rgopenapi", "cloudvmcluster1", "abciderewdidsereq", { + action: "Start", + }); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/DbNodes_Action_MinimumSet_Gen.json + */ +async function vmActionsOnDbNodesOfVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action( + "rgopenapi", + "cloudvmcluster1", + "adfedefeewwevkieviect", + { action: "Start" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of VM Cluster by the provided filter + * + * @summary vM actions on DbNode of VM Cluster by the provided filter + * x-ms-original-file: 2025-09-01/dbNodes_action.json + */ +async function dbNodesAction(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.dbNodes.action("rg000", "cluster1", "ocid1....aaaaaa", { + action: "Start", + }); + console.log(result); +} + +async function main(): Promise { + await vmActionsOnDbNodesOfVMClusterGeneratedByMaximumSetRule(); + await vmActionsOnDbNodesOfVMClusterGeneratedByMinimumSetRule(); + await dbNodesAction(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesListByParentSample.ts new file mode 100644 index 000000000000..0fdb34d70046 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbNodesListByParentSample.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbNode resources by CloudVmCluster + * + * @summary list DbNode resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MaximumSet_Gen.json + */ +async function listDbNodesByVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbNodes.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbNode resources by CloudVmCluster + * + * @summary list DbNode resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/DbNodes_ListByParent_MinimumSet_Gen.json + */ +async function listDbNodesByVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbNodes.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listDbNodesByVMClusterGeneratedByMaximumSetRule(); + await listDbNodesByVMClusterGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbServersListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbServersListByParentSample.ts new file mode 100644 index 000000000000..2c05fddb0762 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbServersListByParentSample.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbServer resources by CloudExadataInfrastructure + * + * @summary list DbServer resources by CloudExadataInfrastructure + * x-ms-original-file: 2025-09-01/DbServers_ListByParent_MaximumSet_Gen.json + */ +async function listDbServersByExadataInfrastructureGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbServers.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbServer resources by CloudExadataInfrastructure + * + * @summary list DbServer resources by CloudExadataInfrastructure + * x-ms-original-file: 2025-09-01/DbServers_ListByParent_MinimumSet_Gen.json + */ +async function listDbServersByExadataInfrastructureGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbServers.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listDbServersByExadataInfrastructureGeneratedByMaximumSetRule(); + await listDbServersByExadataInfrastructureGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbSystemShapesListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbSystemShapesListByLocationSample.ts new file mode 100644 index 000000000000..0823a6816ec7 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbSystemShapesListByLocationSample.ts @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MaximumSet_Gen.json + */ +async function listDbSystemShapesByLocationGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus", { + zone: "ymedsvqavemtixp", + })) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbSystemShapes_ListByLocation_MinimumSet_Gen.json + */ +async function listDbSystemShapesByLocationGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list DbSystemShape resources by SubscriptionLocationResource + * + * @summary list DbSystemShape resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/dbSystemShapes_listByLocation.json + */ +async function dbSystemShapesListByLocation(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbSystemShapes.listByLocation("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listDbSystemShapesByLocationGeneratedByMaximumSetRule(); + await listDbSystemShapesByLocationGeneratedByMinimumSetRule(); + await dbSystemShapesListByLocation(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbVersionsListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbVersionsListByLocationSample.ts new file mode 100644 index 000000000000..95276511d2fb --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/dbVersionsListByLocationSample.ts @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list DbVersion resources by SubscriptionLocationResource + * + * @summary list DbVersion resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/DbVersions_ListByLocation_MaximumSet_Gen.json + */ +async function dbVersionsListByLocationMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.dbVersions.listByLocation("eastus", { + dbSystemShape: "VM.Standard.x86", + dbSystemId: + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Oracle.Database/dbSystems/dbsystem1", + storageManagement: "LVM", + isUpgradeSupported: true, + isDatabaseSoftwareImageSupported: true, + shapeFamily: "VIRTUALMACHINE", + })) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await dbVersionsListByLocationMaximumSet(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exadbVmClustersRemoveVmsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exadbVmClustersRemoveVmsSample.ts similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exadbVmClustersRemoveVmsSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exadbVmClustersRemoveVmsSample.ts index f4547a182147..e62e0fb4c344 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exadbVmClustersRemoveVmsSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exadbVmClustersRemoveVmsSample.ts @@ -8,13 +8,34 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to remove VMs from the VM Cluster * * @summary remove VMs from the VM Cluster - * x-ms-original-file: 2025-03-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MaximumSet_Gen.json */ async function exadbVmClustersRemoveVmsMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exadbVmClusters.removeVms("rgopenapi", "vmClusterName", { + const result = await client.exadbVmClusters.removeVms("rgopenapi", "exadbVmClusterName1", { + dbNodes: [ + { + dbNodeId: + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Oracle.Database/exadbVmClusters/vmCluster/dbNodes/dbNodeName", + }, + ], + }); + console.log(result); +} + +/** + * This sample demonstrates how to remove VMs from the VM Cluster + * + * @summary remove VMs from the VM Cluster + * x-ms-original-file: 2025-09-01/ExadbVmClusters_RemoveVms_MinimumSet_Gen.json + */ +async function exadbVmClustersRemoveVmsMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exadbVmClusters.removeVms("rgopenapi", "vmCluster1", { dbNodes: [ { dbNodeId: @@ -27,6 +48,7 @@ async function exadbVmClustersRemoveVmsMaximumSet(): Promise { async function main(): Promise { await exadbVmClustersRemoveVmsMaximumSet(); + await exadbVmClustersRemoveVmsMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesActionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesActionSample.ts new file mode 100644 index 000000000000..d514ddcadc81 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesActionSample.ts @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter + * + * @summary vM actions on DbNode of ExadbVmCluster by the provided filter + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MaximumSet_Gen.json + */ +async function exascaleDbNodesActionMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbNodes.action( + "rgopenapi", + "exadbvmcluster1", + "exascaledbnode1", + { action: "Start" }, + ); + console.log(result); +} + +/** + * This sample demonstrates how to vM actions on DbNode of ExadbVmCluster by the provided filter + * + * @summary vM actions on DbNode of ExadbVmCluster by the provided filter + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_Action_MinimumSet_Gen.json + */ +async function exascaleDbNodesActionMinimumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbNodes.action( + "rgopenapi", + "exadbvmcluster1", + "exascaledbnode1", + { action: "Start" }, + ); + console.log(result); +} + +async function main(): Promise { + await exascaleDbNodesActionMaximumSet(); + await exascaleDbNodesActionMinimumSet(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesListByParentSample.ts similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesListByParentSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesListByParentSample.ts index ac8ee4a52afe..e3aa65600f09 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbNodesListByParentSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbNodesListByParentSample.ts @@ -8,14 +8,32 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to list ExascaleDbNode resources by ExadbVmCluster * * @summary list ExascaleDbNode resources by ExadbVmCluster - * x-ms-original-file: 2025-03-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MaximumSet_Gen.json */ async function exascaleDbNodesListByParentMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmClusterName")) { + for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmcluster")) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list ExascaleDbNode resources by ExadbVmCluster + * + * @summary list ExascaleDbNode resources by ExadbVmCluster + * x-ms-original-file: 2025-09-01/ExascaleDbNodes_ListByParent_MinimumSet_Gen.json + */ +async function exascaleDbNodesListByParentMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbNodes.listByParent("rgopenapi", "vmcluster")) { resArray.push(item); } @@ -24,6 +42,7 @@ async function exascaleDbNodesListByParentMaximumSet(): Promise { async function main(): Promise { await exascaleDbNodesListByParentMaximumSet(); + await exascaleDbNodesListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsCreateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsCreateSample.ts new file mode 100644 index 000000000000..59d65eb45ad8 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsCreateSample.ts @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to create a ExascaleDbStorageVault + * + * @summary create a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MaximumSet_Gen.json + */ +async function exascaleDbStorageVaultsCreateMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.create("rgopenapi", "storagevault1", { + properties: { + additionalFlashCacheInPercent: 0, + description: + "kgqvxvtegzwyppegpvqxnlslvetbjlgveofcpjddenhbpocyzwtswaeaetqkipcxyhedsymuljalirryldlbviuvidhssyiwodacajjnbpkbvbvzwzsjctsidchalyjkievnivikwnnypaojcvhmokddstxwiqxmbfmbvglfimseguwyvibwzllggjtwejdfgezoeuvjjbsyfozswihydzuscjrqnklewongumiljeordhqlsclwlmftzdoey", + displayName: "storagevault1", + highCapacityDatabaseStorageInput: { totalSizeInGbs: 1 }, + highCapacityDatabaseStorage: { + availableSizeInGbs: 4, + totalSizeInGbs: 12, + }, + timeZone: "hyjcftlal", + lifecycleState: "Provisioning", + ocid: "ocid1.autonomousdatabase.oc1..aaaaa3klq", + }, + zones: ["npqjhyekyumfybqas"], + tags: { key4521: "rrgotvwzckepkhgkbz" }, + location: "zuoudqbvlxerpjtlfooyqlb", + }); + console.log(result); +} + +/** + * This sample demonstrates how to create a ExascaleDbStorageVault + * + * @summary create a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Create_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsCreateMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.create("rgopenapi", "storagevault1", { + location: "odxgtv", + }); + console.log(result); +} + +async function main(): Promise { + await exascaleDbStorageVaultsCreateMaximumSet(); + await exascaleDbStorageVaultsCreateMaximumSetGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsDeleteSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsDeleteSample.ts similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsDeleteSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsDeleteSample.ts index b5030e4f54d3..4e4e771da555 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsDeleteSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsDeleteSample.ts @@ -8,17 +8,31 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to delete a ExascaleDbStorageVault * * @summary delete a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsDeleteMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - await client.exascaleDbStorageVaults.delete("rgopenapi", "vmClusterName"); + await client.exascaleDbStorageVaults.delete("rgopenapi", "storagevault1"); +} + +/** + * This sample demonstrates how to delete a ExascaleDbStorageVault + * + * @summary delete a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Delete_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsDeleteMinimumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.exascaleDbStorageVaults.delete("rgopenapi", "storagevault1"); } async function main(): Promise { await exascaleDbStorageVaultsDeleteMaximumSet(); + await exascaleDbStorageVaultsDeleteMinimumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsGetSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsGetSample.ts similarity index 51% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsGetSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsGetSample.ts index 7c7150b70422..10ae208e3638 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsGetSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsGetSample.ts @@ -8,18 +8,33 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to get a ExascaleDbStorageVault * * @summary get a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsGetMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.get("rgopenapi", "vmClusterName"); + const result = await client.exascaleDbStorageVaults.get("rgopenapi", "storagevault1"); + console.log(result); +} + +/** + * This sample demonstrates how to get a ExascaleDbStorageVault + * + * @summary get a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Get_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsGetMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.get("rgopenapi", "storagevault1"); console.log(result); } async function main(): Promise { await exascaleDbStorageVaultsGetMaximumSet(); + await exascaleDbStorageVaultsGetMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts similarity index 52% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts index ce838b2229ec..a3cdec7b4a20 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListByResourceGroupSample.ts @@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to list ExascaleDbStorageVault resources by resource group * * @summary list ExascaleDbStorageVault resources by resource group - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListByResourceGroup_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsListByResourceGroupMaximumSet(): Promise { const credential = new DefaultAzureCredential(); @@ -22,8 +22,27 @@ async function exascaleDbStorageVaultsListByResourceGroupMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbStorageVaults.listByResourceGroup("rgopenapi")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main(): Promise { await exascaleDbStorageVaultsListByResourceGroupMaximumSet(); + await exascaleDbStorageVaultsListByResourceGroupMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts similarity index 52% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts index 870ac14b7635..7c231df93e3d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsListBySubscriptionSample.ts @@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to list ExascaleDbStorageVault resources by subscription ID * * @summary list ExascaleDbStorageVault resources by subscription ID - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_ListBySubscription_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsListBySubscriptionMaximumSet(): Promise { const credential = new DefaultAzureCredential(); @@ -22,8 +22,27 @@ async function exascaleDbStorageVaultsListBySubscriptionMaximumSet(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.exascaleDbStorageVaults.listBySubscription()) { + resArray.push(item); + } + + console.log(resArray); +} + async function main(): Promise { await exascaleDbStorageVaultsListBySubscriptionMaximumSet(); + await exascaleDbStorageVaultsListBySubscriptionMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsUpdateSample.ts similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsUpdateSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsUpdateSample.ts index 435083138eac..aff036d5c405 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/exascaleDbStorageVaultsUpdateSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/exascaleDbStorageVaultsUpdateSample.ts @@ -8,20 +8,35 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to update a ExascaleDbStorageVault * * @summary update a ExascaleDbStorageVault - * x-ms-original-file: 2025-03-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MaximumSet_Gen.json */ async function exascaleDbStorageVaultsUpdateMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.exascaleDbStorageVaults.update("rgopenapi", "vmClusterName", { - tags: { key6179: "ouj" }, + const result = await client.exascaleDbStorageVaults.update("rgopenapi", "storagevault1", { + tags: { key6486: "fxbuboilsiapodppdtfls" }, }); console.log(result); } +/** + * This sample demonstrates how to update a ExascaleDbStorageVault + * + * @summary update a ExascaleDbStorageVault + * x-ms-original-file: 2025-09-01/ExascaleDbStorageVaults_Update_MinimumSet_Gen.json + */ +async function exascaleDbStorageVaultsUpdateMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.exascaleDbStorageVaults.update("rgopenapi", "storagevault1", {}); + console.log(result); +} + async function main(): Promise { await exascaleDbStorageVaultsUpdateMaximumSet(); + await exascaleDbStorageVaultsUpdateMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsGetSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsGetSample.ts similarity index 90% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsGetSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsGetSample.ts index e32d1fe902b2..a0e15fead297 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsGetSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsGetSample.ts @@ -8,13 +8,13 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to get a FlexComponent * * @summary get a FlexComponent - * x-ms-original-file: 2025-03-01/FlexComponents_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/FlexComponents_Get_MaximumSet_Gen.json */ async function flexComponentsGetMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.flexComponents.get("eastus", "flexComponent"); + const result = await client.flexComponents.get("eastus", "flexname1"); console.log(result); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsListByParentSample.ts similarity index 52% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsListByParentSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsListByParentSample.ts index d13796e670c2..6c172db9bc2d 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/flexComponentsListByParentSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/flexComponentsListByParentSample.ts @@ -8,7 +8,7 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to list FlexComponent resources by SubscriptionLocationResource * * @summary list FlexComponent resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/FlexComponents_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MaximumSet_Gen.json */ async function flexComponentsListByParentMaximumSet(): Promise { const credential = new DefaultAzureCredential(); @@ -16,7 +16,7 @@ async function flexComponentsListByParentMaximumSet(): Promise { const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); for await (const item of client.flexComponents.listByParent("eastus", { - shape: "Exadata.X11M", + shape: "Exadata.X9M", })) { resArray.push(item); } @@ -24,8 +24,27 @@ async function flexComponentsListByParentMaximumSet(): Promise { console.log(resArray); } +/** + * This sample demonstrates how to list FlexComponent resources by SubscriptionLocationResource + * + * @summary list FlexComponent resources by SubscriptionLocationResource + * x-ms-original-file: 2025-09-01/FlexComponents_ListByParent_MinimumSet_Gen.json + */ +async function flexComponentsListByParentMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.flexComponents.listByParent("eastus")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main(): Promise { await flexComponentsListByParentMaximumSet(); + await flexComponentsListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsGetSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsGetSample.ts similarity index 81% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsGetSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsGetSample.ts index 91e38e231cf0..b52d5de25593 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsGetSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsGetSample.ts @@ -8,13 +8,13 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to get a GiMinorVersion * * @summary get a GiMinorVersion - * x-ms-original-file: 2025-03-01/GiMinorVersions_Get_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiMinorVersions_Get_MaximumSet_Gen.json */ async function giMinorVersionsGetMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); - const result = await client.giMinorVersions.get("eastus", "giVersionName", "giMinorVersionName"); + const result = await client.giMinorVersions.get("eastus", "19.0.0.0", "minorversion"); console.log(result); } diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsListByParentSample.ts similarity index 50% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsListByParentSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsListByParentSample.ts index 5af4992b54ed..40f18b956b3a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giMinorVersionsListByParentSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giMinorVersionsListByParentSample.ts @@ -8,15 +8,16 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to list GiMinorVersion resources by GiVersion * * @summary list GiMinorVersion resources by GiVersion - * x-ms-original-file: 2025-03-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MaximumSet_Gen.json */ async function giMinorVersionsListByParentMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); - for await (const item of client.giMinorVersions.listByParent("eastus", "giVersionName", { - shapeFamily: "rtfcosvtlpeeqoicsjqggtgc", + for await (const item of client.giMinorVersions.listByParent("eastus", "name1", { + shapeFamily: "EXADATA", + zone: "zone1", })) { resArray.push(item); } @@ -24,8 +25,27 @@ async function giMinorVersionsListByParentMaximumSet(): Promise { console.log(resArray); } +/** + * This sample demonstrates how to list GiMinorVersion resources by GiVersion + * + * @summary list GiMinorVersion resources by GiVersion + * x-ms-original-file: 2025-09-01/GiMinorVersions_ListByParent_MinimumSet_Gen.json + */ +async function giMinorVersionsListByParentMaximumSetGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.giMinorVersions.listByParent("eastus", "giMinorVersionName")) { + resArray.push(item); + } + + console.log(resArray); +} + async function main(): Promise { await giMinorVersionsListByParentMaximumSet(); + await giMinorVersionsListByParentMaximumSetGeneratedByMinimumSetRule(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giVersionsListByLocationSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giVersionsListByLocationSample.ts similarity index 67% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giVersionsListByLocationSample.ts rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giVersionsListByLocationSample.ts index 76377f2f8d70..30b8b3da76d0 100644 --- a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/src/giVersionsListByLocationSample.ts +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/giVersionsListByLocationSample.ts @@ -8,16 +8,16 @@ import { DefaultAzureCredential } from "@azure/identity"; * This sample demonstrates how to list GiVersion resources by SubscriptionLocationResource * * @summary list GiVersion resources by SubscriptionLocationResource - * x-ms-original-file: 2025-03-01/GiVersions_ListByLocation_MaximumSet_Gen.json + * x-ms-original-file: 2025-09-01/GiVersions_ListByLocation_MaximumSet_Gen.json */ -async function listGiVersionsByLocationGeneratedByMaximumSetRule(): Promise { +async function giVersionsListByLocationMaximumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); const resArray = new Array(); for await (const item of client.giVersions.listByLocation("eastus", { - shape: - "osixsklyaauhoqnkxvnvsqeqenhzogntqnpubldrrfvqncwetdtwqwjjcvspwhgecbimdlulwcubikebrdzmidrucgtsuqvytkqutmbyrvvyioxpocpmuwiivyanjzucaegihztluuvpznzaoakfsselumhhsvrtrbzwpjhcihsvyouonlxdluwhqfxoqvgthkaxppbydtqjntscgzbivfdcaobbkthrbdjwpejirqmbly", + shape: "Exadata.X9M", + zone: "hpzuyaemum", })) { resArray.push(item); } @@ -29,9 +29,9 @@ async function listGiVersionsByLocationGeneratedByMaximumSetRule(): Promise { +async function giVersionsListByLocationMinimumSet(): Promise { const credential = new DefaultAzureCredential(); const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new OracleDatabaseManagementClient(credential, subscriptionId); @@ -44,8 +44,8 @@ async function listGiVersionsByLocationGeneratedByMinimumSetRule(): Promise { - await listGiVersionsByLocationGeneratedByMaximumSetRule(); - await listGiVersionsByLocationGeneratedByMinimumSetRule(); + await giVersionsListByLocationMaximumSet(); + await giVersionsListByLocationMinimumSet(); } main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/operationsListSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/operationsListSample.ts new file mode 100644 index 000000000000..0c3a206fc05b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/operationsListSample.ts @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/Operations_List_MaximumSet_Gen.json + */ +async function listOperationsGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/Operations_List_MinimumSet_Gen.json + */ +async function listOperationsGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list the operations for the provider + * + * @summary list the operations for the provider + * x-ms-original-file: 2025-09-01/operations_list.json + */ +async function operationsList(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-00000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.operations.list()) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listOperationsGeneratedByMaximumSetRule(); + await listOperationsGeneratedByMinimumSetRule(); + await operationsList(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts new file mode 100644 index 000000000000..f9a48a73f194 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsAddAzureSubscriptionsSample.ts @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MaximumSet_Gen.json + */ +async function addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} + +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/OracleSubscriptions_AddAzureSubscriptions_MinimumSet_Gen.json + */ +async function addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} + +/** + * This sample demonstrates how to add Azure Subscriptions + * + * @summary add Azure Subscriptions + * x-ms-original-file: 2025-09-01/oracleSubscriptions_addAzureSubscriptions.json + */ +async function oracleSubscriptionsAddAzureSubscriptions(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + await client.oracleSubscriptions.addAzureSubscriptions({ + azureSubscriptionIds: ["00000000-0000-0000-0000-000000000001"], + }); +} + +async function main(): Promise { + await addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMaximumSetRule(); + await addAzureSubscriptionsToTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsAddAzureSubscriptions(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListActivationLinksSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListActivationLinksSample.ts new file mode 100644 index 000000000000..884eb4754c01 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListActivationLinksSample.ts @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MaximumSet_Gen.json + */ +async function listActivationLinksForTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} + +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListActivationLinks_MinimumSet_Gen.json + */ +async function listActivationLinksForTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} + +/** + * This sample demonstrates how to list Activation Links + * + * @summary list Activation Links + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listActivationLinks.json + */ +async function oracleSubscriptionsListActivationLinks(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listActivationLinks(); + console.log(result); +} + +async function main(): Promise { + await listActivationLinksForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listActivationLinksForTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsListActivationLinks(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts new file mode 100644 index 000000000000..00f37324ea97 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListCloudAccountDetailsSample.ts @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MaximumSet_Gen.json + */ +async function listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListCloudAccountDetails_MinimumSet_Gen.json + */ +async function listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Cloud Account Details + * + * @summary list Cloud Account Details + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listCloudAccountDetails.json + */ +async function oracleSubscriptionsListCloudAccountDetails(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listCloudAccountDetails(); + console.log(result); +} + +async function main(): Promise { + await listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listCloudAccountDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsListCloudAccountDetails(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts new file mode 100644 index 000000000000..7465ae61916d --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsListSaasSubscriptionDetailsSample.ts @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MaximumSet_Gen.json + */ +async function listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/OracleSubscriptions_ListSaasSubscriptionDetails_MinimumSet_Gen.json + */ +async function listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} + +/** + * This sample demonstrates how to list Saas Subscription Details + * + * @summary list Saas Subscription Details + * x-ms-original-file: 2025-09-01/oracleSubscriptions_listSaasSubscriptionDetails.json + */ +async function oracleSubscriptionsListSaasSubscriptionDetails(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.listSaasSubscriptionDetails(); + console.log(result); +} + +async function main(): Promise { + await listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMaximumSetRule(); + await listSaasSubscriptionDetailsForTheOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsListSaasSubscriptionDetails(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsUpdateSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsUpdateSample.ts new file mode 100644 index 000000000000..ad3b122c6bc8 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/oracleSubscriptionsUpdateSample.ts @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MaximumSet_Gen.json + */ +async function patchOracleSubscriptionGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({ + plan: { + name: "klnnbggrxhvvaiajvjx", + publisher: "xvsarzadrjqergudsohjk", + product: "hivkczjyrimjilbmqj", + promotionCode: "zhotaxrodldvmwpksvsrwbnc", + version: "ueudckjmuqpjvsmmenzyflgpa", + }, + properties: { productCode: "kbqzsukkjceoplyalyrdayfj", intent: "Retain" }, + }); + console.log(result); +} + +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/OracleSubscriptions_Update_MinimumSet_Gen.json + */ +async function patchOracleSubscriptionGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({}); + console.log(result); +} + +/** + * This sample demonstrates how to update a OracleSubscription + * + * @summary update a OracleSubscription + * x-ms-original-file: 2025-09-01/oracleSubscriptions_patch.json + */ +async function oracleSubscriptionsUpdate(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const result = await client.oracleSubscriptions.update({}); + console.log(result); +} + +async function main(): Promise { + await patchOracleSubscriptionGeneratedByMaximumSetRule(); + await patchOracleSubscriptionGeneratedByMinimumSetRule(); + await oracleSubscriptionsUpdate(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/virtualNetworkAddressesListByParentSample.ts b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/virtualNetworkAddressesListByParentSample.ts new file mode 100644 index 000000000000..69995ad0064b --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/src/virtualNetworkAddressesListByParentSample.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { OracleDatabaseManagementClient } from "@azure/arm-oracledatabase"; +import { DefaultAzureCredential } from "@azure/identity"; + +/** + * This sample demonstrates how to list VirtualNetworkAddress resources by CloudVmCluster + * + * @summary list VirtualNetworkAddress resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MaximumSet_Gen.json + */ +async function listVirtualNetworkAddressesByVMClusterGeneratedByMaximumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.virtualNetworkAddresses.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +/** + * This sample demonstrates how to list VirtualNetworkAddress resources by CloudVmCluster + * + * @summary list VirtualNetworkAddress resources by CloudVmCluster + * x-ms-original-file: 2025-09-01/VirtualNetworkAddresses_ListByParent_MinimumSet_Gen.json + */ +async function listVirtualNetworkAddressesByVMClusterGeneratedByMinimumSetRule(): Promise { + const credential = new DefaultAzureCredential(); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); + const resArray = new Array(); + for await (const item of client.virtualNetworkAddresses.listByParent( + "rgopenapi", + "Replace this value with a string matching RegExp .*", + )) { + resArray.push(item); + } + + console.log(resArray); +} + +async function main(): Promise { + await listVirtualNetworkAddressesByVMClusterGeneratedByMaximumSetRule(); + await listVirtualNetworkAddressesByVMClusterGeneratedByMinimumSetRule(); +} + +main().catch(console.error); diff --git a/sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/tsconfig.json b/sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/tsconfig.json similarity index 100% rename from sdk/oracledatabase/arm-oracledatabase/samples/v2/typescript/tsconfig.json rename to sdk/oracledatabase/arm-oracledatabase/samples/v3/typescript/tsconfig.json diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/operations.ts index 3206e600892b..e56a56ecc2ec 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/operations.ts @@ -1,37 +1,33 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + AutonomousDatabaseBackup, + AutonomousDatabaseBackupUpdate, + _AutonomousDatabaseBackupListResult, +} from "../../models/models.js"; import { errorResponseDeserializer, - AutonomousDatabaseBackup, autonomousDatabaseBackupSerializer, autonomousDatabaseBackupDeserializer, - AutonomousDatabaseBackupUpdate, autonomousDatabaseBackupUpdateSerializer, - _AutonomousDatabaseBackupListResult, _autonomousDatabaseBackupListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { AutonomousDatabaseBackupsListByParentOptionalParams, AutonomousDatabaseBackupsUpdateOptionalParams, AutonomousDatabaseBackupsDeleteOptionalParams, AutonomousDatabaseBackupsGetOptionalParams, AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _listByParentSend( context: Client, @@ -189,13 +185,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -330,7 +320,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -351,7 +341,7 @@ export function createOrUpdate( requestOptions: {}, }, ): PollerLike, AutonomousDatabaseBackup> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/options.ts index 3ff50a9ff35e..7d1251db2219 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseBackups/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface AutonomousDatabaseBackupsListByParentOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/operations.ts index 6dee9956dcc4..01aa8359fad5 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/operations.ts @@ -1,29 +1,25 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + AutonomousDatabaseCharacterSet, + _AutonomousDatabaseCharacterSetListResult, +} from "../../models/models.js"; import { errorResponseDeserializer, - AutonomousDatabaseCharacterSet, autonomousDatabaseCharacterSetDeserializer, - _AutonomousDatabaseCharacterSetListResult, _autonomousDatabaseCharacterSetListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { AutonomousDatabaseCharacterSetsListByLocationOptionalParams, AutonomousDatabaseCharacterSetsGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/options.ts index 24d71a43a77c..85efbe9d8258 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseCharacterSets/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface AutonomousDatabaseCharacterSetsListByLocationOptionalParams diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/operations.ts index 1b175600f3d5..f99878ea81d0 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/operations.ts @@ -1,29 +1,25 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + AutonomousDatabaseNationalCharacterSet, + _AutonomousDatabaseNationalCharacterSetListResult, +} from "../../models/models.js"; import { errorResponseDeserializer, - AutonomousDatabaseNationalCharacterSet, autonomousDatabaseNationalCharacterSetDeserializer, - _AutonomousDatabaseNationalCharacterSetListResult, _autonomousDatabaseNationalCharacterSetListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, AutonomousDatabaseNationalCharacterSetsGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/options.ts index a45b36cfebce..9bfea979012e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseNationalCharacterSets/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/operations.ts index 1551e2dcccc7..dd5f53eb5792 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { AutonomousDbVersion, _AutonomousDbVersionListResult } from "../../models/models.js"; import { errorResponseDeserializer, - AutonomousDbVersion, autonomousDbVersionDeserializer, - _AutonomousDbVersionListResult, _autonomousDbVersionListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { AutonomousDatabaseVersionsListByLocationOptionalParams, AutonomousDatabaseVersionsGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/options.ts index 23d8d9dfb3a9..a037d62a008e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabaseVersions/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface AutonomousDatabaseVersionsListByLocationOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/index.ts index 0d5ad7328ae9..289806e820a7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/index.ts @@ -2,6 +2,7 @@ // Licensed under the MIT License. export { + action, changeDisasterRecoveryConfiguration, shrink, restore, @@ -16,6 +17,7 @@ export { listBySubscription, } from "./operations.js"; export { + AutonomousDatabasesActionOptionalParams, AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams, AutonomousDatabasesShrinkOptionalParams, AutonomousDatabasesRestoreOptionalParams, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/operations.ts index 67a79f207095..d752a62ad385 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/operations.ts @@ -1,28 +1,37 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _AutonomousDatabaseListResult, + AutonomousDatabase, + DisasterRecoveryConfigurationDetails, + AutonomousDatabaseUpdate, + PeerDbDetails, + GenerateAutonomousDatabaseWalletDetails, + AutonomousDatabaseWalletFile, + RestoreAutonomousDatabaseDetails, + AutonomousDatabaseLifecycleAction, +} from "../../models/models.js"; import { errorResponseDeserializer, - _AutonomousDatabaseListResult, _autonomousDatabaseListResultDeserializer, - AutonomousDatabase, autonomousDatabaseSerializer, autonomousDatabaseDeserializer, - DisasterRecoveryConfigurationDetails, disasterRecoveryConfigurationDetailsSerializer, - AutonomousDatabaseUpdate, autonomousDatabaseUpdateSerializer, - PeerDbDetails, peerDbDetailsSerializer, - GenerateAutonomousDatabaseWalletDetails, generateAutonomousDatabaseWalletDetailsSerializer, - AutonomousDatabaseWalletFile, autonomousDatabaseWalletFileDeserializer, - RestoreAutonomousDatabaseDetails, restoreAutonomousDatabaseDetailsSerializer, + autonomousDatabaseLifecycleActionSerializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { + AutonomousDatabasesActionOptionalParams, AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams, AutonomousDatabasesShrinkOptionalParams, AutonomousDatabasesRestoreOptionalParams, @@ -36,19 +45,69 @@ import { AutonomousDatabasesCreateOrUpdateOptionalParams, AutonomousDatabasesListBySubscriptionOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +export function _actionSend( + context: Client, + resourceGroupName: string, + autonomousdatabasename: string, + body: AutonomousDatabaseLifecycleAction, + options: AutonomousDatabasesActionOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/action{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + autonomousdatabasename: autonomousdatabasename, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).post({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: autonomousDatabaseLifecycleActionSerializer(body), + }); +} + +export async function _actionDeserialize( + result: PathUncheckedResponse, +): Promise { + const expectedStatuses = ["202", "200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return autonomousDatabaseDeserializer(result.body); +} + +/** Perform Lifecycle Management Action on Autonomous Database */ +export function action( + context: Client, + resourceGroupName: string, + autonomousdatabasename: string, + body: AutonomousDatabaseLifecycleAction, + options: AutonomousDatabasesActionOptionalParams = { requestOptions: {} }, +): PollerLike, AutonomousDatabase> { + return getLongRunningPoller(context, _actionDeserialize, ["202", "200"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _actionSend(context, resourceGroupName, autonomousdatabasename, body, options), + resourceLocationConfig: "location", + }) as PollerLike, AutonomousDatabase>; +} export function _changeDisasterRecoveryConfigurationSend( context: Client, @@ -561,13 +620,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -686,7 +739,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -706,7 +759,7 @@ export function createOrUpdate( requestOptions: {}, }, ): PollerLike, AutonomousDatabase> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/options.ts index 0e5877f4ecbb..1e471ea57d48 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/autonomousDatabases/options.ts @@ -1,7 +1,13 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; + +/** Optional parameters. */ +export interface AutonomousDatabasesActionOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} /** Optional parameters. */ export interface AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/index.ts index fa95baf61fe3..b87dcaf837c7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/index.ts @@ -2,6 +2,7 @@ // Licensed under the MIT License. export { + configureExascale, addStorageCapacity, listByResourceGroup, $delete, @@ -11,6 +12,7 @@ export { listBySubscription, } from "./operations.js"; export { + CloudExadataInfrastructuresConfigureExascaleOptionalParams, CloudExadataInfrastructuresAddStorageCapacityOptionalParams, CloudExadataInfrastructuresListByResourceGroupOptionalParams, CloudExadataInfrastructuresDeleteOptionalParams, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/operations.ts index e36d9641bf90..91c980bcbf78 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/operations.ts @@ -1,18 +1,27 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _CloudExadataInfrastructureListResult, + CloudExadataInfrastructure, + CloudExadataInfrastructureUpdate, + ConfigureExascaleCloudExadataInfrastructureDetails, +} from "../../models/models.js"; import { errorResponseDeserializer, - _CloudExadataInfrastructureListResult, _cloudExadataInfrastructureListResultDeserializer, - CloudExadataInfrastructure, cloudExadataInfrastructureSerializer, cloudExadataInfrastructureDeserializer, - CloudExadataInfrastructureUpdate, cloudExadataInfrastructureUpdateSerializer, + configureExascaleCloudExadataInfrastructureDetailsSerializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { + CloudExadataInfrastructuresConfigureExascaleOptionalParams, CloudExadataInfrastructuresAddStorageCapacityOptionalParams, CloudExadataInfrastructuresListByResourceGroupOptionalParams, CloudExadataInfrastructuresDeleteOptionalParams, @@ -21,19 +30,79 @@ import { CloudExadataInfrastructuresCreateOrUpdateOptionalParams, CloudExadataInfrastructuresListBySubscriptionOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +export function _configureExascaleSend( + context: Client, + resourceGroupName: string, + cloudexadatainfrastructurename: string, + body: ConfigureExascaleCloudExadataInfrastructureDetails, + options: CloudExadataInfrastructuresConfigureExascaleOptionalParams = { + requestOptions: {}, + }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/configureExascale{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + cloudexadatainfrastructurename: cloudexadatainfrastructurename, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).post({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: configureExascaleCloudExadataInfrastructureDetailsSerializer(body), + }); +} + +export async function _configureExascaleDeserialize( + result: PathUncheckedResponse, +): Promise { + const expectedStatuses = ["202", "200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return cloudExadataInfrastructureDeserializer(result.body); +} + +/** Configures Exascale on Cloud exadata infrastructure resource */ +export function configureExascale( + context: Client, + resourceGroupName: string, + cloudexadatainfrastructurename: string, + body: ConfigureExascaleCloudExadataInfrastructureDetails, + options: CloudExadataInfrastructuresConfigureExascaleOptionalParams = { + requestOptions: {}, + }, +): PollerLike, CloudExadataInfrastructure> { + return getLongRunningPoller(context, _configureExascaleDeserialize, ["202", "200"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _configureExascaleSend( + context, + resourceGroupName, + cloudexadatainfrastructurename, + body, + options, + ), + resourceLocationConfig: "location", + }) as PollerLike, CloudExadataInfrastructure>; +} export function _addStorageCapacitySend( context: Client, @@ -172,13 +241,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -374,7 +437,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -394,7 +457,7 @@ export function createOrUpdate( requestOptions: {}, }, ): PollerLike, CloudExadataInfrastructure> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/options.ts index 2ee99a567d9e..9622b2bd5234 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudExadataInfrastructures/options.ts @@ -1,7 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; + +/** Optional parameters. */ +export interface CloudExadataInfrastructuresConfigureExascaleOptionalParams + extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} /** Optional parameters. */ export interface CloudExadataInfrastructuresAddStorageCapacityOptionalParams diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/operations.ts index a6b8177e9fc6..b51dc95a1622 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/operations.ts @@ -1,24 +1,30 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _CloudVmClusterListResult, + CloudVmCluster, + CloudVmClusterUpdate, + AddRemoveDbNode, + PrivateIpAddressesFilter, + PrivateIpAddressProperties, +} from "../../models/models.js"; import { errorResponseDeserializer, - _CloudVmClusterListResult, _cloudVmClusterListResultDeserializer, - CloudVmCluster, cloudVmClusterSerializer, cloudVmClusterDeserializer, - CloudVmClusterUpdate, cloudVmClusterUpdateSerializer, - AddRemoveDbNode, addRemoveDbNodeSerializer, - PrivateIpAddressesFilter, privateIpAddressesFilterSerializer, - PrivateIpAddressProperties, privateIpAddressPropertiesArrayDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { CloudVmClustersListPrivateIpAddressesOptionalParams, CloudVmClustersRemoveVmsOptionalParams, CloudVmClustersAddVmsOptionalParams, @@ -29,19 +35,9 @@ import { CloudVmClustersCreateOrUpdateOptionalParams, CloudVmClustersListBySubscriptionOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _listPrivateIpAddressesSend( context: Client, @@ -301,13 +297,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -481,7 +471,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -499,7 +489,7 @@ export function createOrUpdate( resource: CloudVmCluster, options: CloudVmClustersCreateOrUpdateOptionalParams = { requestOptions: {} }, ): PollerLike, CloudVmCluster> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/options.ts index d8b2c5a0d2a4..0c8e27a0b1af 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/cloudVmClusters/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface CloudVmClustersListPrivateIpAddressesOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/operations.ts index 9e6d23368994..49917ab8f3a9 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/operations.ts @@ -1,34 +1,26 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { DbNode, _DbNodeListResult, DbNodeAction } from "../../models/models.js"; import { errorResponseDeserializer, - DbNode, dbNodeDeserializer, - _DbNodeListResult, _dbNodeListResultDeserializer, - DbNodeAction, dbNodeActionSerializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { DbNodesActionOptionalParams, DbNodesListByParentOptionalParams, DbNodesGetOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _actionSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/options.ts index 429adaf840ab..8762858def3b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbNodes/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface DbNodesActionOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/operations.ts index c402010cf32b..8f22fbdc89e9 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/operations.ts @@ -1,26 +1,19 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { DbServer, _DbServerListResult } from "../../models/models.js"; import { errorResponseDeserializer, - DbServer, dbServerDeserializer, - _DbServerListResult, _dbServerListResultDeserializer, } from "../../models/models.js"; -import { DbServersListByParentOptionalParams, DbServersGetOptionalParams } from "./options.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { DbServersListByParentOptionalParams, DbServersGetOptionalParams } from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByParentSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/options.ts index 582a42b31f43..7a7ad94ddc71 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbServers/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface DbServersListByParentOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/operations.ts index 528d148b7d37..8793a0715568 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { DbSystemShape, _DbSystemShapeListResult } from "../../models/models.js"; import { errorResponseDeserializer, - DbSystemShape, dbSystemShapeDeserializer, - _DbSystemShapeListResult, _dbSystemShapeListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { DbSystemShapesListByLocationOptionalParams, DbSystemShapesGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, @@ -31,12 +24,13 @@ export function _listByLocationSend( options: DbSystemShapesListByLocationOptionalParams = { requestOptions: {} }, ): StreamableMethod { const path = expandUrlTemplate( - "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemShapes{?api%2Dversion,zone}", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemShapes{?api%2Dversion,zone,shapeAttribute}", { subscriptionId: context.subscriptionId, location: location, "api%2Dversion": context.apiVersion, zone: options?.zone, + shapeAttribute: options?.shapeAttribute, }, { allowReserved: options?.requestOptions?.skipUrlEncoding, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/options.ts index 15ac0b463803..d261d72d3a78 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystemShapes/options.ts @@ -1,12 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface DbSystemShapesListByLocationOptionalParams extends OperationOptions { /** Filters the result for the given Azure Availability Zone */ zone?: string; + /** Filters the result for the given Shape Attribute, such as BLOCK_STORAGE or SMART_STORAGE. */ + shapeAttribute?: string; } /** Optional parameters. */ diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/index.ts new file mode 100644 index 000000000000..f8af408a42df --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/index.ts @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +export { + listByResourceGroup, + $delete, + update, + get, + createOrUpdate, + listBySubscription, +} from "./operations.js"; +export { + DbSystemsListByResourceGroupOptionalParams, + DbSystemsDeleteOptionalParams, + DbSystemsUpdateOptionalParams, + DbSystemsGetOptionalParams, + DbSystemsCreateOrUpdateOptionalParams, + DbSystemsListBySubscriptionOptionalParams, +} from "./options.js"; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/operations.ts new file mode 100644 index 000000000000..0d34e812fb33 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/operations.ts @@ -0,0 +1,347 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { _DbSystemListResult, DbSystem, DbSystemUpdate } from "../../models/models.js"; +import { + errorResponseDeserializer, + _dbSystemListResultDeserializer, + dbSystemSerializer, + dbSystemDeserializer, + dbSystemUpdateSerializer, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { + DbSystemsListByResourceGroupOptionalParams, + DbSystemsDeleteOptionalParams, + DbSystemsUpdateOptionalParams, + DbSystemsGetOptionalParams, + DbSystemsCreateOrUpdateOptionalParams, + DbSystemsListBySubscriptionOptionalParams, +} from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +export function _listByResourceGroupSend( + context: Client, + resourceGroupName: string, + options: DbSystemsListByResourceGroupOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listByResourceGroupDeserialize( + result: PathUncheckedResponse, +): Promise<_DbSystemListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _dbSystemListResultDeserializer(result.body); +} + +/** List DbSystem resources by resource group */ +export function listByResourceGroup( + context: Client, + resourceGroupName: string, + options: DbSystemsListByResourceGroupOptionalParams = { requestOptions: {} }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listByResourceGroupSend(context, resourceGroupName, options), + _listByResourceGroupDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} + +export function _$deleteSend( + context: Client, + resourceGroupName: string, + dbSystemName: string, + options: DbSystemsDeleteOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + dbSystemName: dbSystemName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); +} + +export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["202", "204", "200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return; +} + +/** Delete a DbSystem */ +/** + * @fixme delete is a reserved word that cannot be used as an operation name. + * Please add @clientName("clientName") or @clientName("", "javascript") + * to the operation to override the generated name. + */ +export function $delete( + context: Client, + resourceGroupName: string, + dbSystemName: string, + options: DbSystemsDeleteOptionalParams = { requestOptions: {} }, +): PollerLike, void> { + return getLongRunningPoller(context, _$deleteDeserialize, ["202", "204", "200"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => _$deleteSend(context, resourceGroupName, dbSystemName, options), + resourceLocationConfig: "location", + }) as PollerLike, void>; +} + +export function _updateSend( + context: Client, + resourceGroupName: string, + dbSystemName: string, + properties: DbSystemUpdate, + options: DbSystemsUpdateOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + dbSystemName: dbSystemName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).patch({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: dbSystemUpdateSerializer(properties), + }); +} + +export async function _updateDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200", "202"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return dbSystemDeserializer(result.body); +} + +/** Update a DbSystem */ +export function update( + context: Client, + resourceGroupName: string, + dbSystemName: string, + properties: DbSystemUpdate, + options: DbSystemsUpdateOptionalParams = { requestOptions: {} }, +): PollerLike, DbSystem> { + return getLongRunningPoller(context, _updateDeserialize, ["200", "202"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _updateSend(context, resourceGroupName, dbSystemName, properties, options), + resourceLocationConfig: "location", + }) as PollerLike, DbSystem>; +} + +export function _getSend( + context: Client, + resourceGroupName: string, + dbSystemName: string, + options: DbSystemsGetOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + dbSystemName: dbSystemName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _getDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return dbSystemDeserializer(result.body); +} + +/** Get a DbSystem */ +export async function get( + context: Client, + resourceGroupName: string, + dbSystemName: string, + options: DbSystemsGetOptionalParams = { requestOptions: {} }, +): Promise { + const result = await _getSend(context, resourceGroupName, dbSystemName, options); + return _getDeserialize(result); +} + +export function _createOrUpdateSend( + context: Client, + resourceGroupName: string, + dbSystemName: string, + resource: DbSystem, + options: DbSystemsCreateOrUpdateOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + dbSystemName: dbSystemName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).put({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: dbSystemSerializer(resource), + }); +} + +export async function _createOrUpdateDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200", "201", "202"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return dbSystemDeserializer(result.body); +} + +/** Create a DbSystem */ +export function createOrUpdate( + context: Client, + resourceGroupName: string, + dbSystemName: string, + resource: DbSystem, + options: DbSystemsCreateOrUpdateOptionalParams = { requestOptions: {} }, +): PollerLike, DbSystem> { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _createOrUpdateSend(context, resourceGroupName, dbSystemName, resource, options), + resourceLocationConfig: "azure-async-operation", + }) as PollerLike, DbSystem>; +} + +export function _listBySubscriptionSend( + context: Client, + options: DbSystemsListBySubscriptionOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/dbSystems{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listBySubscriptionDeserialize( + result: PathUncheckedResponse, +): Promise<_DbSystemListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _dbSystemListResultDeserializer(result.body); +} + +/** List DbSystem resources by subscription ID */ +export function listBySubscription( + context: Client, + options: DbSystemsListBySubscriptionOptionalParams = { requestOptions: {} }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listBySubscriptionSend(context, options), + _listBySubscriptionDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/options.ts new file mode 100644 index 000000000000..1775929294d1 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbSystems/options.ts @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OperationOptions } from "@azure-rest/core-client"; + +/** Optional parameters. */ +export interface DbSystemsListByResourceGroupOptionalParams extends OperationOptions {} + +/** Optional parameters. */ +export interface DbSystemsDeleteOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface DbSystemsUpdateOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface DbSystemsGetOptionalParams extends OperationOptions {} + +/** Optional parameters. */ +export interface DbSystemsCreateOrUpdateOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface DbSystemsListBySubscriptionOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/index.ts new file mode 100644 index 000000000000..db6424670ee0 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/index.ts @@ -0,0 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +export { listByLocation, get } from "./operations.js"; +export { DbVersionsListByLocationOptionalParams, DbVersionsGetOptionalParams } from "./options.js"; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/operations.ts new file mode 100644 index 000000000000..1ee5ee37032c --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/operations.ts @@ -0,0 +1,127 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { DbVersion, _DbVersionListResult } from "../../models/models.js"; +import { + errorResponseDeserializer, + dbVersionDeserializer, + _dbVersionListResultDeserializer, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { + DbVersionsListByLocationOptionalParams, + DbVersionsGetOptionalParams, +} from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; + +export function _listByLocationSend( + context: Client, + location: string, + options: DbVersionsListByLocationOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemDbVersions{?api%2Dversion,dbSystemShape,dbSystemId,storageManagement,isUpgradeSupported,isDatabaseSoftwareImageSupported,shapeFamily}", + { + subscriptionId: context.subscriptionId, + location: location, + "api%2Dversion": context.apiVersion, + dbSystemShape: options?.dbSystemShape, + dbSystemId: options?.dbSystemId, + storageManagement: options?.storageManagement, + isUpgradeSupported: options?.isUpgradeSupported, + isDatabaseSoftwareImageSupported: options?.isDatabaseSoftwareImageSupported, + shapeFamily: options?.shapeFamily, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listByLocationDeserialize( + result: PathUncheckedResponse, +): Promise<_DbVersionListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _dbVersionListResultDeserializer(result.body); +} + +/** List DbVersion resources by SubscriptionLocationResource */ +export function listByLocation( + context: Client, + location: string, + options: DbVersionsListByLocationOptionalParams = { requestOptions: {} }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listByLocationSend(context, location, options), + _listByLocationDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} + +export function _getSend( + context: Client, + location: string, + dbversionsname: string, + options: DbVersionsGetOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/dbSystemDbVersions/{dbversionsname}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + location: location, + dbversionsname: dbversionsname, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _getDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return dbVersionDeserializer(result.body); +} + +/** Get a DbVersion */ +export async function get( + context: Client, + location: string, + dbversionsname: string, + options: DbVersionsGetOptionalParams = { requestOptions: {} }, +): Promise { + const result = await _getSend(context, location, dbversionsname, options); + return _getDeserialize(result); +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/options.ts new file mode 100644 index 000000000000..c23ced5288d2 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dbVersions/options.ts @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { + StorageManagementType, + BaseDbSystemShapes, + ShapeFamilyType, +} from "../../models/models.js"; +import type { OperationOptions } from "@azure-rest/core-client"; + +/** Optional parameters. */ +export interface DbVersionsListByLocationOptionalParams extends OperationOptions { + /** If provided, filters the results to the set of database versions which are supported for the given shape. e.g., VM.Standard.E5.Flex */ + dbSystemShape?: BaseDbSystemShapes; + /** The DB system AzureId. If provided, filters the results to the set of database versions which are supported for the DB system. */ + dbSystemId?: string; + /** The DB system storage management option. Used to list database versions available for that storage manager. Valid values are ASM and LVM. */ + storageManagement?: StorageManagementType; + /** If true, filters the results to the set of database versions which are supported for Upgrade. */ + isUpgradeSupported?: boolean; + /** If true, filters the results to the set of Oracle Database versions that are supported for the database software images. */ + isDatabaseSoftwareImageSupported?: boolean; + /** If provided, filters the results to the set of database versions which are supported for the given shape family. */ + shapeFamily?: ShapeFamilyType; +} + +/** Optional parameters. */ +export interface DbVersionsGetOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/operations.ts index a93ce7f3216f..055dc04dec5f 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { DnsPrivateView, _DnsPrivateViewListResult } from "../../models/models.js"; import { errorResponseDeserializer, - DnsPrivateView, dnsPrivateViewDeserializer, - _DnsPrivateViewListResult, _dnsPrivateViewListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { DnsPrivateViewsListByLocationOptionalParams, DnsPrivateViewsGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/options.ts index 54a023d1964e..3fb664f87624 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateViews/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface DnsPrivateViewsListByLocationOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/operations.ts index 2b77b4e7436d..ae09621b48b9 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { DnsPrivateZone, _DnsPrivateZoneListResult } from "../../models/models.js"; import { errorResponseDeserializer, - DnsPrivateZone, dnsPrivateZoneDeserializer, - _DnsPrivateZoneListResult, _dnsPrivateZoneListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { DnsPrivateZonesListByLocationOptionalParams, DnsPrivateZonesGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/options.ts index 1b0bf0829cda..165d7992481b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/dnsPrivateZones/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface DnsPrivateZonesListByLocationOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/operations.ts index 1bb332c25a8f..6529dd7168b3 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/operations.ts @@ -1,20 +1,26 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _ExadbVmClusterListResult, + ExadbVmCluster, + ExadbVmClusterUpdate, + RemoveVirtualMachineFromExadbVmClusterDetails, +} from "../../models/models.js"; import { errorResponseDeserializer, - _ExadbVmClusterListResult, _exadbVmClusterListResultDeserializer, - ExadbVmCluster, exadbVmClusterSerializer, exadbVmClusterDeserializer, - ExadbVmClusterUpdate, exadbVmClusterUpdateSerializer, - RemoveVirtualMachineFromExadbVmClusterDetails, removeVirtualMachineFromExadbVmClusterDetailsSerializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { ExadbVmClustersRemoveVmsOptionalParams, ExadbVmClustersListByResourceGroupOptionalParams, ExadbVmClustersDeleteOptionalParams, @@ -23,19 +29,9 @@ import { ExadbVmClustersCreateOrUpdateOptionalParams, ExadbVmClustersListBySubscriptionOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _removeVmsSend( context: Client, @@ -172,13 +168,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -352,7 +342,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -370,7 +360,7 @@ export function createOrUpdate( resource: ExadbVmCluster, options: ExadbVmClustersCreateOrUpdateOptionalParams = { requestOptions: {} }, ): PollerLike, ExadbVmCluster> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/options.ts index c97c9137014f..791d480616bd 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/exadbVmClusters/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface ExadbVmClustersRemoveVmsOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/operations.ts index 425b73d4023e..9076e1c5406a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/operations.ts @@ -1,36 +1,32 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + DbNodeAction, + ExascaleDbNode, + _ExascaleDbNodeListResult, + DbActionResponse, +} from "../../models/models.js"; import { errorResponseDeserializer, - DbNodeAction, dbNodeActionSerializer, - ExascaleDbNode, exascaleDbNodeDeserializer, - _ExascaleDbNodeListResult, _exascaleDbNodeListResultDeserializer, - DbActionResponse, dbActionResponseDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { ExascaleDbNodesActionOptionalParams, ExascaleDbNodesListByParentOptionalParams, ExascaleDbNodesGetOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _actionSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/options.ts index 711bea69a32f..3f8d1f7a603c 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbNodes/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface ExascaleDbNodesActionOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/operations.ts index 2e980ee73ad3..696ce6bf44ef 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/operations.ts @@ -1,18 +1,24 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + ExascaleDbStorageVault, + ExascaleDbStorageVaultTagsUpdate, + _ExascaleDbStorageVaultListResult, +} from "../../models/models.js"; import { errorResponseDeserializer, - ExascaleDbStorageVault, exascaleDbStorageVaultSerializer, exascaleDbStorageVaultDeserializer, - ExascaleDbStorageVaultTagsUpdate, exascaleDbStorageVaultTagsUpdateSerializer, - _ExascaleDbStorageVaultListResult, _exascaleDbStorageVaultListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { ExascaleDbStorageVaultsListBySubscriptionOptionalParams, ExascaleDbStorageVaultsListByResourceGroupOptionalParams, ExascaleDbStorageVaultsDeleteOptionalParams, @@ -20,19 +26,9 @@ import { ExascaleDbStorageVaultsCreateOptionalParams, ExascaleDbStorageVaultsGetOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _listBySubscriptionSend( context: Client, @@ -163,13 +159,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -297,7 +287,7 @@ export function _createSend( export async function _createDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -315,7 +305,7 @@ export function create( resource: ExascaleDbStorageVault, options: ExascaleDbStorageVaultsCreateOptionalParams = { requestOptions: {} }, ): PollerLike, ExascaleDbStorageVault> { - return getLongRunningPoller(context, _createDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/options.ts index 36dd686211d5..5927ba0f347b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/exascaleDbStorageVaults/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface ExascaleDbStorageVaultsListBySubscriptionOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/operations.ts index b1923679c572..f4e008c6da3c 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { FlexComponent, _FlexComponentListResult } from "../../models/models.js"; import { errorResponseDeserializer, - FlexComponent, flexComponentDeserializer, - _FlexComponentListResult, _flexComponentListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { FlexComponentsListByParentOptionalParams, FlexComponentsGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByParentSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/options.ts index df3db3944273..fe9775631f9b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/flexComponents/options.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { SystemShapes } from "../../models/models.js"; -import { OperationOptions } from "@azure-rest/core-client"; +import type { SystemShapes } from "../../models/models.js"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface FlexComponentsListByParentOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/operations.ts index ff368db4bb81..bb4f149f3b15 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { _GiMinorVersionListResult, GiMinorVersion } from "../../models/models.js"; import { errorResponseDeserializer, - _GiMinorVersionListResult, _giMinorVersionListResultDeserializer, - GiMinorVersion, giMinorVersionDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { GiMinorVersionsGetOptionalParams, GiMinorVersionsListByParentOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _getSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/options.ts index 8ba084a947b0..5a398e197694 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/giMinorVersions/options.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { ShapeFamily } from "../../models/models.js"; -import { OperationOptions } from "@azure-rest/core-client"; +import type { ShapeFamily } from "../../models/models.js"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface GiMinorVersionsGetOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/operations.ts index 2af46ab6662a..f6d0fdb86862 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/operations.ts @@ -1,26 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { GiVersion, _GiVersionListResult } from "../../models/models.js"; import { errorResponseDeserializer, - GiVersion, giVersionDeserializer, - _GiVersionListResult, _giVersionListResultDeserializer, } from "../../models/models.js"; -import { GiVersionsListByLocationOptionalParams, GiVersionsGetOptionalParams } from "./options.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { + GiVersionsListByLocationOptionalParams, + GiVersionsGetOptionalParams, +} from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, @@ -28,13 +24,14 @@ export function _listByLocationSend( options: GiVersionsListByLocationOptionalParams = { requestOptions: {} }, ): StreamableMethod { const path = expandUrlTemplate( - "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions{?api%2Dversion,shape,zone}", + "/subscriptions/{subscriptionId}/providers/Oracle.Database/locations/{location}/giVersions{?api%2Dversion,shape,zone,shapeAttribute}", { subscriptionId: context.subscriptionId, location: location, "api%2Dversion": context.apiVersion, shape: options?.shape, zone: options?.zone, + shapeAttribute: options?.shapeAttribute, }, { allowReserved: options?.requestOptions?.skipUrlEncoding, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/options.ts index fcf10f2f6f8d..d942d42ab23e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/giVersions/options.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { SystemShapes } from "../../models/models.js"; -import { OperationOptions } from "@azure-rest/core-client"; +import type { SystemShapes } from "../../models/models.js"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface GiVersionsListByLocationOptionalParams extends OperationOptions { @@ -10,6 +10,8 @@ export interface GiVersionsListByLocationOptionalParams extends OperationOptions shape?: SystemShapes; /** Filters the result for the given Azure Availability Zone */ zone?: string; + /** Filters the result for the given Shape Attribute, such as BLOCK_STORAGE or SMART_STORAGE. */ + shapeAttribute?: string; } /** Optional parameters. */ diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/index.ts new file mode 100644 index 000000000000..80dc57291240 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/index.ts @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +export { + listByResourceGroup, + $delete, + update, + get, + createOrUpdate, + listBySubscription, +} from "./operations.js"; +export { + NetworkAnchorsListByResourceGroupOptionalParams, + NetworkAnchorsDeleteOptionalParams, + NetworkAnchorsUpdateOptionalParams, + NetworkAnchorsGetOptionalParams, + NetworkAnchorsCreateOrUpdateOptionalParams, + NetworkAnchorsListBySubscriptionOptionalParams, +} from "./options.js"; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/operations.ts new file mode 100644 index 000000000000..88cbda9bc0ba --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/operations.ts @@ -0,0 +1,361 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _NetworkAnchorListResult, + NetworkAnchor, + NetworkAnchorUpdate, +} from "../../models/models.js"; +import { + errorResponseDeserializer, + _networkAnchorListResultDeserializer, + networkAnchorSerializer, + networkAnchorDeserializer, + networkAnchorUpdateSerializer, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { + NetworkAnchorsListByResourceGroupOptionalParams, + NetworkAnchorsDeleteOptionalParams, + NetworkAnchorsUpdateOptionalParams, + NetworkAnchorsGetOptionalParams, + NetworkAnchorsCreateOrUpdateOptionalParams, + NetworkAnchorsListBySubscriptionOptionalParams, +} from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +export function _listByResourceGroupSend( + context: Client, + resourceGroupName: string, + options: NetworkAnchorsListByResourceGroupOptionalParams = { + requestOptions: {}, + }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listByResourceGroupDeserialize( + result: PathUncheckedResponse, +): Promise<_NetworkAnchorListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _networkAnchorListResultDeserializer(result.body); +} + +/** List NetworkAnchor resources by resource group */ +export function listByResourceGroup( + context: Client, + resourceGroupName: string, + options: NetworkAnchorsListByResourceGroupOptionalParams = { + requestOptions: {}, + }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listByResourceGroupSend(context, resourceGroupName, options), + _listByResourceGroupDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} + +export function _$deleteSend( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + options: NetworkAnchorsDeleteOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + networkAnchorName: networkAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); +} + +export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["202", "204", "200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return; +} + +/** Delete a NetworkAnchor */ +/** + * @fixme delete is a reserved word that cannot be used as an operation name. + * Please add @clientName("clientName") or @clientName("", "javascript") + * to the operation to override the generated name. + */ +export function $delete( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + options: NetworkAnchorsDeleteOptionalParams = { requestOptions: {} }, +): PollerLike, void> { + return getLongRunningPoller(context, _$deleteDeserialize, ["202", "204", "200"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => _$deleteSend(context, resourceGroupName, networkAnchorName, options), + resourceLocationConfig: "location", + }) as PollerLike, void>; +} + +export function _updateSend( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + properties: NetworkAnchorUpdate, + options: NetworkAnchorsUpdateOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + networkAnchorName: networkAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).patch({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: networkAnchorUpdateSerializer(properties), + }); +} + +export async function _updateDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200", "202"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return networkAnchorDeserializer(result.body); +} + +/** Update a NetworkAnchor */ +export function update( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + properties: NetworkAnchorUpdate, + options: NetworkAnchorsUpdateOptionalParams = { requestOptions: {} }, +): PollerLike, NetworkAnchor> { + return getLongRunningPoller(context, _updateDeserialize, ["200", "202"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _updateSend(context, resourceGroupName, networkAnchorName, properties, options), + resourceLocationConfig: "location", + }) as PollerLike, NetworkAnchor>; +} + +export function _getSend( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + options: NetworkAnchorsGetOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + networkAnchorName: networkAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _getDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return networkAnchorDeserializer(result.body); +} + +/** Get a NetworkAnchor */ +export async function get( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + options: NetworkAnchorsGetOptionalParams = { requestOptions: {} }, +): Promise { + const result = await _getSend(context, resourceGroupName, networkAnchorName, options); + return _getDeserialize(result); +} + +export function _createOrUpdateSend( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + resource: NetworkAnchor, + options: NetworkAnchorsCreateOrUpdateOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + networkAnchorName: networkAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).put({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: networkAnchorSerializer(resource), + }); +} + +export async function _createOrUpdateDeserialize( + result: PathUncheckedResponse, +): Promise { + const expectedStatuses = ["200", "201", "202"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return networkAnchorDeserializer(result.body); +} + +/** Create a NetworkAnchor */ +export function createOrUpdate( + context: Client, + resourceGroupName: string, + networkAnchorName: string, + resource: NetworkAnchor, + options: NetworkAnchorsCreateOrUpdateOptionalParams = { requestOptions: {} }, +): PollerLike, NetworkAnchor> { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _createOrUpdateSend(context, resourceGroupName, networkAnchorName, resource, options), + resourceLocationConfig: "azure-async-operation", + }) as PollerLike, NetworkAnchor>; +} + +export function _listBySubscriptionSend( + context: Client, + options: NetworkAnchorsListBySubscriptionOptionalParams = { + requestOptions: {}, + }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/networkAnchors{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listBySubscriptionDeserialize( + result: PathUncheckedResponse, +): Promise<_NetworkAnchorListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _networkAnchorListResultDeserializer(result.body); +} + +/** List NetworkAnchor resources by subscription ID */ +export function listBySubscription( + context: Client, + options: NetworkAnchorsListBySubscriptionOptionalParams = { + requestOptions: {}, + }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listBySubscriptionSend(context, options), + _listBySubscriptionDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/options.ts new file mode 100644 index 000000000000..6bc769a64749 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/networkAnchors/options.ts @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OperationOptions } from "@azure-rest/core-client"; + +/** Optional parameters. */ +export interface NetworkAnchorsListByResourceGroupOptionalParams extends OperationOptions {} + +/** Optional parameters. */ +export interface NetworkAnchorsDeleteOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface NetworkAnchorsUpdateOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface NetworkAnchorsGetOptionalParams extends OperationOptions {} + +/** Optional parameters. */ +export interface NetworkAnchorsCreateOrUpdateOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface NetworkAnchorsListBySubscriptionOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/operations/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/operations/operations.ts index 32f975236aaa..e6044f116888 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/operations/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/operations/operations.ts @@ -1,25 +1,18 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { _OperationListResult, Operation } from "../../models/models.js"; import { - _OperationListResult, _operationListResultDeserializer, - Operation, errorResponseDeserializer, } from "../../models/models.js"; -import { OperationsListOptionalParams } from "./options.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { OperationsListOptionalParams } from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/operations/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/operations/options.ts index c461016ad1c5..b9a3fd9758a3 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/operations/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/operations/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface OperationsListOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/oracleDatabaseManagementContext.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/oracleDatabaseManagementContext.ts index 3a1b4c5071b8..dcca15901f04 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/oracleDatabaseManagementContext.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/oracleDatabaseManagementContext.ts @@ -3,8 +3,11 @@ import { logger } from "../logger.js"; import { KnownVersions } from "../models/models.js"; -import { Client, ClientOptions, getClient } from "@azure-rest/core-client"; -import { TokenCredential } from "@azure/core-auth"; +import type { AzureSupportedClouds } from "../static-helpers/cloudSettingHelpers.js"; +import { getArmEndpoint } from "../static-helpers/cloudSettingHelpers.js"; +import type { Client, ClientOptions } from "@azure-rest/core-client"; +import { getClient } from "@azure-rest/core-client"; +import type { TokenCredential } from "@azure/core-auth"; export interface OracleDatabaseManagementContext extends Client { /** The API version to use for this operation. */ @@ -19,6 +22,8 @@ export interface OracleDatabaseManagementClientOptionalParams extends ClientOpti /** The API version to use for this operation. */ /** Known values of {@link KnownVersions} that the service accepts. */ apiVersion?: string; + /** Specifies the Azure cloud environment for the client. */ + cloudSetting?: AzureSupportedClouds; } export function createOracleDatabaseManagement( @@ -26,9 +31,10 @@ export function createOracleDatabaseManagement( subscriptionId: string, options: OracleDatabaseManagementClientOptionalParams = {}, ): OracleDatabaseManagementContext { - const endpointUrl = options.endpoint ?? options.baseUrl ?? "https://management.azure.com"; + const endpointUrl = + options.endpoint ?? getArmEndpoint(options.cloudSetting) ?? "https://management.azure.com"; const prefixFromOptions = options?.userAgentOptions?.userAgentPrefix; - const userAgentInfo = `azsdk-js-arm-oracledatabase/2.0.0`; + const userAgentInfo = `azsdk-js-arm-oracledatabase/3.0.0`; const userAgentPrefix = prefixFromOptions ? `${prefixFromOptions} azsdk-js-api ${userAgentInfo}` : `azsdk-js-api ${userAgentInfo}`; @@ -42,7 +48,7 @@ export function createOracleDatabaseManagement( }; const clientContext = getClient(endpointUrl, credential, updatedOptions); clientContext.pipeline.removePolicy({ name: "ApiVersionPolicy" }); - const apiVersion = options.apiVersion ?? "2025-03-01"; + const apiVersion = options.apiVersion ?? "2025-09-01"; clientContext.pipeline.addPolicy({ name: "ClientApiVersionPolicy", sendRequest: (req, next) => { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/operations.ts index fb7ea7d0d5cb..0e32c4b407d7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/operations.ts @@ -1,26 +1,32 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _OracleSubscriptionListResult, + OracleSubscription, + OracleSubscriptionUpdate, + CloudAccountDetails, + SaasSubscriptionDetails, + ActivationLinks, + AzureSubscriptions, +} from "../../models/models.js"; import { errorResponseDeserializer, - _OracleSubscriptionListResult, _oracleSubscriptionListResultDeserializer, - OracleSubscription, oracleSubscriptionSerializer, oracleSubscriptionDeserializer, - OracleSubscriptionUpdate, oracleSubscriptionUpdateSerializer, - CloudAccountDetails, cloudAccountDetailsDeserializer, - SaasSubscriptionDetails, saasSubscriptionDetailsDeserializer, - ActivationLinks, activationLinksDeserializer, - AzureSubscriptions, azureSubscriptionsSerializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { OracleSubscriptionsAddAzureSubscriptionsOptionalParams, OracleSubscriptionsListActivationLinksOptionalParams, OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, @@ -31,19 +37,9 @@ import { OracleSubscriptionsCreateOrUpdateOptionalParams, OracleSubscriptionsListBySubscriptionOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _addAzureSubscriptionsSend( context: Client, @@ -65,10 +61,6 @@ export function _addAzureSubscriptionsSend( return context.path(path).post({ ...operationOptionsToRequestParameters(options), contentType: "application/json", - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, body: azureSubscriptionsSerializer(body), }); } @@ -275,13 +267,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -440,7 +426,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -458,7 +444,7 @@ export function createOrUpdate( requestOptions: {}, }, ): PollerLike, OracleSubscription> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => _createOrUpdateSend(context, resource, options), diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/options.ts index ecae8bc9fcbd..99394ab486ce 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/oracleSubscriptions/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface OracleSubscriptionsAddAzureSubscriptionsOptionalParams extends OperationOptions { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/index.ts new file mode 100644 index 000000000000..04ec418a9ada --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/index.ts @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +export { + listByResourceGroup, + $delete, + update, + get, + createOrUpdate, + listBySubscription, +} from "./operations.js"; +export { + ResourceAnchorsListByResourceGroupOptionalParams, + ResourceAnchorsDeleteOptionalParams, + ResourceAnchorsUpdateOptionalParams, + ResourceAnchorsGetOptionalParams, + ResourceAnchorsCreateOrUpdateOptionalParams, + ResourceAnchorsListBySubscriptionOptionalParams, +} from "./options.js"; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/operations.ts new file mode 100644 index 000000000000..3e269c014a3e --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/operations.ts @@ -0,0 +1,361 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + _ResourceAnchorListResult, + ResourceAnchor, + ResourceAnchorUpdate, +} from "../../models/models.js"; +import { + errorResponseDeserializer, + _resourceAnchorListResultDeserializer, + resourceAnchorSerializer, + resourceAnchorDeserializer, + resourceAnchorUpdateSerializer, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { + ResourceAnchorsListByResourceGroupOptionalParams, + ResourceAnchorsDeleteOptionalParams, + ResourceAnchorsUpdateOptionalParams, + ResourceAnchorsGetOptionalParams, + ResourceAnchorsCreateOrUpdateOptionalParams, + ResourceAnchorsListBySubscriptionOptionalParams, +} from "./options.js"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +export function _listByResourceGroupSend( + context: Client, + resourceGroupName: string, + options: ResourceAnchorsListByResourceGroupOptionalParams = { + requestOptions: {}, + }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listByResourceGroupDeserialize( + result: PathUncheckedResponse, +): Promise<_ResourceAnchorListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _resourceAnchorListResultDeserializer(result.body); +} + +/** List ResourceAnchor resources by resource group */ +export function listByResourceGroup( + context: Client, + resourceGroupName: string, + options: ResourceAnchorsListByResourceGroupOptionalParams = { + requestOptions: {}, + }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listByResourceGroupSend(context, resourceGroupName, options), + _listByResourceGroupDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} + +export function _$deleteSend( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + options: ResourceAnchorsDeleteOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + resourceAnchorName: resourceAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); +} + +export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["202", "204", "200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return; +} + +/** Delete a ResourceAnchor */ +/** + * @fixme delete is a reserved word that cannot be used as an operation name. + * Please add @clientName("clientName") or @clientName("", "javascript") + * to the operation to override the generated name. + */ +export function $delete( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + options: ResourceAnchorsDeleteOptionalParams = { requestOptions: {} }, +): PollerLike, void> { + return getLongRunningPoller(context, _$deleteDeserialize, ["202", "204", "200"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => _$deleteSend(context, resourceGroupName, resourceAnchorName, options), + resourceLocationConfig: "location", + }) as PollerLike, void>; +} + +export function _updateSend( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + properties: ResourceAnchorUpdate, + options: ResourceAnchorsUpdateOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + resourceAnchorName: resourceAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).patch({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: resourceAnchorUpdateSerializer(properties), + }); +} + +export async function _updateDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200", "202"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return resourceAnchorDeserializer(result.body); +} + +/** Update a ResourceAnchor */ +export function update( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + properties: ResourceAnchorUpdate, + options: ResourceAnchorsUpdateOptionalParams = { requestOptions: {} }, +): PollerLike, ResourceAnchor> { + return getLongRunningPoller(context, _updateDeserialize, ["200", "202"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _updateSend(context, resourceGroupName, resourceAnchorName, properties, options), + resourceLocationConfig: "location", + }) as PollerLike, ResourceAnchor>; +} + +export function _getSend( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + options: ResourceAnchorsGetOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + resourceAnchorName: resourceAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _getDeserialize(result: PathUncheckedResponse): Promise { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return resourceAnchorDeserializer(result.body); +} + +/** Get a ResourceAnchor */ +export async function get( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + options: ResourceAnchorsGetOptionalParams = { requestOptions: {} }, +): Promise { + const result = await _getSend(context, resourceGroupName, resourceAnchorName, options); + return _getDeserialize(result); +} + +export function _createOrUpdateSend( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + resource: ResourceAnchor, + options: ResourceAnchorsCreateOrUpdateOptionalParams = { requestOptions: {} }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + resourceGroupName: resourceGroupName, + resourceAnchorName: resourceAnchorName, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).put({ + ...operationOptionsToRequestParameters(options), + contentType: "application/json", + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + body: resourceAnchorSerializer(resource), + }); +} + +export async function _createOrUpdateDeserialize( + result: PathUncheckedResponse, +): Promise { + const expectedStatuses = ["200", "201", "202"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return resourceAnchorDeserializer(result.body); +} + +/** Create a ResourceAnchor */ +export function createOrUpdate( + context: Client, + resourceGroupName: string, + resourceAnchorName: string, + resource: ResourceAnchor, + options: ResourceAnchorsCreateOrUpdateOptionalParams = { requestOptions: {} }, +): PollerLike, ResourceAnchor> { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { + updateIntervalInMs: options?.updateIntervalInMs, + abortSignal: options?.abortSignal, + getInitialResponse: () => + _createOrUpdateSend(context, resourceGroupName, resourceAnchorName, resource, options), + resourceLocationConfig: "azure-async-operation", + }) as PollerLike, ResourceAnchor>; +} + +export function _listBySubscriptionSend( + context: Client, + options: ResourceAnchorsListBySubscriptionOptionalParams = { + requestOptions: {}, + }, +): StreamableMethod { + const path = expandUrlTemplate( + "/subscriptions/{subscriptionId}/providers/Oracle.Database/resourceAnchors{?api%2Dversion}", + { + subscriptionId: context.subscriptionId, + "api%2Dversion": context.apiVersion, + }, + { + allowReserved: options?.requestOptions?.skipUrlEncoding, + }, + ); + return context.path(path).get({ + ...operationOptionsToRequestParameters(options), + headers: { + accept: "application/json", + ...options.requestOptions?.headers, + }, + }); +} + +export async function _listBySubscriptionDeserialize( + result: PathUncheckedResponse, +): Promise<_ResourceAnchorListResult> { + const expectedStatuses = ["200"]; + if (!expectedStatuses.includes(result.status)) { + const error = createRestError(result); + error.details = errorResponseDeserializer(result.body); + throw error; + } + + return _resourceAnchorListResultDeserializer(result.body); +} + +/** List ResourceAnchor resources by subscription ID */ +export function listBySubscription( + context: Client, + options: ResourceAnchorsListBySubscriptionOptionalParams = { + requestOptions: {}, + }, +): PagedAsyncIterableIterator { + return buildPagedAsyncIterator( + context, + () => _listBySubscriptionSend(context, options), + _listBySubscriptionDeserialize, + ["200"], + { itemName: "value", nextLinkName: "nextLink" }, + ); +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/options.ts new file mode 100644 index 000000000000..7ca8f86def5c --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/resourceAnchors/options.ts @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OperationOptions } from "@azure-rest/core-client"; + +/** Optional parameters. */ +export interface ResourceAnchorsListByResourceGroupOptionalParams extends OperationOptions {} + +/** Optional parameters. */ +export interface ResourceAnchorsDeleteOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface ResourceAnchorsUpdateOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface ResourceAnchorsGetOptionalParams extends OperationOptions {} + +/** Optional parameters. */ +export interface ResourceAnchorsCreateOrUpdateOptionalParams extends OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; +} + +/** Optional parameters. */ +export interface ResourceAnchorsListBySubscriptionOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/operations.ts index e17476ea86b1..f8c084241224 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/operations.ts @@ -1,29 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { SystemVersion, _SystemVersionListResult } from "../../models/models.js"; import { errorResponseDeserializer, - SystemVersion, systemVersionDeserializer, - _SystemVersionListResult, _systemVersionListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { SystemVersionsListByLocationOptionalParams, SystemVersionsGetOptionalParams, } from "./options.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; export function _listByLocationSend( context: Client, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/options.ts index f4cc2afb96ee..0781751f16ff 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/systemVersions/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface SystemVersionsListByLocationOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/operations.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/operations.ts index 5fe1f2556130..9a559fdfa2d3 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/operations.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/operations.ts @@ -1,34 +1,30 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { OracleDatabaseManagementContext as Client } from "../index.js"; +import type { + VirtualNetworkAddress, + _VirtualNetworkAddressListResult, +} from "../../models/models.js"; import { errorResponseDeserializer, - VirtualNetworkAddress, virtualNetworkAddressSerializer, virtualNetworkAddressDeserializer, - _VirtualNetworkAddressListResult, _virtualNetworkAddressListResultDeserializer, } from "../../models/models.js"; -import { +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import { buildPagedAsyncIterator } from "../../static-helpers/pagingHelpers.js"; +import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; +import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; +import type { VirtualNetworkAddressesListByParentOptionalParams, VirtualNetworkAddressesDeleteOptionalParams, VirtualNetworkAddressesGetOptionalParams, VirtualNetworkAddressesCreateOrUpdateOptionalParams, } from "./options.js"; -import { getLongRunningPoller } from "../../static-helpers/pollingHelpers.js"; -import { expandUrlTemplate } from "../../static-helpers/urlTemplate.js"; -import { - PagedAsyncIterableIterator, - buildPagedAsyncIterator, -} from "../../static-helpers/pagingHelpers.js"; -import { - StreamableMethod, - PathUncheckedResponse, - createRestError, - operationOptionsToRequestParameters, -} from "@azure-rest/core-client"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError, operationOptionsToRequestParameters } from "@azure-rest/core-client"; +import type { PollerLike, OperationState } from "@azure/core-lro"; export function _listByParentSend( context: Client, @@ -110,13 +106,7 @@ export function _$deleteSend( allowReserved: options?.requestOptions?.skipUrlEncoding, }, ); - return context.path(path).delete({ - ...operationOptionsToRequestParameters(options), - headers: { - accept: "application/json", - ...options.requestOptions?.headers, - }, - }); + return context.path(path).delete({ ...operationOptionsToRequestParameters(options) }); } export async function _$deleteDeserialize(result: PathUncheckedResponse): Promise { @@ -255,7 +245,7 @@ export function _createOrUpdateSend( export async function _createOrUpdateDeserialize( result: PathUncheckedResponse, ): Promise { - const expectedStatuses = ["200", "201"]; + const expectedStatuses = ["200", "201", "202"]; if (!expectedStatuses.includes(result.status)) { const error = createRestError(result); error.details = errorResponseDeserializer(result.body); @@ -276,7 +266,7 @@ export function createOrUpdate( requestOptions: {}, }, ): PollerLike, VirtualNetworkAddress> { - return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201"], { + return getLongRunningPoller(context, _createOrUpdateDeserialize, ["200", "201", "202"], { updateIntervalInMs: options?.updateIntervalInMs, abortSignal: options?.abortSignal, getInitialResponse: () => diff --git a/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/options.ts b/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/options.ts index a12d16f4add5..95415f25e1fd 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/options.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/api/virtualNetworkAddresses/options.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OperationOptions } from "@azure-rest/core-client"; +import type { OperationOptions } from "@azure-rest/core-client"; /** Optional parameters. */ export interface VirtualNetworkAddressesListByParentOptionalParams extends OperationOptions {} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseBackups/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseBackups/index.ts index 1ce2da10f2a3..e1fcc42f2218 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseBackups/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseBackups/index.ts @@ -1,15 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { AutonomousDatabaseBackup, AutonomousDatabaseBackupUpdate } from "../../models/models.js"; -import { - AutonomousDatabaseBackupsListByParentOptionalParams, - AutonomousDatabaseBackupsUpdateOptionalParams, - AutonomousDatabaseBackupsDeleteOptionalParams, - AutonomousDatabaseBackupsGetOptionalParams, - AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, -} from "../../api/autonomousDatabaseBackups/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { listByParent, update, @@ -17,8 +9,19 @@ import { get, createOrUpdate, } from "../../api/autonomousDatabaseBackups/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + AutonomousDatabaseBackupsListByParentOptionalParams, + AutonomousDatabaseBackupsUpdateOptionalParams, + AutonomousDatabaseBackupsDeleteOptionalParams, + AutonomousDatabaseBackupsGetOptionalParams, + AutonomousDatabaseBackupsCreateOrUpdateOptionalParams, +} from "../../api/autonomousDatabaseBackups/options.js"; +import type { + AutonomousDatabaseBackup, + AutonomousDatabaseBackupUpdate, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a AutonomousDatabaseBackups operations. */ export interface AutonomousDatabaseBackupsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseCharacterSets/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseCharacterSets/index.ts index ba491b991bfb..5c5a016dc3fa 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseCharacterSets/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseCharacterSets/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { AutonomousDatabaseCharacterSet } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/autonomousDatabaseCharacterSets/operations.js"; +import type { AutonomousDatabaseCharacterSetsListByLocationOptionalParams, AutonomousDatabaseCharacterSetsGetOptionalParams, } from "../../api/autonomousDatabaseCharacterSets/options.js"; -import { listByLocation, get } from "../../api/autonomousDatabaseCharacterSets/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { AutonomousDatabaseCharacterSet } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a AutonomousDatabaseCharacterSets operations. */ export interface AutonomousDatabaseCharacterSetsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseNationalCharacterSets/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseNationalCharacterSets/index.ts index 129d89bcf515..4a054b00d76a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseNationalCharacterSets/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseNationalCharacterSets/index.ts @@ -1,17 +1,17 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { AutonomousDatabaseNationalCharacterSet } from "../../models/models.js"; -import { - AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, - AutonomousDatabaseNationalCharacterSetsGetOptionalParams, -} from "../../api/autonomousDatabaseNationalCharacterSets/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { listByLocation, get, } from "../../api/autonomousDatabaseNationalCharacterSets/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { + AutonomousDatabaseNationalCharacterSetsListByLocationOptionalParams, + AutonomousDatabaseNationalCharacterSetsGetOptionalParams, +} from "../../api/autonomousDatabaseNationalCharacterSets/options.js"; +import type { AutonomousDatabaseNationalCharacterSet } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a AutonomousDatabaseNationalCharacterSets operations. */ export interface AutonomousDatabaseNationalCharacterSetsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseVersions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseVersions/index.ts index 52dd105070f3..20d6a00a62e3 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseVersions/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabaseVersions/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { AutonomousDbVersion } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/autonomousDatabaseVersions/operations.js"; +import type { AutonomousDatabaseVersionsListByLocationOptionalParams, AutonomousDatabaseVersionsGetOptionalParams, } from "../../api/autonomousDatabaseVersions/options.js"; -import { listByLocation, get } from "../../api/autonomousDatabaseVersions/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { AutonomousDbVersion } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a AutonomousDatabaseVersions operations. */ export interface AutonomousDatabaseVersionsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabases/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabases/index.ts index 27d2bc986557..865631b98075 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabases/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/autonomousDatabases/index.ts @@ -1,31 +1,9 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { - AutonomousDatabase, - DisasterRecoveryConfigurationDetails, - AutonomousDatabaseUpdate, - PeerDbDetails, - GenerateAutonomousDatabaseWalletDetails, - AutonomousDatabaseWalletFile, - RestoreAutonomousDatabaseDetails, -} from "../../models/models.js"; -import { - AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams, - AutonomousDatabasesShrinkOptionalParams, - AutonomousDatabasesRestoreOptionalParams, - AutonomousDatabasesGenerateWalletOptionalParams, - AutonomousDatabasesFailoverOptionalParams, - AutonomousDatabasesSwitchoverOptionalParams, - AutonomousDatabasesListByResourceGroupOptionalParams, - AutonomousDatabasesUpdateOptionalParams, - AutonomousDatabasesDeleteOptionalParams, - AutonomousDatabasesGetOptionalParams, - AutonomousDatabasesCreateOrUpdateOptionalParams, - AutonomousDatabasesListBySubscriptionOptionalParams, -} from "../../api/autonomousDatabases/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { + action, changeDisasterRecoveryConfiguration, shrink, restore, @@ -39,11 +17,43 @@ import { createOrUpdate, listBySubscription, } from "../../api/autonomousDatabases/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + AutonomousDatabasesActionOptionalParams, + AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams, + AutonomousDatabasesShrinkOptionalParams, + AutonomousDatabasesRestoreOptionalParams, + AutonomousDatabasesGenerateWalletOptionalParams, + AutonomousDatabasesFailoverOptionalParams, + AutonomousDatabasesSwitchoverOptionalParams, + AutonomousDatabasesListByResourceGroupOptionalParams, + AutonomousDatabasesUpdateOptionalParams, + AutonomousDatabasesDeleteOptionalParams, + AutonomousDatabasesGetOptionalParams, + AutonomousDatabasesCreateOrUpdateOptionalParams, + AutonomousDatabasesListBySubscriptionOptionalParams, +} from "../../api/autonomousDatabases/options.js"; +import type { + AutonomousDatabase, + DisasterRecoveryConfigurationDetails, + AutonomousDatabaseUpdate, + PeerDbDetails, + GenerateAutonomousDatabaseWalletDetails, + AutonomousDatabaseWalletFile, + RestoreAutonomousDatabaseDetails, + AutonomousDatabaseLifecycleAction, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a AutonomousDatabases operations. */ export interface AutonomousDatabasesOperations { + /** Perform Lifecycle Management Action on Autonomous Database */ + action: ( + resourceGroupName: string, + autonomousdatabasename: string, + body: AutonomousDatabaseLifecycleAction, + options?: AutonomousDatabasesActionOptionalParams, + ) => PollerLike, AutonomousDatabase>; /** Perform ChangeDisasterRecoveryConfiguration action on Autonomous Database */ changeDisasterRecoveryConfiguration: ( resourceGroupName: string, @@ -129,6 +139,12 @@ export interface AutonomousDatabasesOperations { function _getAutonomousDatabases(context: OracleDatabaseManagementContext) { return { + action: ( + resourceGroupName: string, + autonomousdatabasename: string, + body: AutonomousDatabaseLifecycleAction, + options?: AutonomousDatabasesActionOptionalParams, + ) => action(context, resourceGroupName, autonomousdatabasename, body, options), changeDisasterRecoveryConfiguration: ( resourceGroupName: string, autonomousdatabasename: string, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudExadataInfrastructures/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudExadataInfrastructures/index.ts index 8d447085b749..8d54590eedf7 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudExadataInfrastructures/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudExadataInfrastructures/index.ts @@ -1,21 +1,9 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { - CloudExadataInfrastructure, - CloudExadataInfrastructureUpdate, -} from "../../models/models.js"; -import { - CloudExadataInfrastructuresAddStorageCapacityOptionalParams, - CloudExadataInfrastructuresListByResourceGroupOptionalParams, - CloudExadataInfrastructuresDeleteOptionalParams, - CloudExadataInfrastructuresUpdateOptionalParams, - CloudExadataInfrastructuresGetOptionalParams, - CloudExadataInfrastructuresCreateOrUpdateOptionalParams, - CloudExadataInfrastructuresListBySubscriptionOptionalParams, -} from "../../api/cloudExadataInfrastructures/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { + configureExascale, addStorageCapacity, listByResourceGroup, $delete, @@ -24,11 +12,33 @@ import { createOrUpdate, listBySubscription, } from "../../api/cloudExadataInfrastructures/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + CloudExadataInfrastructuresConfigureExascaleOptionalParams, + CloudExadataInfrastructuresAddStorageCapacityOptionalParams, + CloudExadataInfrastructuresListByResourceGroupOptionalParams, + CloudExadataInfrastructuresDeleteOptionalParams, + CloudExadataInfrastructuresUpdateOptionalParams, + CloudExadataInfrastructuresGetOptionalParams, + CloudExadataInfrastructuresCreateOrUpdateOptionalParams, + CloudExadataInfrastructuresListBySubscriptionOptionalParams, +} from "../../api/cloudExadataInfrastructures/options.js"; +import type { + CloudExadataInfrastructure, + CloudExadataInfrastructureUpdate, + ConfigureExascaleCloudExadataInfrastructureDetails, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a CloudExadataInfrastructures operations. */ export interface CloudExadataInfrastructuresOperations { + /** Configures Exascale on Cloud exadata infrastructure resource */ + configureExascale: ( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + body: ConfigureExascaleCloudExadataInfrastructureDetails, + options?: CloudExadataInfrastructuresConfigureExascaleOptionalParams, + ) => PollerLike, CloudExadataInfrastructure>; /** Perform add storage capacity on exadata infra */ addStorageCapacity: ( resourceGroupName: string, @@ -79,6 +89,13 @@ export interface CloudExadataInfrastructuresOperations { function _getCloudExadataInfrastructures(context: OracleDatabaseManagementContext) { return { + configureExascale: ( + resourceGroupName: string, + cloudexadatainfrastructurename: string, + body: ConfigureExascaleCloudExadataInfrastructureDetails, + options?: CloudExadataInfrastructuresConfigureExascaleOptionalParams, + ) => + configureExascale(context, resourceGroupName, cloudexadatainfrastructurename, body, options), addStorageCapacity: ( resourceGroupName: string, cloudexadatainfrastructurename: string, diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudVmClusters/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudVmClusters/index.ts index 24cc67335b27..46319bcbb772 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudVmClusters/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/cloudVmClusters/index.ts @@ -1,25 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { - CloudVmCluster, - CloudVmClusterUpdate, - AddRemoveDbNode, - PrivateIpAddressesFilter, - PrivateIpAddressProperties, -} from "../../models/models.js"; -import { - CloudVmClustersListPrivateIpAddressesOptionalParams, - CloudVmClustersRemoveVmsOptionalParams, - CloudVmClustersAddVmsOptionalParams, - CloudVmClustersListByResourceGroupOptionalParams, - CloudVmClustersDeleteOptionalParams, - CloudVmClustersUpdateOptionalParams, - CloudVmClustersGetOptionalParams, - CloudVmClustersCreateOrUpdateOptionalParams, - CloudVmClustersListBySubscriptionOptionalParams, -} from "../../api/cloudVmClusters/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { listPrivateIpAddresses, removeVms, @@ -31,8 +13,26 @@ import { createOrUpdate, listBySubscription, } from "../../api/cloudVmClusters/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + CloudVmClustersListPrivateIpAddressesOptionalParams, + CloudVmClustersRemoveVmsOptionalParams, + CloudVmClustersAddVmsOptionalParams, + CloudVmClustersListByResourceGroupOptionalParams, + CloudVmClustersDeleteOptionalParams, + CloudVmClustersUpdateOptionalParams, + CloudVmClustersGetOptionalParams, + CloudVmClustersCreateOrUpdateOptionalParams, + CloudVmClustersListBySubscriptionOptionalParams, +} from "../../api/cloudVmClusters/options.js"; +import type { + CloudVmCluster, + CloudVmClusterUpdate, + AddRemoveDbNode, + PrivateIpAddressesFilter, + PrivateIpAddressProperties, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a CloudVmClusters operations. */ export interface CloudVmClustersOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbNodes/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbNodes/index.ts index 9b458c9cc072..2189d897c790 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbNodes/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbNodes/index.ts @@ -1,16 +1,16 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { DbNode, DbNodeAction } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { action, listByParent, get } from "../../api/dbNodes/operations.js"; +import type { DbNodesActionOptionalParams, DbNodesListByParentOptionalParams, DbNodesGetOptionalParams, } from "../../api/dbNodes/options.js"; -import { action, listByParent, get } from "../../api/dbNodes/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { DbNode, DbNodeAction } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a DbNodes operations. */ export interface DbNodesOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbServers/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbServers/index.ts index 3ef82ed03cf4..4aaca03973b6 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbServers/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbServers/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { DbServer } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByParent, get } from "../../api/dbServers/operations.js"; +import type { DbServersListByParentOptionalParams, DbServersGetOptionalParams, } from "../../api/dbServers/options.js"; -import { listByParent, get } from "../../api/dbServers/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { DbServer } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a DbServers operations. */ export interface DbServersOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystemShapes/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystemShapes/index.ts index 3f7363cae0d1..f2ac2d9dcd14 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystemShapes/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystemShapes/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { DbSystemShape } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/dbSystemShapes/operations.js"; +import type { DbSystemShapesListByLocationOptionalParams, DbSystemShapesGetOptionalParams, } from "../../api/dbSystemShapes/options.js"; -import { listByLocation, get } from "../../api/dbSystemShapes/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { DbSystemShape } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a DbSystemShapes operations. */ export interface DbSystemShapesOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystems/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystems/index.ts new file mode 100644 index 000000000000..b72795cb9036 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbSystems/index.ts @@ -0,0 +1,105 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { + listByResourceGroup, + $delete, + update, + get, + createOrUpdate, + listBySubscription, +} from "../../api/dbSystems/operations.js"; +import type { + DbSystemsListByResourceGroupOptionalParams, + DbSystemsDeleteOptionalParams, + DbSystemsUpdateOptionalParams, + DbSystemsGetOptionalParams, + DbSystemsCreateOrUpdateOptionalParams, + DbSystemsListBySubscriptionOptionalParams, +} from "../../api/dbSystems/options.js"; +import type { DbSystem, DbSystemUpdate } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +/** Interface representing a DbSystems operations. */ +export interface DbSystemsOperations { + /** List DbSystem resources by resource group */ + listByResourceGroup: ( + resourceGroupName: string, + options?: DbSystemsListByResourceGroupOptionalParams, + ) => PagedAsyncIterableIterator; + /** Delete a DbSystem */ + /** + * @fixme delete is a reserved word that cannot be used as an operation name. + * Please add @clientName("clientName") or @clientName("", "javascript") + * to the operation to override the generated name. + */ + delete: ( + resourceGroupName: string, + dbSystemName: string, + options?: DbSystemsDeleteOptionalParams, + ) => PollerLike, void>; + /** Update a DbSystem */ + update: ( + resourceGroupName: string, + dbSystemName: string, + properties: DbSystemUpdate, + options?: DbSystemsUpdateOptionalParams, + ) => PollerLike, DbSystem>; + /** Get a DbSystem */ + get: ( + resourceGroupName: string, + dbSystemName: string, + options?: DbSystemsGetOptionalParams, + ) => Promise; + /** Create a DbSystem */ + createOrUpdate: ( + resourceGroupName: string, + dbSystemName: string, + resource: DbSystem, + options?: DbSystemsCreateOrUpdateOptionalParams, + ) => PollerLike, DbSystem>; + /** List DbSystem resources by subscription ID */ + listBySubscription: ( + options?: DbSystemsListBySubscriptionOptionalParams, + ) => PagedAsyncIterableIterator; +} + +function _getDbSystems(context: OracleDatabaseManagementContext) { + return { + listByResourceGroup: ( + resourceGroupName: string, + options?: DbSystemsListByResourceGroupOptionalParams, + ) => listByResourceGroup(context, resourceGroupName, options), + delete: ( + resourceGroupName: string, + dbSystemName: string, + options?: DbSystemsDeleteOptionalParams, + ) => $delete(context, resourceGroupName, dbSystemName, options), + update: ( + resourceGroupName: string, + dbSystemName: string, + properties: DbSystemUpdate, + options?: DbSystemsUpdateOptionalParams, + ) => update(context, resourceGroupName, dbSystemName, properties, options), + get: (resourceGroupName: string, dbSystemName: string, options?: DbSystemsGetOptionalParams) => + get(context, resourceGroupName, dbSystemName, options), + createOrUpdate: ( + resourceGroupName: string, + dbSystemName: string, + resource: DbSystem, + options?: DbSystemsCreateOrUpdateOptionalParams, + ) => createOrUpdate(context, resourceGroupName, dbSystemName, resource, options), + listBySubscription: (options?: DbSystemsListBySubscriptionOptionalParams) => + listBySubscription(context, options), + }; +} + +export function _getDbSystemsOperations( + context: OracleDatabaseManagementContext, +): DbSystemsOperations { + return { + ..._getDbSystems(context), + }; +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dbVersions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbVersions/index.ts new file mode 100644 index 000000000000..71fb64f5de09 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dbVersions/index.ts @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/dbVersions/operations.js"; +import type { + DbVersionsListByLocationOptionalParams, + DbVersionsGetOptionalParams, +} from "../../api/dbVersions/options.js"; +import type { DbVersion } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; + +/** Interface representing a DbVersions operations. */ +export interface DbVersionsOperations { + /** List DbVersion resources by SubscriptionLocationResource */ + listByLocation: ( + location: string, + options?: DbVersionsListByLocationOptionalParams, + ) => PagedAsyncIterableIterator; + /** Get a DbVersion */ + get: ( + location: string, + dbversionsname: string, + options?: DbVersionsGetOptionalParams, + ) => Promise; +} + +function _getDbVersions(context: OracleDatabaseManagementContext) { + return { + listByLocation: (location: string, options?: DbVersionsListByLocationOptionalParams) => + listByLocation(context, location, options), + get: (location: string, dbversionsname: string, options?: DbVersionsGetOptionalParams) => + get(context, location, dbversionsname, options), + }; +} + +export function _getDbVersionsOperations( + context: OracleDatabaseManagementContext, +): DbVersionsOperations { + return { + ..._getDbVersions(context), + }; +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateViews/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateViews/index.ts index ce22d2d29ef4..a3d868c71611 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateViews/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateViews/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { DnsPrivateView } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/dnsPrivateViews/operations.js"; +import type { DnsPrivateViewsListByLocationOptionalParams, DnsPrivateViewsGetOptionalParams, } from "../../api/dnsPrivateViews/options.js"; -import { listByLocation, get } from "../../api/dnsPrivateViews/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { DnsPrivateView } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a DnsPrivateViews operations. */ export interface DnsPrivateViewsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateZones/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateZones/index.ts index 5b80ab674f6e..c1e236e064e1 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateZones/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/dnsPrivateZones/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { DnsPrivateZone } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/dnsPrivateZones/operations.js"; +import type { DnsPrivateZonesListByLocationOptionalParams, DnsPrivateZonesGetOptionalParams, } from "../../api/dnsPrivateZones/options.js"; -import { listByLocation, get } from "../../api/dnsPrivateZones/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { DnsPrivateZone } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a DnsPrivateZones operations. */ export interface DnsPrivateZonesOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/exadbVmClusters/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/exadbVmClusters/index.ts index f0834c9ed427..1ff1b6ed2545 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/exadbVmClusters/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/exadbVmClusters/index.ts @@ -1,21 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { - ExadbVmCluster, - ExadbVmClusterUpdate, - RemoveVirtualMachineFromExadbVmClusterDetails, -} from "../../models/models.js"; -import { - ExadbVmClustersRemoveVmsOptionalParams, - ExadbVmClustersListByResourceGroupOptionalParams, - ExadbVmClustersDeleteOptionalParams, - ExadbVmClustersUpdateOptionalParams, - ExadbVmClustersGetOptionalParams, - ExadbVmClustersCreateOrUpdateOptionalParams, - ExadbVmClustersListBySubscriptionOptionalParams, -} from "../../api/exadbVmClusters/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { removeVms, listByResourceGroup, @@ -25,8 +11,22 @@ import { createOrUpdate, listBySubscription, } from "../../api/exadbVmClusters/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + ExadbVmClustersRemoveVmsOptionalParams, + ExadbVmClustersListByResourceGroupOptionalParams, + ExadbVmClustersDeleteOptionalParams, + ExadbVmClustersUpdateOptionalParams, + ExadbVmClustersGetOptionalParams, + ExadbVmClustersCreateOrUpdateOptionalParams, + ExadbVmClustersListBySubscriptionOptionalParams, +} from "../../api/exadbVmClusters/options.js"; +import type { + ExadbVmCluster, + ExadbVmClusterUpdate, + RemoveVirtualMachineFromExadbVmClusterDetails, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a ExadbVmClusters operations. */ export interface ExadbVmClustersOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbNodes/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbNodes/index.ts index 3055295276c1..26de6d36c250 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbNodes/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbNodes/index.ts @@ -1,16 +1,16 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { DbNodeAction, ExascaleDbNode, DbActionResponse } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { action, listByParent, get } from "../../api/exascaleDbNodes/operations.js"; +import type { ExascaleDbNodesActionOptionalParams, ExascaleDbNodesListByParentOptionalParams, ExascaleDbNodesGetOptionalParams, } from "../../api/exascaleDbNodes/options.js"; -import { action, listByParent, get } from "../../api/exascaleDbNodes/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { DbNodeAction, ExascaleDbNode, DbActionResponse } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a ExascaleDbNodes operations. */ export interface ExascaleDbNodesOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbStorageVaults/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbStorageVaults/index.ts index 59f3f687fb40..e2c1ef36e7e8 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbStorageVaults/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/exascaleDbStorageVaults/index.ts @@ -1,16 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { ExascaleDbStorageVault, ExascaleDbStorageVaultTagsUpdate } from "../../models/models.js"; -import { - ExascaleDbStorageVaultsListBySubscriptionOptionalParams, - ExascaleDbStorageVaultsListByResourceGroupOptionalParams, - ExascaleDbStorageVaultsDeleteOptionalParams, - ExascaleDbStorageVaultsUpdateOptionalParams, - ExascaleDbStorageVaultsCreateOptionalParams, - ExascaleDbStorageVaultsGetOptionalParams, -} from "../../api/exascaleDbStorageVaults/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { listBySubscription, listByResourceGroup, @@ -19,8 +10,20 @@ import { create, get, } from "../../api/exascaleDbStorageVaults/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + ExascaleDbStorageVaultsListBySubscriptionOptionalParams, + ExascaleDbStorageVaultsListByResourceGroupOptionalParams, + ExascaleDbStorageVaultsDeleteOptionalParams, + ExascaleDbStorageVaultsUpdateOptionalParams, + ExascaleDbStorageVaultsCreateOptionalParams, + ExascaleDbStorageVaultsGetOptionalParams, +} from "../../api/exascaleDbStorageVaults/options.js"; +import type { + ExascaleDbStorageVault, + ExascaleDbStorageVaultTagsUpdate, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a ExascaleDbStorageVaults operations. */ export interface ExascaleDbStorageVaultsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/flexComponents/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/flexComponents/index.ts index 8b934b46d05e..489bb26c1dee 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/flexComponents/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/flexComponents/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { FlexComponent } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByParent, get } from "../../api/flexComponents/operations.js"; +import type { FlexComponentsListByParentOptionalParams, FlexComponentsGetOptionalParams, } from "../../api/flexComponents/options.js"; -import { listByParent, get } from "../../api/flexComponents/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { FlexComponent } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a FlexComponents operations. */ export interface FlexComponentsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/giMinorVersions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/giMinorVersions/index.ts index 39bd1d2885d8..84b5a3d2d2b4 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/giMinorVersions/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/giMinorVersions/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { GiMinorVersion } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { get, listByParent } from "../../api/giMinorVersions/operations.js"; +import type { GiMinorVersionsGetOptionalParams, GiMinorVersionsListByParentOptionalParams, } from "../../api/giMinorVersions/options.js"; -import { get, listByParent } from "../../api/giMinorVersions/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { GiMinorVersion } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a GiMinorVersions operations. */ export interface GiMinorVersionsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/giVersions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/giVersions/index.ts index 172733d2c7b7..15cebe3730a1 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/giVersions/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/giVersions/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { GiVersion } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/giVersions/operations.js"; +import type { GiVersionsListByLocationOptionalParams, GiVersionsGetOptionalParams, } from "../../api/giVersions/options.js"; -import { listByLocation, get } from "../../api/giVersions/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { GiVersion } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a GiVersions operations. */ export interface GiVersionsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/index.ts index a95fc049873e..b7d8f9125887 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/index.ts @@ -10,7 +10,9 @@ export { CloudExadataInfrastructuresOperations } from "./cloudExadataInfrastruct export { CloudVmClustersOperations } from "./cloudVmClusters/index.js"; export { DbNodesOperations } from "./dbNodes/index.js"; export { DbServersOperations } from "./dbServers/index.js"; +export { DbSystemsOperations } from "./dbSystems/index.js"; export { DbSystemShapesOperations } from "./dbSystemShapes/index.js"; +export { DbVersionsOperations } from "./dbVersions/index.js"; export { DnsPrivateViewsOperations } from "./dnsPrivateViews/index.js"; export { DnsPrivateZonesOperations } from "./dnsPrivateZones/index.js"; export { ExadbVmClustersOperations } from "./exadbVmClusters/index.js"; @@ -19,7 +21,9 @@ export { ExascaleDbStorageVaultsOperations } from "./exascaleDbStorageVaults/ind export { FlexComponentsOperations } from "./flexComponents/index.js"; export { GiMinorVersionsOperations } from "./giMinorVersions/index.js"; export { GiVersionsOperations } from "./giVersions/index.js"; +export { NetworkAnchorsOperations } from "./networkAnchors/index.js"; export { OperationsOperations } from "./operations/index.js"; export { OracleSubscriptionsOperations } from "./oracleSubscriptions/index.js"; +export { ResourceAnchorsOperations } from "./resourceAnchors/index.js"; export { SystemVersionsOperations } from "./systemVersions/index.js"; export { VirtualNetworkAddressesOperations } from "./virtualNetworkAddresses/index.js"; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/networkAnchors/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/networkAnchors/index.ts new file mode 100644 index 000000000000..1f28a6fc301e --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/networkAnchors/index.ts @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { + listByResourceGroup, + $delete, + update, + get, + createOrUpdate, + listBySubscription, +} from "../../api/networkAnchors/operations.js"; +import type { + NetworkAnchorsListByResourceGroupOptionalParams, + NetworkAnchorsDeleteOptionalParams, + NetworkAnchorsUpdateOptionalParams, + NetworkAnchorsGetOptionalParams, + NetworkAnchorsCreateOrUpdateOptionalParams, + NetworkAnchorsListBySubscriptionOptionalParams, +} from "../../api/networkAnchors/options.js"; +import type { NetworkAnchor, NetworkAnchorUpdate } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +/** Interface representing a NetworkAnchors operations. */ +export interface NetworkAnchorsOperations { + /** List NetworkAnchor resources by resource group */ + listByResourceGroup: ( + resourceGroupName: string, + options?: NetworkAnchorsListByResourceGroupOptionalParams, + ) => PagedAsyncIterableIterator; + /** Delete a NetworkAnchor */ + /** + * @fixme delete is a reserved word that cannot be used as an operation name. + * Please add @clientName("clientName") or @clientName("", "javascript") + * to the operation to override the generated name. + */ + delete: ( + resourceGroupName: string, + networkAnchorName: string, + options?: NetworkAnchorsDeleteOptionalParams, + ) => PollerLike, void>; + /** Update a NetworkAnchor */ + update: ( + resourceGroupName: string, + networkAnchorName: string, + properties: NetworkAnchorUpdate, + options?: NetworkAnchorsUpdateOptionalParams, + ) => PollerLike, NetworkAnchor>; + /** Get a NetworkAnchor */ + get: ( + resourceGroupName: string, + networkAnchorName: string, + options?: NetworkAnchorsGetOptionalParams, + ) => Promise; + /** Create a NetworkAnchor */ + createOrUpdate: ( + resourceGroupName: string, + networkAnchorName: string, + resource: NetworkAnchor, + options?: NetworkAnchorsCreateOrUpdateOptionalParams, + ) => PollerLike, NetworkAnchor>; + /** List NetworkAnchor resources by subscription ID */ + listBySubscription: ( + options?: NetworkAnchorsListBySubscriptionOptionalParams, + ) => PagedAsyncIterableIterator; +} + +function _getNetworkAnchors(context: OracleDatabaseManagementContext) { + return { + listByResourceGroup: ( + resourceGroupName: string, + options?: NetworkAnchorsListByResourceGroupOptionalParams, + ) => listByResourceGroup(context, resourceGroupName, options), + delete: ( + resourceGroupName: string, + networkAnchorName: string, + options?: NetworkAnchorsDeleteOptionalParams, + ) => $delete(context, resourceGroupName, networkAnchorName, options), + update: ( + resourceGroupName: string, + networkAnchorName: string, + properties: NetworkAnchorUpdate, + options?: NetworkAnchorsUpdateOptionalParams, + ) => update(context, resourceGroupName, networkAnchorName, properties, options), + get: ( + resourceGroupName: string, + networkAnchorName: string, + options?: NetworkAnchorsGetOptionalParams, + ) => get(context, resourceGroupName, networkAnchorName, options), + createOrUpdate: ( + resourceGroupName: string, + networkAnchorName: string, + resource: NetworkAnchor, + options?: NetworkAnchorsCreateOrUpdateOptionalParams, + ) => createOrUpdate(context, resourceGroupName, networkAnchorName, resource, options), + listBySubscription: (options?: NetworkAnchorsListBySubscriptionOptionalParams) => + listBySubscription(context, options), + }; +} + +export function _getNetworkAnchorsOperations( + context: OracleDatabaseManagementContext, +): NetworkAnchorsOperations { + return { + ..._getNetworkAnchors(context), + }; +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/operations/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/operations/index.ts index 52fd8c97b8d8..944e440452a1 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/operations/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/operations/index.ts @@ -1,11 +1,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { Operation } from "../../models/models.js"; -import { OperationsListOptionalParams } from "../../api/operations/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { list } from "../../api/operations/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { OperationsListOptionalParams } from "../../api/operations/options.js"; +import type { Operation } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a Operations operations. */ export interface OperationsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/oracleSubscriptions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/oracleSubscriptions/index.ts index cdcd6b55fb0c..02061b99134a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/oracleSubscriptions/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/oracleSubscriptions/index.ts @@ -1,26 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { - OracleSubscription, - OracleSubscriptionUpdate, - CloudAccountDetails, - SaasSubscriptionDetails, - ActivationLinks, - AzureSubscriptions, -} from "../../models/models.js"; -import { - OracleSubscriptionsAddAzureSubscriptionsOptionalParams, - OracleSubscriptionsListActivationLinksOptionalParams, - OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, - OracleSubscriptionsListCloudAccountDetailsOptionalParams, - OracleSubscriptionsDeleteOptionalParams, - OracleSubscriptionsUpdateOptionalParams, - OracleSubscriptionsGetOptionalParams, - OracleSubscriptionsCreateOrUpdateOptionalParams, - OracleSubscriptionsListBySubscriptionOptionalParams, -} from "../../api/oracleSubscriptions/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { addAzureSubscriptions, listActivationLinks, @@ -32,8 +13,27 @@ import { createOrUpdate, listBySubscription, } from "../../api/oracleSubscriptions/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + OracleSubscriptionsAddAzureSubscriptionsOptionalParams, + OracleSubscriptionsListActivationLinksOptionalParams, + OracleSubscriptionsListSaasSubscriptionDetailsOptionalParams, + OracleSubscriptionsListCloudAccountDetailsOptionalParams, + OracleSubscriptionsDeleteOptionalParams, + OracleSubscriptionsUpdateOptionalParams, + OracleSubscriptionsGetOptionalParams, + OracleSubscriptionsCreateOrUpdateOptionalParams, + OracleSubscriptionsListBySubscriptionOptionalParams, +} from "../../api/oracleSubscriptions/options.js"; +import type { + OracleSubscription, + OracleSubscriptionUpdate, + CloudAccountDetails, + SaasSubscriptionDetails, + ActivationLinks, + AzureSubscriptions, +} from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a OracleSubscriptions operations. */ export interface OracleSubscriptionsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/resourceAnchors/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/resourceAnchors/index.ts new file mode 100644 index 000000000000..eb74b0246e3c --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/resourceAnchors/index.ts @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { + listByResourceGroup, + $delete, + update, + get, + createOrUpdate, + listBySubscription, +} from "../../api/resourceAnchors/operations.js"; +import type { + ResourceAnchorsListByResourceGroupOptionalParams, + ResourceAnchorsDeleteOptionalParams, + ResourceAnchorsUpdateOptionalParams, + ResourceAnchorsGetOptionalParams, + ResourceAnchorsCreateOrUpdateOptionalParams, + ResourceAnchorsListBySubscriptionOptionalParams, +} from "../../api/resourceAnchors/options.js"; +import type { ResourceAnchor, ResourceAnchorUpdate } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; + +/** Interface representing a ResourceAnchors operations. */ +export interface ResourceAnchorsOperations { + /** List ResourceAnchor resources by resource group */ + listByResourceGroup: ( + resourceGroupName: string, + options?: ResourceAnchorsListByResourceGroupOptionalParams, + ) => PagedAsyncIterableIterator; + /** Delete a ResourceAnchor */ + /** + * @fixme delete is a reserved word that cannot be used as an operation name. + * Please add @clientName("clientName") or @clientName("", "javascript") + * to the operation to override the generated name. + */ + delete: ( + resourceGroupName: string, + resourceAnchorName: string, + options?: ResourceAnchorsDeleteOptionalParams, + ) => PollerLike, void>; + /** Update a ResourceAnchor */ + update: ( + resourceGroupName: string, + resourceAnchorName: string, + properties: ResourceAnchorUpdate, + options?: ResourceAnchorsUpdateOptionalParams, + ) => PollerLike, ResourceAnchor>; + /** Get a ResourceAnchor */ + get: ( + resourceGroupName: string, + resourceAnchorName: string, + options?: ResourceAnchorsGetOptionalParams, + ) => Promise; + /** Create a ResourceAnchor */ + createOrUpdate: ( + resourceGroupName: string, + resourceAnchorName: string, + resource: ResourceAnchor, + options?: ResourceAnchorsCreateOrUpdateOptionalParams, + ) => PollerLike, ResourceAnchor>; + /** List ResourceAnchor resources by subscription ID */ + listBySubscription: ( + options?: ResourceAnchorsListBySubscriptionOptionalParams, + ) => PagedAsyncIterableIterator; +} + +function _getResourceAnchors(context: OracleDatabaseManagementContext) { + return { + listByResourceGroup: ( + resourceGroupName: string, + options?: ResourceAnchorsListByResourceGroupOptionalParams, + ) => listByResourceGroup(context, resourceGroupName, options), + delete: ( + resourceGroupName: string, + resourceAnchorName: string, + options?: ResourceAnchorsDeleteOptionalParams, + ) => $delete(context, resourceGroupName, resourceAnchorName, options), + update: ( + resourceGroupName: string, + resourceAnchorName: string, + properties: ResourceAnchorUpdate, + options?: ResourceAnchorsUpdateOptionalParams, + ) => update(context, resourceGroupName, resourceAnchorName, properties, options), + get: ( + resourceGroupName: string, + resourceAnchorName: string, + options?: ResourceAnchorsGetOptionalParams, + ) => get(context, resourceGroupName, resourceAnchorName, options), + createOrUpdate: ( + resourceGroupName: string, + resourceAnchorName: string, + resource: ResourceAnchor, + options?: ResourceAnchorsCreateOrUpdateOptionalParams, + ) => createOrUpdate(context, resourceGroupName, resourceAnchorName, resource, options), + listBySubscription: (options?: ResourceAnchorsListBySubscriptionOptionalParams) => + listBySubscription(context, options), + }; +} + +export function _getResourceAnchorsOperations( + context: OracleDatabaseManagementContext, +): ResourceAnchorsOperations { + return { + ..._getResourceAnchors(context), + }; +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/systemVersions/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/systemVersions/index.ts index 85c4748a0822..bffc47a9983a 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/systemVersions/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/systemVersions/index.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { SystemVersion } from "../../models/models.js"; -import { +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; +import { listByLocation, get } from "../../api/systemVersions/operations.js"; +import type { SystemVersionsListByLocationOptionalParams, SystemVersionsGetOptionalParams, } from "../../api/systemVersions/options.js"; -import { listByLocation, get } from "../../api/systemVersions/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { SystemVersion } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; /** Interface representing a SystemVersions operations. */ export interface SystemVersionsOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/classic/virtualNetworkAddresses/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/classic/virtualNetworkAddresses/index.ts index f5c44b8a28df..ee16d9918f28 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/classic/virtualNetworkAddresses/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/classic/virtualNetworkAddresses/index.ts @@ -1,22 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; -import { VirtualNetworkAddress } from "../../models/models.js"; -import { - VirtualNetworkAddressesListByParentOptionalParams, - VirtualNetworkAddressesDeleteOptionalParams, - VirtualNetworkAddressesGetOptionalParams, - VirtualNetworkAddressesCreateOrUpdateOptionalParams, -} from "../../api/virtualNetworkAddresses/options.js"; +import type { OracleDatabaseManagementContext } from "../../api/oracleDatabaseManagementContext.js"; import { listByParent, $delete, get, createOrUpdate, } from "../../api/virtualNetworkAddresses/operations.js"; -import { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; -import { PollerLike, OperationState } from "@azure/core-lro"; +import type { + VirtualNetworkAddressesListByParentOptionalParams, + VirtualNetworkAddressesDeleteOptionalParams, + VirtualNetworkAddressesGetOptionalParams, + VirtualNetworkAddressesCreateOrUpdateOptionalParams, +} from "../../api/virtualNetworkAddresses/options.js"; +import type { VirtualNetworkAddress } from "../../models/models.js"; +import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; +import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a VirtualNetworkAddresses operations. */ export interface VirtualNetworkAddressesOperations { diff --git a/sdk/oracledatabase/arm-oracledatabase/src/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/index.ts index 4adaad44cae1..c620a9c56227 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/index.ts @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. +import { AzureClouds, AzureSupportedClouds } from "./static-helpers/cloudSettingHelpers.js"; import { PageSettings, ContinuablePage, @@ -41,6 +42,7 @@ export { CloudExadataInfrastructureLifecycleState, KnownComputeModel, ComputeModel, + ExascaleConfigDetails, TrackedResource, Resource, SystemData, @@ -50,6 +52,7 @@ export { ResourceProvisioningState, CloudExadataInfrastructureUpdate, CloudExadataInfrastructureUpdateProperties, + ConfigureExascaleCloudExadataInfrastructureDetails, DbServer, DbServerProperties, DbServerPatchingDetails, @@ -76,6 +79,8 @@ export { IormLifecycleState, KnownObjective, Objective, + KnownExadataVmClusterStorageManagementType, + ExadataVmClusterStorageManagementType, CloudVmClusterUpdate, CloudVmClusterUpdateProperties, AddRemoveDbNode, @@ -204,6 +209,9 @@ export { GenerateType, AutonomousDatabaseWalletFile, RestoreAutonomousDatabaseDetails, + AutonomousDatabaseLifecycleAction, + KnownAutonomousDatabaseLifecycleActionEnum, + AutonomousDatabaseLifecycleActionEnum, AutonomousDatabaseBackup, AutonomousDatabaseBackupProperties, KnownAutonomousDatabaseBackupLifecycleState, @@ -225,6 +233,8 @@ export { KnownGridImageType, GridImageType, ExadbVmClusterStorageDetails, + KnownShapeAttribute, + ShapeAttribute, ExadbVmClusterUpdate, ExadbVmClusterUpdateProperties, RemoveVirtualMachineFromExadbVmClusterDetails, @@ -239,10 +249,43 @@ export { KnownExascaleDbStorageVaultLifecycleState, ExascaleDbStorageVaultLifecycleState, ExascaleDbStorageVaultTagsUpdate, + NetworkAnchor, + NetworkAnchorProperties, + DnsForwardingRule, + NetworkAnchorUpdate, + NetworkAnchorUpdateProperties, + ResourceAnchor, + ResourceAnchorProperties, + ResourceAnchorUpdate, + DbSystem, + DbSystemProperties, + KnownDbSystemDatabaseEditionType, + DbSystemDatabaseEditionType, + DbSystemBaseProperties, + DbSystemBasePropertiesUnion, + KnownDbSystemSourceType, + DbSystemSourceType, + DbSystemOptions, + KnownStorageManagementType, + StorageManagementType, + KnownDiskRedundancyType, + DiskRedundancyType, + KnownDbSystemLifecycleState, + DbSystemLifecycleState, + KnownStorageVolumePerformanceMode, + StorageVolumePerformanceMode, + DbSystemUpdate, + DbSystemUpdateProperties, + DbVersion, + DbVersionProperties, KnownSystemShapes, SystemShapes, KnownShapeFamily, ShapeFamily, + KnownBaseDbSystemShapes, + BaseDbSystemShapes, + KnownShapeFamilyType, + ShapeFamilyType, KnownVersions, } from "./models/index.js"; export { OracleDatabaseManagementClientOptionalParams } from "./api/index.js"; @@ -262,6 +305,7 @@ export { AutonomousDatabaseNationalCharacterSetsGetOptionalParams, } from "./api/autonomousDatabaseNationalCharacterSets/index.js"; export { + AutonomousDatabasesActionOptionalParams, AutonomousDatabasesChangeDisasterRecoveryConfigurationOptionalParams, AutonomousDatabasesShrinkOptionalParams, AutonomousDatabasesRestoreOptionalParams, @@ -280,6 +324,7 @@ export { AutonomousDatabaseVersionsGetOptionalParams, } from "./api/autonomousDatabaseVersions/index.js"; export { + CloudExadataInfrastructuresConfigureExascaleOptionalParams, CloudExadataInfrastructuresAddStorageCapacityOptionalParams, CloudExadataInfrastructuresListByResourceGroupOptionalParams, CloudExadataInfrastructuresDeleteOptionalParams, @@ -308,10 +353,22 @@ export { DbServersListByParentOptionalParams, DbServersGetOptionalParams, } from "./api/dbServers/index.js"; +export { + DbSystemsListByResourceGroupOptionalParams, + DbSystemsDeleteOptionalParams, + DbSystemsUpdateOptionalParams, + DbSystemsGetOptionalParams, + DbSystemsCreateOrUpdateOptionalParams, + DbSystemsListBySubscriptionOptionalParams, +} from "./api/dbSystems/index.js"; export { DbSystemShapesListByLocationOptionalParams, DbSystemShapesGetOptionalParams, } from "./api/dbSystemShapes/index.js"; +export { + DbVersionsListByLocationOptionalParams, + DbVersionsGetOptionalParams, +} from "./api/dbVersions/index.js"; export { DnsPrivateViewsListByLocationOptionalParams, DnsPrivateViewsGetOptionalParams, @@ -354,6 +411,14 @@ export { GiVersionsListByLocationOptionalParams, GiVersionsGetOptionalParams, } from "./api/giVersions/index.js"; +export { + NetworkAnchorsListByResourceGroupOptionalParams, + NetworkAnchorsDeleteOptionalParams, + NetworkAnchorsUpdateOptionalParams, + NetworkAnchorsGetOptionalParams, + NetworkAnchorsCreateOrUpdateOptionalParams, + NetworkAnchorsListBySubscriptionOptionalParams, +} from "./api/networkAnchors/index.js"; export { OperationsListOptionalParams } from "./api/operations/index.js"; export { OracleSubscriptionsAddAzureSubscriptionsOptionalParams, @@ -366,6 +431,14 @@ export { OracleSubscriptionsCreateOrUpdateOptionalParams, OracleSubscriptionsListBySubscriptionOptionalParams, } from "./api/oracleSubscriptions/index.js"; +export { + ResourceAnchorsListByResourceGroupOptionalParams, + ResourceAnchorsDeleteOptionalParams, + ResourceAnchorsUpdateOptionalParams, + ResourceAnchorsGetOptionalParams, + ResourceAnchorsCreateOrUpdateOptionalParams, + ResourceAnchorsListBySubscriptionOptionalParams, +} from "./api/resourceAnchors/index.js"; export { SystemVersionsListByLocationOptionalParams, SystemVersionsGetOptionalParams, @@ -386,7 +459,9 @@ export { CloudVmClustersOperations, DbNodesOperations, DbServersOperations, + DbSystemsOperations, DbSystemShapesOperations, + DbVersionsOperations, DnsPrivateViewsOperations, DnsPrivateZonesOperations, ExadbVmClustersOperations, @@ -395,9 +470,12 @@ export { FlexComponentsOperations, GiMinorVersionsOperations, GiVersionsOperations, + NetworkAnchorsOperations, OperationsOperations, OracleSubscriptionsOperations, + ResourceAnchorsOperations, SystemVersionsOperations, VirtualNetworkAddressesOperations, } from "./classic/index.js"; export { PageSettings, ContinuablePage, PagedAsyncIterableIterator }; +export { AzureClouds, AzureSupportedClouds }; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/models/index.ts b/sdk/oracledatabase/arm-oracledatabase/src/models/index.ts index b1f01885f945..85d855ff77db 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/models/index.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/models/index.ts @@ -33,6 +33,7 @@ export { CloudExadataInfrastructureLifecycleState, KnownComputeModel, ComputeModel, + ExascaleConfigDetails, TrackedResource, Resource, SystemData, @@ -42,6 +43,7 @@ export { ResourceProvisioningState, CloudExadataInfrastructureUpdate, CloudExadataInfrastructureUpdateProperties, + ConfigureExascaleCloudExadataInfrastructureDetails, DbServer, DbServerProperties, DbServerPatchingDetails, @@ -68,6 +70,8 @@ export { IormLifecycleState, KnownObjective, Objective, + KnownExadataVmClusterStorageManagementType, + ExadataVmClusterStorageManagementType, CloudVmClusterUpdate, CloudVmClusterUpdateProperties, AddRemoveDbNode, @@ -196,6 +200,9 @@ export { GenerateType, AutonomousDatabaseWalletFile, RestoreAutonomousDatabaseDetails, + AutonomousDatabaseLifecycleAction, + KnownAutonomousDatabaseLifecycleActionEnum, + AutonomousDatabaseLifecycleActionEnum, AutonomousDatabaseBackup, AutonomousDatabaseBackupProperties, KnownAutonomousDatabaseBackupLifecycleState, @@ -217,6 +224,8 @@ export { KnownGridImageType, GridImageType, ExadbVmClusterStorageDetails, + KnownShapeAttribute, + ShapeAttribute, ExadbVmClusterUpdate, ExadbVmClusterUpdateProperties, RemoveVirtualMachineFromExadbVmClusterDetails, @@ -231,9 +240,42 @@ export { KnownExascaleDbStorageVaultLifecycleState, ExascaleDbStorageVaultLifecycleState, ExascaleDbStorageVaultTagsUpdate, + NetworkAnchor, + NetworkAnchorProperties, + DnsForwardingRule, + NetworkAnchorUpdate, + NetworkAnchorUpdateProperties, + ResourceAnchor, + ResourceAnchorProperties, + ResourceAnchorUpdate, + DbSystem, + DbSystemProperties, + KnownDbSystemDatabaseEditionType, + DbSystemDatabaseEditionType, + DbSystemBaseProperties, + DbSystemBasePropertiesUnion, + KnownDbSystemSourceType, + DbSystemSourceType, + DbSystemOptions, + KnownStorageManagementType, + StorageManagementType, + KnownDiskRedundancyType, + DiskRedundancyType, + KnownDbSystemLifecycleState, + DbSystemLifecycleState, + KnownStorageVolumePerformanceMode, + StorageVolumePerformanceMode, + DbSystemUpdate, + DbSystemUpdateProperties, + DbVersion, + DbVersionProperties, KnownSystemShapes, SystemShapes, KnownShapeFamily, ShapeFamily, + KnownBaseDbSystemShapes, + BaseDbSystemShapes, + KnownShapeFamilyType, + ShapeFamilyType, KnownVersions, } from "./models.js"; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/models/models.ts b/sdk/oracledatabase/arm-oracledatabase/src/models/models.ts index 6ced434e61a9..a33b62a4e8ab 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/models/models.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/models/models.ts @@ -313,6 +313,8 @@ export interface CloudExadataInfrastructureProperties { storageServerType?: string; /** The compute model of the Exadata Infrastructure */ readonly computeModel?: ComputeModel; + /** The exascale config details for the cloud Exadata infrastructure */ + readonly exascaleConfig?: ExascaleConfigDetails; } export function cloudExadataInfrastructurePropertiesSerializer( @@ -381,6 +383,9 @@ export function cloudExadataInfrastructurePropertiesDeserializer( databaseServerType: item["databaseServerType"], storageServerType: item["storageServerType"], computeModel: item["computeModel"], + exascaleConfig: !item["exascaleConfig"] + ? item["exascaleConfig"] + : exascaleConfigDetailsDeserializer(item["exascaleConfig"]), }; } @@ -786,6 +791,21 @@ export enum KnownComputeModel { */ export type ComputeModel = string; +/** The exascale config response details for the cloud Exadata infrastructure */ +export interface ExascaleConfigDetails { + /** Storage size needed for Exascale in GBs. */ + totalStorageInGbs: number; + /** Available storage size for Exascale in GBs. */ + availableStorageInGbs?: number; +} + +export function exascaleConfigDetailsDeserializer(item: any): ExascaleConfigDetails { + return { + totalStorageInGbs: item["totalStorageInGbs"], + availableStorageInGbs: item["availableStorageInGbs"], + }; +} + /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */ export interface TrackedResource extends Resource { /** Resource tags. */ @@ -881,7 +901,7 @@ export enum KnownCreatedByType { /** * The kind of entity that created the resource. \ - * {@link KnowncreatedByType} can be used interchangeably with createdByType, + * {@link KnownCreatedByType} can be used interchangeably with CreatedByType, * this enum contains the known values that the service supports. * ### Known values supported by the service * **User**: The entity was created by a user. \ @@ -968,6 +988,18 @@ export function cloudExadataInfrastructureUpdatePropertiesSerializer( }; } +/** The exascale config request details for the Cloud Exadata infrastructure. */ +export interface ConfigureExascaleCloudExadataInfrastructureDetails { + /** Storage size needed for Exascale in GBs. */ + totalStorageInGbs: number; +} + +export function configureExascaleCloudExadataInfrastructureDetailsSerializer( + item: ConfigureExascaleCloudExadataInfrastructureDetails, +): any { + return { totalStorageInGbs: item["totalStorageInGbs"] }; +} + /** DbServer resource model */ export interface DbServer extends ProxyResource { /** The resource-specific properties for this resource. */ @@ -1357,6 +1389,10 @@ export interface CloudVmClusterProperties { readonly subnetOcid?: string; /** The compute model of the VM Cluster. */ readonly computeModel?: ComputeModel; + /** Exadata Database Storage Vault ID */ + exascaleDbStorageVaultId?: string; + /** Specifies whether the type of storage management for the VM cluster is ASM or Exascale. */ + readonly storageManagementType?: ExadataVmClusterStorageManagementType; } export function cloudVmClusterPropertiesSerializer(item: CloudVmClusterProperties): any { @@ -1405,6 +1441,7 @@ export function cloudVmClusterPropertiesSerializer(item: CloudVmClusterPropertie : item["dbServers"].map((p: any) => { return p; }), + exascaleDbStorageVaultId: item["exascaleDbStorageVaultId"], }; } @@ -1484,6 +1521,8 @@ export function cloudVmClusterPropertiesDeserializer(item: any): CloudVmClusterP compartmentId: item["compartmentId"], subnetOcid: item["subnetOcid"], computeModel: item["computeModel"], + exascaleDbStorageVaultId: item["exascaleDbStorageVaultId"], + storageManagementType: item["storageManagementType"], }; } @@ -1780,6 +1819,24 @@ export enum KnownObjective { */ export type Objective = string; +/** Specifies the type of storage management for the Cloud VM Cluster if its ASM or Exascale. */ +export enum KnownExadataVmClusterStorageManagementType { + /** Indicates that storage management for the Cloud VM Cluster is ASM */ + ASM = "ASM", + /** Indicates that storage management for the Cloud VM Cluster is Exascale */ + Exascale = "Exascale", +} + +/** + * Specifies the type of storage management for the Cloud VM Cluster if its ASM or Exascale. \ + * {@link KnownExadataVmClusterStorageManagementType} can be used interchangeably with ExadataVmClusterStorageManagementType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **ASM**: Indicates that storage management for the Cloud VM Cluster is ASM \ + * **Exascale**: Indicates that storage management for the Cloud VM Cluster is Exascale + */ +export type ExadataVmClusterStorageManagementType = string; + /** The type used for update operations of the CloudVmCluster. */ export interface CloudVmClusterUpdate { /** Resource tags. */ @@ -2847,6 +2904,8 @@ export interface DbSystemShapeProperties { areServerTypesSupported?: boolean; /** The display name of the shape used for the DB system */ displayName?: string; + /** The shapeAttributes of the DB system shape.. */ + shapeAttributes?: string[]; } export function dbSystemShapePropertiesDeserializer(item: any): DbSystemShapeProperties { @@ -2875,6 +2934,11 @@ export function dbSystemShapePropertiesDeserializer(item: any): DbSystemShapePro computeModel: item["computeModel"], areServerTypesSupported: item["areServerTypesSupported"], displayName: item["displayName"], + shapeAttributes: !item["shapeAttributes"] + ? item["shapeAttributes"] + : item["shapeAttributes"].map((p: any) => { + return p; + }), }; } @@ -3249,7 +3313,7 @@ export function autonomousDatabaseArrayDeserializer(result: Array, +): any[] { + return result.map((item) => { + return scheduledOperationsTypeSerializer(item); + }); +} + +export function scheduledOperationsTypeArrayDeserializer( + result: Array, +): any[] { + return result.map((item) => { + return scheduledOperationsTypeDeserializer(item); + }); +} + /** The list of scheduled operations. */ export interface ScheduledOperationsType { /** Day of week */ @@ -4410,9 +4490,9 @@ export function autonomousDatabasePropertiesSerializer(item: AutonomousDatabaseP isPreviewVersionWithServiceTermsAccepted: item["isPreviewVersionWithServiceTermsAccepted"], licenseModel: item["licenseModel"], ncharacterSet: item["ncharacterSet"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeSerializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArraySerializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], subnetId: item["subnetId"], @@ -4482,9 +4562,9 @@ export function autonomousDatabasePropertiesDeserializer(item: any): AutonomousD lifecycleDetails: item["lifecycleDetails"], provisioningState: item["provisioningState"], lifecycleState: item["lifecycleState"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeDeserializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArrayDeserializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], ociUrl: item["ociUrl"], @@ -4612,9 +4692,9 @@ export function autonomousDatabaseClonePropertiesSerializer( isPreviewVersionWithServiceTermsAccepted: item["isPreviewVersionWithServiceTermsAccepted"], licenseModel: item["licenseModel"], ncharacterSet: item["ncharacterSet"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeSerializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArraySerializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], subnetId: item["subnetId"], @@ -4691,9 +4771,9 @@ export function autonomousDatabaseClonePropertiesDeserializer( lifecycleDetails: item["lifecycleDetails"], provisioningState: item["provisioningState"], lifecycleState: item["lifecycleState"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeDeserializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArrayDeserializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], ociUrl: item["ociUrl"], @@ -4913,9 +4993,9 @@ export function autonomousDatabaseCrossRegionDisasterRecoveryPropertiesSerialize isPreviewVersionWithServiceTermsAccepted: item["isPreviewVersionWithServiceTermsAccepted"], licenseModel: item["licenseModel"], ncharacterSet: item["ncharacterSet"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeSerializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArraySerializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], subnetId: item["subnetId"], @@ -4993,9 +5073,9 @@ export function autonomousDatabaseCrossRegionDisasterRecoveryPropertiesDeseriali lifecycleDetails: item["lifecycleDetails"], provisioningState: item["provisioningState"], lifecycleState: item["lifecycleState"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeDeserializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArrayDeserializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], ociUrl: item["ociUrl"], @@ -5124,9 +5204,9 @@ export function autonomousDatabaseFromBackupTimestampPropertiesSerializer( isPreviewVersionWithServiceTermsAccepted: item["isPreviewVersionWithServiceTermsAccepted"], licenseModel: item["licenseModel"], ncharacterSet: item["ncharacterSet"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeSerializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArraySerializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], subnetId: item["subnetId"], @@ -5203,9 +5283,9 @@ export function autonomousDatabaseFromBackupTimestampPropertiesDeserializer( lifecycleDetails: item["lifecycleDetails"], provisioningState: item["provisioningState"], lifecycleState: item["lifecycleState"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeDeserializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeArrayDeserializer(item["scheduledOperationsList"]), privateEndpointIp: item["privateEndpointIp"], privateEndpointLabel: item["privateEndpointLabel"], ociUrl: item["ociUrl"], @@ -5337,7 +5417,7 @@ export interface AutonomousDatabaseUpdateProperties { /** The Oracle license model that applies to the Oracle Autonomous Database. The default is LICENSE_INCLUDED. */ licenseModel?: LicenseModel; /** The list of scheduled operations. */ - scheduledOperations?: ScheduledOperationsTypeUpdate; + scheduledOperationsList?: ScheduledOperationsTypeUpdate[]; /** The Oracle Database Edition that applies to the Autonomous databases. */ databaseEdition?: DatabaseEditionType; /** Details for the long-term backup schedule. */ @@ -5376,9 +5456,9 @@ export function autonomousDatabaseUpdatePropertiesSerializer( isLocalDataGuardEnabled: item["isLocalDataGuardEnabled"], isMtlsConnectionRequired: item["isMtlsConnectionRequired"], licenseModel: item["licenseModel"], - scheduledOperations: !item["scheduledOperations"] - ? item["scheduledOperations"] - : scheduledOperationsTypeUpdateSerializer(item["scheduledOperations"]), + scheduledOperationsList: !item["scheduledOperationsList"] + ? item["scheduledOperationsList"] + : scheduledOperationsTypeUpdateArraySerializer(item["scheduledOperationsList"]), databaseEdition: item["databaseEdition"], longTermBackupSchedule: !item["longTermBackupSchedule"] ? item["longTermBackupSchedule"] @@ -5396,10 +5476,18 @@ export function autonomousDatabaseUpdatePropertiesSerializer( }; } +export function scheduledOperationsTypeUpdateArraySerializer( + result: Array, +): any[] { + return result.map((item) => { + return scheduledOperationsTypeUpdateSerializer(item); + }); +} + /** The list of scheduled operations. */ export interface ScheduledOperationsTypeUpdate { /** Day of week */ - dayOfWeek: DayOfWeekUpdate; + dayOfWeek?: DayOfWeekUpdate; /** auto start time. value must be of ISO-8601 format HH:mm */ scheduledStartTime?: string; /** auto stop time. value must be of ISO-8601 format HH:mm */ @@ -5408,7 +5496,9 @@ export interface ScheduledOperationsTypeUpdate { export function scheduledOperationsTypeUpdateSerializer(item: ScheduledOperationsTypeUpdate): any { return { - dayOfWeek: dayOfWeekUpdateSerializer(item["dayOfWeek"]), + dayOfWeek: !item["dayOfWeek"] + ? item["dayOfWeek"] + : dayOfWeekUpdateSerializer(item["dayOfWeek"]), scheduledStartTime: item["scheduledStartTime"], scheduledStopTime: item["scheduledStopTime"], }; @@ -5417,7 +5507,7 @@ export function scheduledOperationsTypeUpdateSerializer(item: ScheduledOperation /** DayOfWeek resource properties */ export interface DayOfWeekUpdate { /** Name of the day of the week. */ - name: DayOfWeekName; + name?: DayOfWeekName; } export function dayOfWeekUpdateSerializer(item: DayOfWeekUpdate): any { @@ -5504,6 +5594,39 @@ export function restoreAutonomousDatabaseDetailsSerializer( return { timestamp: item["timestamp"].toISOString() }; } +/** Autonomous Database Action Object */ +export interface AutonomousDatabaseLifecycleAction { + /** Autonomous Database lifecycle action */ + action: AutonomousDatabaseLifecycleActionEnum; +} + +export function autonomousDatabaseLifecycleActionSerializer( + item: AutonomousDatabaseLifecycleAction, +): any { + return { action: item["action"] }; +} + +/** Autonomous Database Action Enum */ +export enum KnownAutonomousDatabaseLifecycleActionEnum { + /** Start Autonomous Database */ + Start = "Start", + /** Stop Autonomous Database */ + Stop = "Stop", + /** Restart Autonomous Database */ + Restart = "Restart", +} + +/** + * Autonomous Database Action Enum \ + * {@link KnownAutonomousDatabaseLifecycleActionEnum} can be used interchangeably with AutonomousDatabaseLifecycleActionEnum, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Start**: Start Autonomous Database \ + * **Stop**: Stop Autonomous Database \ + * **Restart**: Restart Autonomous Database + */ +export type AutonomousDatabaseLifecycleActionEnum = string; + /** AutonomousDatabaseBackup resource definition */ export interface AutonomousDatabaseBackup extends ProxyResource { /** The resource-specific properties for this resource. */ @@ -6064,6 +6187,8 @@ export interface ExadbVmClusterProperties { readonly backupSubnetOcid?: string; /** Cluster subnet ocid */ readonly subnetOcid?: string; + /** The type of Exascale storage used for Exadata VM cluster. */ + shapeAttribute?: ShapeAttribute; } export function exadbVmClusterPropertiesSerializer(item: ExadbVmClusterProperties): any { @@ -6095,6 +6220,7 @@ export function exadbVmClusterPropertiesSerializer(item: ExadbVmClusterPropertie timeZone: item["timeZone"], totalEcpuCount: item["totalEcpuCount"], vmFileSystemStorage: exadbVmClusterStorageDetailsSerializer(item["vmFileSystemStorage"]), + shapeAttribute: item["shapeAttribute"], }; } @@ -6161,6 +6287,7 @@ export function exadbVmClusterPropertiesDeserializer(item: any): ExadbVmClusterP : exadataIormConfigDeserializer(item["iormConfigCache"]), backupSubnetOcid: item["backupSubnetOcid"], subnetOcid: item["subnetOcid"], + shapeAttribute: item["shapeAttribute"], }; } @@ -6231,6 +6358,24 @@ export function exadbVmClusterStorageDetailsDeserializer(item: any): ExadbVmClus }; } +/** The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later */ +export enum KnownShapeAttribute { + /** Smart storage */ + SmartStorage = "SMART_STORAGE", + /** block storage */ + BlockStorage = "BLOCK_STORAGE", +} + +/** + * The type of Exascale storage used for Exadata VM cluster. The default is SMART_STORAGE which supports Oracle Database 23ai and later \ + * {@link KnownShapeAttribute} can be used interchangeably with ShapeAttribute, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **SMART_STORAGE**: Smart storage \ + * **BLOCK_STORAGE**: block storage + */ +export type ShapeAttribute = string; + /** The type used for update operations of the ExadbVmCluster. */ export interface ExadbVmClusterUpdate { /** The availability zones. */ @@ -6470,6 +6615,10 @@ export interface ExascaleDbStorageVaultProperties { readonly ocid?: string; /** HTTPS link to OCI resources exposed to Azure Customer via Azure Interface. */ readonly ociUrl?: string; + /** Cloud Exadata infrastructure ID */ + exadataInfrastructureId?: string; + /** The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault. */ + readonly attachedShapeAttributes?: ShapeAttribute[]; } export function exascaleDbStorageVaultPropertiesSerializer( @@ -6483,6 +6632,7 @@ export function exascaleDbStorageVaultPropertiesSerializer( item["highCapacityDatabaseStorageInput"], ), timeZone: item["timeZone"], + exadataInfrastructureId: item["exadataInfrastructureId"], }; } @@ -6506,6 +6656,12 @@ export function exascaleDbStorageVaultPropertiesDeserializer( vmClusterCount: item["vmClusterCount"], ocid: item["ocid"], ociUrl: item["ociUrl"], + exadataInfrastructureId: item["exadataInfrastructureId"], + attachedShapeAttributes: !item["attachedShapeAttributes"] + ? item["attachedShapeAttributes"] + : item["attachedShapeAttributes"].map((p: any) => { + return p; + }), }; } @@ -6617,44 +6773,976 @@ export function exascaleDbStorageVaultArrayDeserializer( }); } -/** Allowed values for System Shapes */ -export enum KnownSystemShapes { - /** Exadata X9M shape */ - ExadataX9M = "Exadata.X9M", - /** Exadata X11M shape */ - ExadataX11M = "Exadata.X11M", - /** Exadata DB on Exascale Infrastructure shape */ - ExaDbXs = "ExaDbXS", +/** The response of a NetworkAnchor list operation. */ +export interface _NetworkAnchorListResult { + /** The NetworkAnchor items on this page */ + value: NetworkAnchor[]; + /** The link to the next page of items */ + nextLink?: string; } -/** - * Allowed values for System Shapes \ - * {@link KnownSystemShapes} can be used interchangeably with SystemShapes, - * this enum contains the known values that the service supports. - * ### Known values supported by the service - * **Exadata.X9M**: Exadata X9M shape \ - * **Exadata.X11M**: Exadata X11M shape \ - * **ExaDbXS**: Exadata DB on Exascale Infrastructure shape - */ -export type SystemShapes = string; +export function _networkAnchorListResultDeserializer(item: any): _NetworkAnchorListResult { + return { + value: networkAnchorArrayDeserializer(item["value"]), + nextLink: item["nextLink"], + }; +} -/** Allowed values for GI Minor Versions shapeFamily filter */ -export enum KnownShapeFamily { - /** Family value for Exadata Shape */ - Exadata = "EXADATA", - /** Family value for Exadb XS Shape */ - ExadbXs = "EXADB_XS", +export function networkAnchorArraySerializer(result: Array): any[] { + return result.map((item) => { + return networkAnchorSerializer(item); + }); } -/** - * Allowed values for GI Minor Versions shapeFamily filter \ - * {@link KnownShapeFamily} can be used interchangeably with ShapeFamily, - * this enum contains the known values that the service supports. - * ### Known values supported by the service - * **EXADATA**: Family value for Exadata Shape \ - * **EXADB_XS**: Family value for Exadb XS Shape - */ -export type ShapeFamily = string; +export function networkAnchorArrayDeserializer(result: Array): any[] { + return result.map((item) => { + return networkAnchorDeserializer(item); + }); +} + +/** Network Anchor resource model. */ +export interface NetworkAnchor extends TrackedResource { + /** The resource-specific properties for this resource. */ + properties?: NetworkAnchorProperties; + /** The availability zones. */ + zones?: string[]; +} + +export function networkAnchorSerializer(item: NetworkAnchor): any { + return { + tags: item["tags"], + location: item["location"], + properties: !item["properties"] + ? item["properties"] + : networkAnchorPropertiesSerializer(item["properties"]), + zones: !item["zones"] + ? item["zones"] + : item["zones"].map((p: any) => { + return p; + }), + }; +} + +export function networkAnchorDeserializer(item: any): NetworkAnchor { + return { + tags: item["tags"], + location: item["location"], + id: item["id"], + name: item["name"], + type: item["type"], + systemData: !item["systemData"] + ? item["systemData"] + : systemDataDeserializer(item["systemData"]), + properties: !item["properties"] + ? item["properties"] + : networkAnchorPropertiesDeserializer(item["properties"]), + zones: !item["zones"] + ? item["zones"] + : item["zones"].map((p: any) => { + return p; + }), + }; +} + +/** Network Anchor properties */ +export interface NetworkAnchorProperties { + /** Corresponding resource anchor Azure ID */ + resourceAnchorId: string; + /** NetworkAnchor provisioning state */ + readonly provisioningState?: AzureResourceProvisioningState; + /** VNET for network connectivity */ + readonly vnetId?: string; + /** Client subnet */ + subnetId: string; + /** Delegated Azure subnet cidr block. */ + readonly cidrBlock?: string; + /** Oracle Cloud Infrastructure VCN OCID */ + readonly ociVcnId?: string; + /** OCI DNS label. This is optional if DNS config is provided. */ + ociVcnDnsLabel?: string; + /** Oracle Cloud Infrastructure subnet OCID */ + readonly ociSubnetId?: string; + /** OCI backup subnet cidr block. */ + ociBackupCidrBlock?: string; + /** Indicates whether DNS zone sync from OCI to Azure is enabled */ + isOracleToAzureDnsZoneSyncEnabled?: boolean; + /** Indicates whether the Oracle DNS listening endpoint is enabled */ + isOracleDnsListeningEndpointEnabled?: boolean; + /** Indicates whether the Oracle DNS forwarding endpoint is enabled */ + isOracleDnsForwardingEndpointEnabled?: boolean; + /** DNS forwarding rules */ + dnsForwardingRules?: DnsForwardingRule[]; + /** Comma-separated list of CIDRs that are allowed to send requests to the DNS listening endpoint */ + dnsListeningEndpointAllowedCidrs?: string; + /** DNS listening endpoint IP address */ + readonly dnsListeningEndpointIpAddress?: string; + /** DNS forwarding endpoint IP address */ + readonly dnsForwardingEndpointIpAddress?: string; + /** Deep link to OCI console DNS Forwarding rules page */ + readonly dnsForwardingRulesUrl?: string; + /** Deep link to OCI console DNS Listening endpoint NSG rules */ + readonly dnsListeningEndpointNsgRulesUrl?: string; + /** Deep link to OCI console DNS Forwarding endpoint NSG rules */ + readonly dnsForwardingEndpointNsgRulesUrl?: string; +} + +export function networkAnchorPropertiesSerializer(item: NetworkAnchorProperties): any { + return { + resourceAnchorId: item["resourceAnchorId"], + subnetId: item["subnetId"], + ociVcnDnsLabel: item["ociVcnDnsLabel"], + ociBackupCidrBlock: item["ociBackupCidrBlock"], + isOracleToAzureDnsZoneSyncEnabled: item["isOracleToAzureDnsZoneSyncEnabled"], + isOracleDnsListeningEndpointEnabled: item["isOracleDnsListeningEndpointEnabled"], + isOracleDnsForwardingEndpointEnabled: item["isOracleDnsForwardingEndpointEnabled"], + dnsForwardingRules: !item["dnsForwardingRules"] + ? item["dnsForwardingRules"] + : dnsForwardingRuleArraySerializer(item["dnsForwardingRules"]), + dnsListeningEndpointAllowedCidrs: item["dnsListeningEndpointAllowedCidrs"], + }; +} + +export function networkAnchorPropertiesDeserializer(item: any): NetworkAnchorProperties { + return { + resourceAnchorId: item["resourceAnchorId"], + provisioningState: item["provisioningState"], + vnetId: item["vnetId"], + subnetId: item["subnetId"], + cidrBlock: item["cidrBlock"], + ociVcnId: item["ociVcnId"], + ociVcnDnsLabel: item["ociVcnDnsLabel"], + ociSubnetId: item["ociSubnetId"], + ociBackupCidrBlock: item["ociBackupCidrBlock"], + isOracleToAzureDnsZoneSyncEnabled: item["isOracleToAzureDnsZoneSyncEnabled"], + isOracleDnsListeningEndpointEnabled: item["isOracleDnsListeningEndpointEnabled"], + isOracleDnsForwardingEndpointEnabled: item["isOracleDnsForwardingEndpointEnabled"], + dnsForwardingRules: !item["dnsForwardingRules"] + ? item["dnsForwardingRules"] + : dnsForwardingRuleArrayDeserializer(item["dnsForwardingRules"]), + dnsListeningEndpointAllowedCidrs: item["dnsListeningEndpointAllowedCidrs"], + dnsListeningEndpointIpAddress: item["dnsListeningEndpointIpAddress"], + dnsForwardingEndpointIpAddress: item["dnsForwardingEndpointIpAddress"], + dnsForwardingRulesUrl: item["dnsForwardingRulesUrl"], + dnsListeningEndpointNsgRulesUrl: item["dnsListeningEndpointNsgRulesUrl"], + dnsForwardingEndpointNsgRulesUrl: item["dnsForwardingEndpointNsgRulesUrl"], + }; +} + +export function dnsForwardingRuleArraySerializer(result: Array): any[] { + return result.map((item) => { + return dnsForwardingRuleSerializer(item); + }); +} + +export function dnsForwardingRuleArrayDeserializer(result: Array): any[] { + return result.map((item) => { + return dnsForwardingRuleDeserializer(item); + }); +} + +/** DNS forwarding rule properties */ +export interface DnsForwardingRule { + /** Comma-separated domain names */ + domainNames: string; + /** Forwarding ip address */ + forwardingIpAddress: string; +} + +export function dnsForwardingRuleSerializer(item: DnsForwardingRule): any { + return { + domainNames: item["domainNames"], + forwardingIpAddress: item["forwardingIpAddress"], + }; +} + +export function dnsForwardingRuleDeserializer(item: any): DnsForwardingRule { + return { + domainNames: item["domainNames"], + forwardingIpAddress: item["forwardingIpAddress"], + }; +} + +/** The type used for update operations of the NetworkAnchor. */ +export interface NetworkAnchorUpdate { + /** The availability zones. */ + zones?: string[]; + /** Resource tags. */ + tags?: Record; + /** The resource-specific properties for this resource. */ + properties?: NetworkAnchorUpdateProperties; +} + +export function networkAnchorUpdateSerializer(item: NetworkAnchorUpdate): any { + return { + zones: !item["zones"] + ? item["zones"] + : item["zones"].map((p: any) => { + return p; + }), + tags: item["tags"], + properties: !item["properties"] + ? item["properties"] + : networkAnchorUpdatePropertiesSerializer(item["properties"]), + }; +} + +/** The updatable properties of the NetworkAnchor. */ +export interface NetworkAnchorUpdateProperties { + /** OCI backup subnet cidr block. */ + ociBackupCidrBlock?: string; + /** Indicates whether DNS zone sync from OCI to Azure is enabled */ + isOracleToAzureDnsZoneSyncEnabled?: boolean; + /** Indicates whether the Oracle DNS listening endpoint is enabled */ + isOracleDnsListeningEndpointEnabled?: boolean; + /** Indicates whether the Oracle DNS forwarding endpoint is enabled */ + isOracleDnsForwardingEndpointEnabled?: boolean; +} + +export function networkAnchorUpdatePropertiesSerializer(item: NetworkAnchorUpdateProperties): any { + return { + ociBackupCidrBlock: item["ociBackupCidrBlock"], + isOracleToAzureDnsZoneSyncEnabled: item["isOracleToAzureDnsZoneSyncEnabled"], + isOracleDnsListeningEndpointEnabled: item["isOracleDnsListeningEndpointEnabled"], + isOracleDnsForwardingEndpointEnabled: item["isOracleDnsForwardingEndpointEnabled"], + }; +} + +/** The response of a ResourceAnchor list operation. */ +export interface _ResourceAnchorListResult { + /** The ResourceAnchor items on this page */ + value: ResourceAnchor[]; + /** The link to the next page of items */ + nextLink?: string; +} + +export function _resourceAnchorListResultDeserializer(item: any): _ResourceAnchorListResult { + return { + value: resourceAnchorArrayDeserializer(item["value"]), + nextLink: item["nextLink"], + }; +} + +export function resourceAnchorArraySerializer(result: Array): any[] { + return result.map((item) => { + return resourceAnchorSerializer(item); + }); +} + +export function resourceAnchorArrayDeserializer(result: Array): any[] { + return result.map((item) => { + return resourceAnchorDeserializer(item); + }); +} + +/** Resource Anchor model. */ +export interface ResourceAnchor extends TrackedResource { + /** The resource-specific properties for this resource. */ + properties?: ResourceAnchorProperties; +} + +export function resourceAnchorSerializer(item: ResourceAnchor): any { + return { + tags: item["tags"], + location: item["location"], + properties: !item["properties"] + ? item["properties"] + : resourceAnchorPropertiesSerializer(item["properties"]), + }; +} + +export function resourceAnchorDeserializer(item: any): ResourceAnchor { + return { + tags: item["tags"], + location: item["location"], + id: item["id"], + name: item["name"], + type: item["type"], + systemData: !item["systemData"] + ? item["systemData"] + : systemDataDeserializer(item["systemData"]), + properties: !item["properties"] + ? item["properties"] + : resourceAnchorPropertiesDeserializer(item["properties"]), + }; +} + +/** Resource Anchor properties. */ +export interface ResourceAnchorProperties { + /** ResourceAnchor provisioning state */ + readonly provisioningState?: AzureResourceProvisioningState; + /** Oracle Cloud Infrastructure compartment Id (ocid) which was created or linked by customer with resource anchor. This compartmentId is different from where resource Anchor lives */ + readonly linkedCompartmentId?: string; +} + +export function resourceAnchorPropertiesSerializer(item: ResourceAnchorProperties): any { + return item; +} + +export function resourceAnchorPropertiesDeserializer(item: any): ResourceAnchorProperties { + return { + provisioningState: item["provisioningState"], + linkedCompartmentId: item["linkedCompartmentId"], + }; +} + +/** The type used for update operations of the ResourceAnchor. */ +export interface ResourceAnchorUpdate { + /** Resource tags. */ + tags?: Record; +} + +export function resourceAnchorUpdateSerializer(item: ResourceAnchorUpdate): any { + return { tags: item["tags"] }; +} + +/** The response of a DbSystem list operation. */ +export interface _DbSystemListResult { + /** The DbSystem items on this page */ + value: DbSystem[]; + /** The link to the next page of items */ + nextLink?: string; +} + +export function _dbSystemListResultDeserializer(item: any): _DbSystemListResult { + return { + value: dbSystemArrayDeserializer(item["value"]), + nextLink: item["nextLink"], + }; +} + +export function dbSystemArraySerializer(result: Array): any[] { + return result.map((item) => { + return dbSystemSerializer(item); + }); +} + +export function dbSystemArrayDeserializer(result: Array): any[] { + return result.map((item) => { + return dbSystemDeserializer(item); + }); +} + +/** DbSystem resource definition */ +export interface DbSystem extends TrackedResource { + /** The resource-specific properties for this resource. */ + properties?: DbSystemProperties; + /** The availability zones. */ + zones?: string[]; +} + +export function dbSystemSerializer(item: DbSystem): any { + return { + tags: item["tags"], + location: item["location"], + properties: !item["properties"] + ? item["properties"] + : dbSystemPropertiesSerializer(item["properties"]), + zones: !item["zones"] + ? item["zones"] + : item["zones"].map((p: any) => { + return p; + }), + }; +} + +export function dbSystemDeserializer(item: any): DbSystem { + return { + tags: item["tags"], + location: item["location"], + id: item["id"], + name: item["name"], + type: item["type"], + systemData: !item["systemData"] + ? item["systemData"] + : systemDataDeserializer(item["systemData"]), + properties: !item["properties"] + ? item["properties"] + : dbSystemPropertiesDeserializer(item["properties"]), + zones: !item["zones"] + ? item["zones"] + : item["zones"].map((p: any) => { + return p; + }), + }; +} + +/** DbSystem resource model. */ +export interface DbSystemProperties extends DbSystemBaseProperties { + /** The source of the database for creating a new database. */ + source: "None"; + /** The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require EnterpriseEditionExtremePerformance. */ + databaseEdition: DbSystemDatabaseEditionType; + /** A strong password for SYS, SYSTEM, and PDB Admin. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numbers, and two special characters. The special characters must be _, #, or -. */ + adminPassword?: string; + /** A valid Oracle Database version. For a list of supported versions, use the ListDbVersions operation. */ + dbVersion: string; + /** The name of the pluggable database. The name must begin with an alphabetic character and can contain a maximum of thirty alphanumeric characters. Special characters are not permitted. Pluggable database should not be same as database name. */ + pdbName?: string; +} + +export function dbSystemPropertiesSerializer(item: DbSystemProperties): any { + return { + source: item["source"], + resourceAnchorId: item["resourceAnchorId"], + networkAnchorId: item["networkAnchorId"], + clusterName: item["clusterName"], + displayName: item["displayName"], + initialDataStorageSizeInGb: item["initialDataStorageSizeInGb"], + dbSystemOptions: !item["dbSystemOptions"] + ? item["dbSystemOptions"] + : dbSystemOptionsSerializer(item["dbSystemOptions"]), + diskRedundancy: item["diskRedundancy"], + domain: item["domainV2"], + hostname: item["hostname"], + licenseModel: item["licenseModelV2"], + nodeCount: item["nodeCount"], + shape: item["shape"], + sshPublicKeys: item["sshPublicKeys"].map((p: any) => { + return p; + }), + storageVolumePerformanceMode: item["storageVolumePerformanceMode"], + timeZone: item["timeZone"], + computeModel: item["computeModel"], + computeCount: item["computeCount"], + databaseEdition: item["databaseEdition"], + adminPassword: item["adminPassword"], + dbVersion: item["dbVersion"], + pdbName: item["pdbName"], + }; +} + +export function dbSystemPropertiesDeserializer(item: any): DbSystemProperties { + return { + source: item["source"], + provisioningState: item["provisioningState"], + ociUrl: item["ociUrl"], + resourceAnchorId: item["resourceAnchorId"], + networkAnchorId: item["networkAnchorId"], + clusterName: item["clusterName"], + displayName: item["displayName"], + initialDataStorageSizeInGb: item["initialDataStorageSizeInGb"], + dataStorageSizeInGbs: item["dataStorageSizeInGbs"], + dbSystemOptions: !item["dbSystemOptions"] + ? item["dbSystemOptions"] + : dbSystemOptionsDeserializer(item["dbSystemOptions"]), + diskRedundancy: item["diskRedundancy"], + domainV2: item["domain"], + gridImageOcid: item["gridImageOcid"], + hostname: item["hostname"], + ocid: item["ocid"], + licenseModelV2: item["licenseModel"], + lifecycleDetails: item["lifecycleDetails"], + lifecycleState: item["lifecycleState"], + listenerPort: item["listenerPort"], + memorySizeInGbs: item["memorySizeInGbs"], + nodeCount: item["nodeCount"], + scanDnsName: item["scanDnsName"], + scanIps: !item["scanIps"] + ? item["scanIps"] + : item["scanIps"].map((p: any) => { + return p; + }), + shape: item["shape"], + sshPublicKeys: item["sshPublicKeys"].map((p: any) => { + return p; + }), + storageVolumePerformanceMode: item["storageVolumePerformanceMode"], + timeZone: item["timeZone"], + version: item["version"], + computeModel: item["computeModel"], + computeCount: item["computeCount"], + databaseEdition: item["databaseEdition"], + adminPassword: item["adminPassword"], + dbVersion: item["dbVersion"], + pdbName: item["pdbName"], + }; +} + +/** Database edition type enum. */ +export enum KnownDbSystemDatabaseEditionType { + /** Standard edition */ + StandardEdition = "StandardEdition", + /** Enterprise edition */ + EnterpriseEdition = "EnterpriseEdition", + /** Enterprise edition high performance */ + EnterpriseEditionHighPerformance = "EnterpriseEditionHighPerformance", + /** Enterprise edition extreme */ + EnterpriseEditionExtreme = "EnterpriseEditionExtreme", + /** Enterprise edition developer */ + EnterpriseEditionDeveloper = "EnterpriseEditionDeveloper", +} + +/** + * Database edition type enum. \ + * {@link KnownDbSystemDatabaseEditionType} can be used interchangeably with DbSystemDatabaseEditionType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **StandardEdition**: Standard edition \ + * **EnterpriseEdition**: Enterprise edition \ + * **EnterpriseEditionHighPerformance**: Enterprise edition high performance \ + * **EnterpriseEditionExtreme**: Enterprise edition extreme \ + * **EnterpriseEditionDeveloper**: Enterprise edition developer + */ +export type DbSystemDatabaseEditionType = string; + +/** DbSystem resource base model. */ +export interface DbSystemBaseProperties { + /** The source of the database: Use `None` for creating a new database. The default is `None`. */ + /** The discriminator possible values: None */ + source?: DbSystemSourceType; + /** dbSystem provisioning state */ + readonly provisioningState?: AzureResourceProvisioningState; + /** HTTPS link to OCI resources exposed to Azure Customer via Azure Interface. */ + readonly ociUrl?: string; + /** Azure Resource Anchor ID */ + resourceAnchorId: string; + /** Azure Network Anchor ID */ + networkAnchorId: string; + /** The cluster name for Exadata and 2-node RAC virtual machine DB systems. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive. */ + clusterName?: string; + /** The user-friendly name for the DB system. The name does not have to be unique. */ + displayName?: string; + /** Size in GB of the initial data volume that will be created and attached to a virtual machine DB system. You can scale up storage after provisioning, as needed. Note that the total storage size attached will be more than the amount you specify to allow for REDO/RECO space and software volume. */ + initialDataStorageSizeInGb?: number; + /** The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. */ + readonly dataStorageSizeInGbs?: number; + /** The DB system options. */ + dbSystemOptions?: DbSystemOptions; + /** The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy. */ + diskRedundancy?: DiskRedundancyType; + /** The domain name for the DB system. */ + domainV2?: string; + /** The OCID of a grid infrastructure software image. This is a database software image of the type GRID_IMAGE. */ + readonly gridImageOcid?: string; + /** The hostname for the DB system. */ + hostname: string; + /** The OCID of the DB system. */ + readonly ocid?: string; + /** The Oracle license model that applies to all the databases on the DB system. The default is LicenseIncluded. */ + licenseModelV2?: LicenseModel; + /** Additional information about the current lifecycle state. */ + readonly lifecycleDetails?: string; + /** The current state of the DB system. */ + readonly lifecycleState?: DbSystemLifecycleState; + /** The port number configured for the listener on the DB system. */ + readonly listenerPort?: number; + /** Memory allocated to the DB system, in gigabytes. */ + readonly memorySizeInGbs?: number; + /** The number of nodes in the DB system. For RAC DB systems, the value is greater than 1. */ + nodeCount?: number; + /** The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system. */ + readonly scanDnsName?: string; + /** The list of Single Client Access Name (SCAN) IP addresses associated with the DB system. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster. Note: For a single-node DB system, this list is empty. */ + readonly scanIps?: string[]; + /** The shape of the DB system. The shape determines resources to allocate to the DB system. For virtual machine shapes, the number of CPU cores and memory. For bare metal and Exadata shapes, the number of CPU cores, storage, and memory. */ + shape: string; + /** The public key portion of one or more key pairs used for SSH access to the DB system. */ + sshPublicKeys: string[]; + /** The block storage volume performance level. Valid values are Balanced and HighPerformance. See [Block Volume Performance](/Content/Block/Concepts/blockvolumeperformance.htm) for more information. */ + storageVolumePerformanceMode?: StorageVolumePerformanceMode; + /** The time zone of the DB system, e.g., UTC, to set the timeZone as UTC. */ + timeZone?: string; + /** The Oracle Database version of the DB system. */ + readonly version?: string; + /** The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy. */ + computeModel?: ComputeModel; + /** The number of compute servers for the DB system. */ + computeCount?: number; +} + +export function dbSystemBasePropertiesSerializer(item: DbSystemBaseProperties): any { + return { + source: item["source"], + resourceAnchorId: item["resourceAnchorId"], + networkAnchorId: item["networkAnchorId"], + clusterName: item["clusterName"], + displayName: item["displayName"], + initialDataStorageSizeInGb: item["initialDataStorageSizeInGb"], + dbSystemOptions: !item["dbSystemOptions"] + ? item["dbSystemOptions"] + : dbSystemOptionsSerializer(item["dbSystemOptions"]), + diskRedundancy: item["diskRedundancy"], + domain: item["domainV2"], + hostname: item["hostname"], + licenseModel: item["licenseModelV2"], + nodeCount: item["nodeCount"], + shape: item["shape"], + sshPublicKeys: item["sshPublicKeys"].map((p: any) => { + return p; + }), + storageVolumePerformanceMode: item["storageVolumePerformanceMode"], + timeZone: item["timeZone"], + computeModel: item["computeModel"], + computeCount: item["computeCount"], + }; +} + +export function dbSystemBasePropertiesDeserializer(item: any): DbSystemBaseProperties { + return { + source: item["source"], + provisioningState: item["provisioningState"], + ociUrl: item["ociUrl"], + resourceAnchorId: item["resourceAnchorId"], + networkAnchorId: item["networkAnchorId"], + clusterName: item["clusterName"], + displayName: item["displayName"], + initialDataStorageSizeInGb: item["initialDataStorageSizeInGb"], + dataStorageSizeInGbs: item["dataStorageSizeInGbs"], + dbSystemOptions: !item["dbSystemOptions"] + ? item["dbSystemOptions"] + : dbSystemOptionsDeserializer(item["dbSystemOptions"]), + diskRedundancy: item["diskRedundancy"], + domainV2: item["domain"], + gridImageOcid: item["gridImageOcid"], + hostname: item["hostname"], + ocid: item["ocid"], + licenseModelV2: item["licenseModel"], + lifecycleDetails: item["lifecycleDetails"], + lifecycleState: item["lifecycleState"], + listenerPort: item["listenerPort"], + memorySizeInGbs: item["memorySizeInGbs"], + nodeCount: item["nodeCount"], + scanDnsName: item["scanDnsName"], + scanIps: !item["scanIps"] + ? item["scanIps"] + : item["scanIps"].map((p: any) => { + return p; + }), + shape: item["shape"], + sshPublicKeys: item["sshPublicKeys"].map((p: any) => { + return p; + }), + storageVolumePerformanceMode: item["storageVolumePerformanceMode"], + timeZone: item["timeZone"], + version: item["version"], + computeModel: item["computeModel"], + computeCount: item["computeCount"], + }; +} + +/** Alias for DbSystemBasePropertiesUnion */ +export type DbSystemBasePropertiesUnion = DbSystemProperties | DbSystemBaseProperties; + +export function dbSystemBasePropertiesUnionSerializer(item: DbSystemBasePropertiesUnion): any { + switch (item.source) { + case "None": + return dbSystemPropertiesSerializer(item as DbSystemProperties); + + default: + return dbSystemBasePropertiesSerializer(item); + } +} + +export function dbSystemBasePropertiesUnionDeserializer(item: any): DbSystemBasePropertiesUnion { + switch (item.source) { + case "None": + return dbSystemPropertiesDeserializer(item as DbSystemProperties); + + default: + return dbSystemBasePropertiesDeserializer(item); + } +} + +/** The DbSystem source type of the database. */ +export enum KnownDbSystemSourceType { + /** for creating a new database. */ + None = "None", +} + +/** + * The DbSystem source type of the database. \ + * {@link KnownDbSystemSourceType} can be used interchangeably with DbSystemSourceType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **None**: for creating a new database. + */ +export type DbSystemSourceType = string; + +/** DbSystemOptions resource properties. */ +export interface DbSystemOptions { + /** The storage option used in DB system. ASM - Automatic storage management, LVM - Logical Volume management. */ + storageManagement?: StorageManagementType; +} + +export function dbSystemOptionsSerializer(item: DbSystemOptions): any { + return { storageManagement: item["storageManagement"] }; +} + +export function dbSystemOptionsDeserializer(item: any): DbSystemOptions { + return { + storageManagement: item["storageManagement"], + }; +} + +/** Storage Management type enum. */ +export enum KnownStorageManagementType { + /** Logical Volume management */ + LVM = "LVM", +} + +/** + * Storage Management type enum. \ + * {@link KnownStorageManagementType} can be used interchangeably with StorageManagementType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **LVM**: Logical Volume management + */ +export type StorageManagementType = string; + +/** Disk redundancy type enum. */ +export enum KnownDiskRedundancyType { + /** 3-way redundancy. */ + High = "High", + /** 2-way redundancy. */ + Normal = "Normal", +} + +/** + * Disk redundancy type enum. \ + * {@link KnownDiskRedundancyType} can be used interchangeably with DiskRedundancyType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **High**: 3-way redundancy. \ + * **Normal**: 2-way redundancy. + */ +export type DiskRedundancyType = string; + +/** DB System lifecycle state enum */ +export enum KnownDbSystemLifecycleState { + /** Indicates that resource in Provisioning state */ + Provisioning = "Provisioning", + /** Indicates that resource in Available state */ + Available = "Available", + /** Indicates that resource in Updating state */ + Updating = "Updating", + /** Indicates that resource in Terminating state */ + Terminating = "Terminating", + /** Indicates that resource in Terminated state */ + Terminated = "Terminated", + /** Indicates that resource in Failed state */ + Failed = "Failed", + /** Indicates that resource is Migrated state */ + Migrated = "Migrated", + /** Indicates that resource maintenance in progress state */ + MaintenanceInProgress = "MaintenanceInProgress", + /** Indicates that resource needs attention state */ + NeedsAttention = "NeedsAttention", + /** Indicates that resource in Upgrading state */ + Upgrading = "Upgrading", +} + +/** + * DB System lifecycle state enum \ + * {@link KnownDbSystemLifecycleState} can be used interchangeably with DbSystemLifecycleState, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Provisioning**: Indicates that resource in Provisioning state \ + * **Available**: Indicates that resource in Available state \ + * **Updating**: Indicates that resource in Updating state \ + * **Terminating**: Indicates that resource in Terminating state \ + * **Terminated**: Indicates that resource in Terminated state \ + * **Failed**: Indicates that resource in Failed state \ + * **Migrated**: Indicates that resource is Migrated state \ + * **MaintenanceInProgress**: Indicates that resource maintenance in progress state \ + * **NeedsAttention**: Indicates that resource needs attention state \ + * **Upgrading**: Indicates that resource in Upgrading state + */ +export type DbSystemLifecycleState = string; + +/** Storage volume performance mode. */ +export enum KnownStorageVolumePerformanceMode { + /** With this option, you are purchasing 10 VPUs per GB/month. For more information, including specific throughput and IOPS performance numbers for various volume sizes. */ + Balanced = "Balanced", + /** With this option, you are purchasing 20 VPUs per GB/month. For more information, including specific throughput and IOPS performance numbers for various volume sizes. */ + HighPerformance = "HighPerformance", +} + +/** + * Storage volume performance mode. \ + * {@link KnownStorageVolumePerformanceMode} can be used interchangeably with StorageVolumePerformanceMode, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Balanced**: With this option, you are purchasing 10 VPUs per GB\/month. For more information, including specific throughput and IOPS performance numbers for various volume sizes. \ + * **HighPerformance**: With this option, you are purchasing 20 VPUs per GB\/month. For more information, including specific throughput and IOPS performance numbers for various volume sizes. + */ +export type StorageVolumePerformanceMode = string; + +/** The type used for update operations of the DbSystem. */ +export interface DbSystemUpdate { + /** The availability zones. */ + zones?: string[]; + /** Resource tags. */ + tags?: Record; + /** The resource-specific properties for this resource. */ + properties?: DbSystemUpdateProperties; +} + +export function dbSystemUpdateSerializer(item: DbSystemUpdate): any { + return { + zones: !item["zones"] + ? item["zones"] + : item["zones"].map((p: any) => { + return p; + }), + tags: item["tags"], + properties: !item["properties"] + ? item["properties"] + : dbSystemUpdatePropertiesSerializer(item["properties"]), + }; +} + +/** The updatable properties of the DbSystem. */ +export interface DbSystemUpdateProperties { + /** The source of the database for creating a new database. */ + source?: "None"; +} + +export function dbSystemUpdatePropertiesSerializer(item: DbSystemUpdateProperties): any { + return { source: item["source"] }; +} + +/** Oracle Database DbVersion resource definition */ +export interface DbVersion extends ProxyResource { + /** The resource-specific properties for this resource. */ + properties?: DbVersionProperties; +} + +export function dbVersionDeserializer(item: any): DbVersion { + return { + id: item["id"], + name: item["name"], + type: item["type"], + systemData: !item["systemData"] + ? item["systemData"] + : systemDataDeserializer(item["systemData"]), + properties: !item["properties"] + ? item["properties"] + : dbVersionPropertiesDeserializer(item["properties"]), + }; +} + +/** DbVersion resource model */ +export interface DbVersionProperties { + /** A valid Oracle Database version. */ + version: string; + /** True if this version of the Oracle Database software is the latest version for a release. */ + isLatestForMajorVersion?: boolean; + /** True if this version of the Oracle Database software is the preview version. */ + isPreviewDbVersion?: boolean; + /** True if this version of the Oracle Database software is supported for Upgrade. */ + isUpgradeSupported?: boolean; + /** True if this version of the Oracle Database software supports pluggable databases. */ + supportsPdb?: boolean; +} + +export function dbVersionPropertiesDeserializer(item: any): DbVersionProperties { + return { + version: item["version"], + isLatestForMajorVersion: item["isLatestForMajorVersion"], + isPreviewDbVersion: item["isPreviewDbVersion"], + isUpgradeSupported: item["isUpgradeSupported"], + supportsPdb: item["supportsPdb"], + }; +} + +/** The response of a DbVersion list operation. */ +export interface _DbVersionListResult { + /** The DbVersion items on this page */ + value: DbVersion[]; + /** The link to the next page of items */ + nextLink?: string; +} + +export function _dbVersionListResultDeserializer(item: any): _DbVersionListResult { + return { + value: dbVersionArrayDeserializer(item["value"]), + nextLink: item["nextLink"], + }; +} + +export function dbVersionArrayDeserializer(result: Array): any[] { + return result.map((item) => { + return dbVersionDeserializer(item); + }); +} + +/** Allowed values for System Shapes */ +export enum KnownSystemShapes { + /** Exadata X9M shape */ + ExadataX9M = "Exadata.X9M", + /** Exadata X11M shape */ + ExadataX11M = "Exadata.X11M", + /** Exadata DB on Exascale Infrastructure shape */ + ExaDbXs = "ExaDbXS", +} + +/** + * Allowed values for System Shapes \ + * {@link KnownSystemShapes} can be used interchangeably with SystemShapes, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Exadata.X9M**: Exadata X9M shape \ + * **Exadata.X11M**: Exadata X11M shape \ + * **ExaDbXS**: Exadata DB on Exascale Infrastructure shape + */ +export type SystemShapes = string; + +/** Allowed values for GI Minor Versions shapeFamily filter */ +export enum KnownShapeFamily { + /** Family value for Exadata Shape */ + Exadata = "EXADATA", + /** Family value for Exadb XS Shape */ + ExadbXs = "EXADB_XS", +} + +/** + * Allowed values for GI Minor Versions shapeFamily filter \ + * {@link KnownShapeFamily} can be used interchangeably with ShapeFamily, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **EXADATA**: Family value for Exadata Shape \ + * **EXADB_XS**: Family value for Exadb XS Shape + */ +export type ShapeFamily = string; + +/** Allowed values for BaseDb System Shapes */ +export enum KnownBaseDbSystemShapes { + /** Vm Standard X86 */ + VMStandardX86 = "VM.Standard.x86", +} + +/** + * Allowed values for BaseDb System Shapes \ + * {@link KnownBaseDbSystemShapes} can be used interchangeably with BaseDbSystemShapes, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **VM.Standard.x86**: Vm Standard X86 + */ +export type BaseDbSystemShapes = string; + +/** Allowed values for shape family. */ +export enum KnownShapeFamilyType { + /** Family value for Exadata Shape */ + Exadata = "EXADATA", + /** Family value for Exadb XS Shape */ + ExadbXs = "EXADB_XS", + /** Family value for Single Node Shape */ + SingleNode = "SINGLENODE", + /** Family value for Virtual Machine Shape */ + VirtualMachine = "VIRTUALMACHINE", +} + +/** + * Allowed values for shape family. \ + * {@link KnownShapeFamilyType} can be used interchangeably with ShapeFamilyType, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **EXADATA**: Family value for Exadata Shape \ + * **EXADB_XS**: Family value for Exadb XS Shape \ + * **SINGLENODE**: Family value for Single Node Shape \ + * **VIRTUALMACHINE**: Family value for Virtual Machine Shape + */ +export type ShapeFamilyType = string; /** Versions for API */ export enum KnownVersions { @@ -6664,6 +7752,8 @@ export enum KnownVersions { V20240601 = "2024-06-01", /** 2025-03-01 */ V20250301 = "2025-03-01", + /** 2025-09-01 */ + V20250901 = "2025-09-01", } export function privateIpAddressPropertiesArrayDeserializer( diff --git a/sdk/oracledatabase/arm-oracledatabase/src/oracleDatabaseManagementClient.ts b/sdk/oracledatabase/arm-oracledatabase/src/oracleDatabaseManagementClient.ts index 1d4a67326e3a..8ea8c5e4e141 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/oracleDatabaseManagementClient.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/oracleDatabaseManagementClient.ts @@ -1,89 +1,65 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { - createOracleDatabaseManagement, +import type { OracleDatabaseManagementContext, OracleDatabaseManagementClientOptionalParams, } from "./api/index.js"; -import { - ExascaleDbStorageVaultsOperations, - _getExascaleDbStorageVaultsOperations, -} from "./classic/exascaleDbStorageVaults/index.js"; -import { - ExascaleDbNodesOperations, - _getExascaleDbNodesOperations, -} from "./classic/exascaleDbNodes/index.js"; -import { - ExadbVmClustersOperations, - _getExadbVmClustersOperations, -} from "./classic/exadbVmClusters/index.js"; -import { - AutonomousDatabaseVersionsOperations, - _getAutonomousDatabaseVersionsOperations, -} from "./classic/autonomousDatabaseVersions/index.js"; -import { - AutonomousDatabaseNationalCharacterSetsOperations, - _getAutonomousDatabaseNationalCharacterSetsOperations, -} from "./classic/autonomousDatabaseNationalCharacterSets/index.js"; -import { - AutonomousDatabaseCharacterSetsOperations, - _getAutonomousDatabaseCharacterSetsOperations, -} from "./classic/autonomousDatabaseCharacterSets/index.js"; -import { - AutonomousDatabaseBackupsOperations, - _getAutonomousDatabaseBackupsOperations, -} from "./classic/autonomousDatabaseBackups/index.js"; -import { - AutonomousDatabasesOperations, - _getAutonomousDatabasesOperations, -} from "./classic/autonomousDatabases/index.js"; -import { - FlexComponentsOperations, - _getFlexComponentsOperations, -} from "./classic/flexComponents/index.js"; -import { - DnsPrivateZonesOperations, - _getDnsPrivateZonesOperations, -} from "./classic/dnsPrivateZones/index.js"; -import { - DnsPrivateViewsOperations, - _getDnsPrivateViewsOperations, -} from "./classic/dnsPrivateViews/index.js"; -import { - DbSystemShapesOperations, - _getDbSystemShapesOperations, -} from "./classic/dbSystemShapes/index.js"; -import { - GiMinorVersionsOperations, - _getGiMinorVersionsOperations, -} from "./classic/giMinorVersions/index.js"; -import { GiVersionsOperations, _getGiVersionsOperations } from "./classic/giVersions/index.js"; -import { DbNodesOperations, _getDbNodesOperations } from "./classic/dbNodes/index.js"; -import { - OracleSubscriptionsOperations, - _getOracleSubscriptionsOperations, -} from "./classic/oracleSubscriptions/index.js"; -import { - SystemVersionsOperations, - _getSystemVersionsOperations, -} from "./classic/systemVersions/index.js"; -import { - VirtualNetworkAddressesOperations, - _getVirtualNetworkAddressesOperations, -} from "./classic/virtualNetworkAddresses/index.js"; -import { - CloudVmClustersOperations, - _getCloudVmClustersOperations, -} from "./classic/cloudVmClusters/index.js"; -import { DbServersOperations, _getDbServersOperations } from "./classic/dbServers/index.js"; -import { - CloudExadataInfrastructuresOperations, - _getCloudExadataInfrastructuresOperations, -} from "./classic/cloudExadataInfrastructures/index.js"; -import { OperationsOperations, _getOperationsOperations } from "./classic/operations/index.js"; -import { Pipeline } from "@azure/core-rest-pipeline"; -import { TokenCredential } from "@azure/core-auth"; +import { createOracleDatabaseManagement } from "./api/index.js"; +import type { AutonomousDatabaseBackupsOperations } from "./classic/autonomousDatabaseBackups/index.js"; +import { _getAutonomousDatabaseBackupsOperations } from "./classic/autonomousDatabaseBackups/index.js"; +import type { AutonomousDatabaseCharacterSetsOperations } from "./classic/autonomousDatabaseCharacterSets/index.js"; +import { _getAutonomousDatabaseCharacterSetsOperations } from "./classic/autonomousDatabaseCharacterSets/index.js"; +import type { AutonomousDatabaseNationalCharacterSetsOperations } from "./classic/autonomousDatabaseNationalCharacterSets/index.js"; +import { _getAutonomousDatabaseNationalCharacterSetsOperations } from "./classic/autonomousDatabaseNationalCharacterSets/index.js"; +import type { AutonomousDatabaseVersionsOperations } from "./classic/autonomousDatabaseVersions/index.js"; +import { _getAutonomousDatabaseVersionsOperations } from "./classic/autonomousDatabaseVersions/index.js"; +import type { AutonomousDatabasesOperations } from "./classic/autonomousDatabases/index.js"; +import { _getAutonomousDatabasesOperations } from "./classic/autonomousDatabases/index.js"; +import type { CloudExadataInfrastructuresOperations } from "./classic/cloudExadataInfrastructures/index.js"; +import { _getCloudExadataInfrastructuresOperations } from "./classic/cloudExadataInfrastructures/index.js"; +import type { CloudVmClustersOperations } from "./classic/cloudVmClusters/index.js"; +import { _getCloudVmClustersOperations } from "./classic/cloudVmClusters/index.js"; +import type { DbNodesOperations } from "./classic/dbNodes/index.js"; +import { _getDbNodesOperations } from "./classic/dbNodes/index.js"; +import type { DbServersOperations } from "./classic/dbServers/index.js"; +import { _getDbServersOperations } from "./classic/dbServers/index.js"; +import type { DbSystemShapesOperations } from "./classic/dbSystemShapes/index.js"; +import { _getDbSystemShapesOperations } from "./classic/dbSystemShapes/index.js"; +import type { DbSystemsOperations } from "./classic/dbSystems/index.js"; +import { _getDbSystemsOperations } from "./classic/dbSystems/index.js"; +import type { DbVersionsOperations } from "./classic/dbVersions/index.js"; +import { _getDbVersionsOperations } from "./classic/dbVersions/index.js"; +import type { DnsPrivateViewsOperations } from "./classic/dnsPrivateViews/index.js"; +import { _getDnsPrivateViewsOperations } from "./classic/dnsPrivateViews/index.js"; +import type { DnsPrivateZonesOperations } from "./classic/dnsPrivateZones/index.js"; +import { _getDnsPrivateZonesOperations } from "./classic/dnsPrivateZones/index.js"; +import type { ExadbVmClustersOperations } from "./classic/exadbVmClusters/index.js"; +import { _getExadbVmClustersOperations } from "./classic/exadbVmClusters/index.js"; +import type { ExascaleDbNodesOperations } from "./classic/exascaleDbNodes/index.js"; +import { _getExascaleDbNodesOperations } from "./classic/exascaleDbNodes/index.js"; +import type { ExascaleDbStorageVaultsOperations } from "./classic/exascaleDbStorageVaults/index.js"; +import { _getExascaleDbStorageVaultsOperations } from "./classic/exascaleDbStorageVaults/index.js"; +import type { FlexComponentsOperations } from "./classic/flexComponents/index.js"; +import { _getFlexComponentsOperations } from "./classic/flexComponents/index.js"; +import type { GiMinorVersionsOperations } from "./classic/giMinorVersions/index.js"; +import { _getGiMinorVersionsOperations } from "./classic/giMinorVersions/index.js"; +import type { GiVersionsOperations } from "./classic/giVersions/index.js"; +import { _getGiVersionsOperations } from "./classic/giVersions/index.js"; +import type { NetworkAnchorsOperations } from "./classic/networkAnchors/index.js"; +import { _getNetworkAnchorsOperations } from "./classic/networkAnchors/index.js"; +import type { OperationsOperations } from "./classic/operations/index.js"; +import { _getOperationsOperations } from "./classic/operations/index.js"; +import type { OracleSubscriptionsOperations } from "./classic/oracleSubscriptions/index.js"; +import { _getOracleSubscriptionsOperations } from "./classic/oracleSubscriptions/index.js"; +import type { ResourceAnchorsOperations } from "./classic/resourceAnchors/index.js"; +import { _getResourceAnchorsOperations } from "./classic/resourceAnchors/index.js"; +import type { SystemVersionsOperations } from "./classic/systemVersions/index.js"; +import { _getSystemVersionsOperations } from "./classic/systemVersions/index.js"; +import type { VirtualNetworkAddressesOperations } from "./classic/virtualNetworkAddresses/index.js"; +import { _getVirtualNetworkAddressesOperations } from "./classic/virtualNetworkAddresses/index.js"; +import type { TokenCredential } from "@azure/core-auth"; +import type { Pipeline } from "@azure/core-rest-pipeline"; export { OracleDatabaseManagementClientOptionalParams } from "./api/oracleDatabaseManagementContext.js"; @@ -106,6 +82,10 @@ export class OracleDatabaseManagementClient { userAgentOptions: { userAgentPrefix }, }); this.pipeline = this._client.pipeline; + this.dbVersions = _getDbVersionsOperations(this._client); + this.dbSystems = _getDbSystemsOperations(this._client); + this.resourceAnchors = _getResourceAnchorsOperations(this._client); + this.networkAnchors = _getNetworkAnchorsOperations(this._client); this.exascaleDbStorageVaults = _getExascaleDbStorageVaultsOperations(this._client); this.exascaleDbNodes = _getExascaleDbNodesOperations(this._client); this.exadbVmClusters = _getExadbVmClustersOperations(this._client); @@ -133,6 +113,14 @@ export class OracleDatabaseManagementClient { this.operations = _getOperationsOperations(this._client); } + /** The operation groups for dbVersions */ + public readonly dbVersions: DbVersionsOperations; + /** The operation groups for dbSystems */ + public readonly dbSystems: DbSystemsOperations; + /** The operation groups for resourceAnchors */ + public readonly resourceAnchors: ResourceAnchorsOperations; + /** The operation groups for networkAnchors */ + public readonly networkAnchors: NetworkAnchorsOperations; /** The operation groups for exascaleDbStorageVaults */ public readonly exascaleDbStorageVaults: ExascaleDbStorageVaultsOperations; /** The operation groups for exascaleDbNodes */ diff --git a/sdk/oracledatabase/arm-oracledatabase/src/restorePollerHelpers.ts b/sdk/oracledatabase/arm-oracledatabase/src/restorePollerHelpers.ts index d22729f218d8..e0dbe417cc23 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/restorePollerHelpers.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/restorePollerHelpers.ts @@ -1,10 +1,25 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { OracleDatabaseManagementClient } from "./oracleDatabaseManagementClient.js"; +import type { OracleDatabaseManagementClient } from "./oracleDatabaseManagementClient.js"; import { _$deleteDeserialize, _updateDeserialize, + _createOrUpdateDeserialize, +} from "./api/dbSystems/operations.js"; +import { + _$deleteDeserialize as _$deleteDeserializeResourceAnchors, + _updateDeserialize as _updateDeserializeResourceAnchors, + _createOrUpdateDeserialize as _createOrUpdateDeserializeResourceAnchors, +} from "./api/resourceAnchors/operations.js"; +import { + _$deleteDeserialize as _$deleteDeserializeNetworkAnchors, + _updateDeserialize as _updateDeserializeNetworkAnchors, + _createOrUpdateDeserialize as _createOrUpdateDeserializeNetworkAnchors, +} from "./api/networkAnchors/operations.js"; +import { + _$deleteDeserialize as _$deleteDeserializeExascaleDbStorageVaults, + _updateDeserialize as _updateDeserializeExascaleDbStorageVaults, _createDeserialize, } from "./api/exascaleDbStorageVaults/operations.js"; import { _actionDeserialize } from "./api/exascaleDbNodes/operations.js"; @@ -12,7 +27,7 @@ import { _removeVmsDeserialize, _$deleteDeserialize as _$deleteDeserializeExadbVmClusters, _updateDeserialize as _updateDeserializeExadbVmClusters, - _createOrUpdateDeserialize, + _createOrUpdateDeserialize as _createOrUpdateDeserializeExadbVmClusters, } from "./api/exadbVmClusters/operations.js"; import { _updateDeserialize as _updateDeserializeAutonomousDatabaseBackups, @@ -20,6 +35,7 @@ import { _createOrUpdateDeserialize as _createOrUpdateDeserializeAutonomousDatabaseBackups, } from "./api/autonomousDatabaseBackups/operations.js"; import { + _actionDeserialize as _actionDeserializeAutonomousDatabases, _changeDisasterRecoveryConfigurationDeserialize, _shrinkDeserialize, _restoreDeserialize, @@ -51,20 +67,17 @@ import { _createOrUpdateDeserialize as _createOrUpdateDeserializeCloudVmClusters, } from "./api/cloudVmClusters/operations.js"; import { + _configureExascaleDeserialize, _addStorageCapacityDeserialize, _$deleteDeserialize as _$deleteDeserializeCloudExadataInfrastructures, _updateDeserialize as _updateDeserializeCloudExadataInfrastructures, _createOrUpdateDeserialize as _createOrUpdateDeserializeCloudExadataInfrastructures, } from "./api/cloudExadataInfrastructures/operations.js"; import { getLongRunningPoller } from "./static-helpers/pollingHelpers.js"; -import { OperationOptions, PathUncheckedResponse } from "@azure-rest/core-client"; -import { AbortSignalLike } from "@azure/abort-controller"; -import { - PollerLike, - OperationState, - deserializeState, - ResourceLocationConfig, -} from "@azure/core-lro"; +import type { OperationOptions, PathUncheckedResponse } from "@azure-rest/core-client"; +import type { AbortSignalLike } from "@azure/abort-controller"; +import type { PollerLike, OperationState, ResourceLocationConfig } from "@azure/core-lro"; +import { deserializeState } from "@azure/core-lro"; export interface RestorePollerOptions< TResult, @@ -124,20 +137,69 @@ export function restorePoller( } interface DeserializationHelper { + // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type deserializer: Function; expectedStatuses: string[]; } const deserializeMap: Record = { - "DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}": + "DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}": { deserializer: _$deleteDeserialize, expectedStatuses: ["202", "204", "200"], }, - "PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}": + "PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}": { deserializer: _updateDeserialize, expectedStatuses: ["200", "202"] }, + "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/dbSystems/{dbSystemName}": + { + deserializer: _createOrUpdateDeserialize, + expectedStatuses: ["200", "201", "202"], + }, + "DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}": + { + deserializer: _$deleteDeserializeResourceAnchors, + expectedStatuses: ["202", "204", "200"], + }, + "PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}": + { + deserializer: _updateDeserializeResourceAnchors, + expectedStatuses: ["200", "202"], + }, + "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/resourceAnchors/{resourceAnchorName}": + { + deserializer: _createOrUpdateDeserializeResourceAnchors, + expectedStatuses: ["200", "201", "202"], + }, + "DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}": + { + deserializer: _$deleteDeserializeNetworkAnchors, + expectedStatuses: ["202", "204", "200"], + }, + "PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}": + { + deserializer: _updateDeserializeNetworkAnchors, + expectedStatuses: ["200", "202"], + }, + "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/networkAnchors/{networkAnchorName}": + { + deserializer: _createOrUpdateDeserializeNetworkAnchors, + expectedStatuses: ["200", "201", "202"], + }, + "DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}": + { + deserializer: _$deleteDeserializeExascaleDbStorageVaults, + expectedStatuses: ["202", "204", "200"], + }, + "PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}": + { + deserializer: _updateDeserializeExascaleDbStorageVaults, + expectedStatuses: ["200", "202"], + }, "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exascaleDbStorageVaults/{exascaleDbStorageVaultName}": - { deserializer: _createDeserialize, expectedStatuses: ["200", "201"] }, + { + deserializer: _createDeserialize, + expectedStatuses: ["200", "201", "202"], + }, "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}/dbNodes/{exascaleDbNodeName}/action": { deserializer: _actionDeserialize, expectedStatuses: ["202", "200"] }, "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}/removeVms": @@ -154,8 +216,8 @@ const deserializeMap: Record = { }, "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/exadbVmClusters/{exadbVmClusterName}": { - deserializer: _createOrUpdateDeserialize, - expectedStatuses: ["200", "201"], + deserializer: _createOrUpdateDeserializeExadbVmClusters, + expectedStatuses: ["200", "201", "202"], }, "PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups/{adbbackupid}": { @@ -170,7 +232,12 @@ const deserializeMap: Record = { "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/autonomousDatabaseBackups/{adbbackupid}": { deserializer: _createOrUpdateDeserializeAutonomousDatabaseBackups, - expectedStatuses: ["200", "201"], + expectedStatuses: ["200", "201", "202"], + }, + "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/action": + { + deserializer: _actionDeserializeAutonomousDatabases, + expectedStatuses: ["202", "200"], }, "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}/changeDisasterRecoveryConfiguration": { @@ -198,7 +265,7 @@ const deserializeMap: Record = { "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/autonomousDatabases/{autonomousdatabasename}": { deserializer: _createOrUpdateDeserializeAutonomousDatabases, - expectedStatuses: ["200", "201"], + expectedStatuses: ["200", "201", "202"], }, "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/dbNodes/{dbnodeocid}/action": { @@ -235,7 +302,7 @@ const deserializeMap: Record = { }, "PUT /subscriptions/{subscriptionId}/providers/Oracle.Database/oracleSubscriptions/default": { deserializer: _createOrUpdateDeserializeOracleSubscriptions, - expectedStatuses: ["200", "201"], + expectedStatuses: ["200", "201", "202"], }, "DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}": { @@ -245,7 +312,7 @@ const deserializeMap: Record = { "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/virtualNetworkAddresses/{virtualnetworkaddressname}": { deserializer: _createOrUpdateDeserializeVirtualNetworkAddresses, - expectedStatuses: ["200", "201"], + expectedStatuses: ["200", "201", "202"], }, "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}/removeVms": { @@ -267,7 +334,12 @@ const deserializeMap: Record = { "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudVmClusters/{cloudvmclustername}": { deserializer: _createOrUpdateDeserializeCloudVmClusters, - expectedStatuses: ["200", "201"], + expectedStatuses: ["200", "201", "202"], + }, + "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/configureExascale": + { + deserializer: _configureExascaleDeserialize, + expectedStatuses: ["202", "200"], }, "POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}/addStorageCapacity": { @@ -287,7 +359,7 @@ const deserializeMap: Record = { "PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Oracle.Database/cloudExadataInfrastructures/{cloudexadatainfrastructurename}": { deserializer: _createOrUpdateDeserializeCloudExadataInfrastructures, - expectedStatuses: ["200", "201"], + expectedStatuses: ["200", "201", "202"], }, }; diff --git a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/cloudSettingHelpers.ts b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/cloudSettingHelpers.ts new file mode 100644 index 000000000000..613112c6e397 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/cloudSettingHelpers.ts @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +/** + * An enum to describe Azure Cloud environments. + * @enum {string} + */ +export enum AzureClouds { + /** Azure public cloud, which is the default cloud for Azure SDKs. */ + AZURE_PUBLIC_CLOUD = "AZURE_PUBLIC_CLOUD", + /** Azure China cloud */ + AZURE_CHINA_CLOUD = "AZURE_CHINA_CLOUD", + /** Azure US government cloud */ + AZURE_US_GOVERNMENT = "AZURE_US_GOVERNMENT", +} + +/** The supported values for cloud setting as a string literal type */ +export type AzureSupportedClouds = `${AzureClouds}`; + +/** + * Gets the Azure Resource Manager endpoint URL for the specified cloud setting. + * @param cloudSetting - The Azure cloud environment setting. Use one of the AzureClouds enum values. + * @returns The ARM endpoint URL for the specified cloud, or undefined if cloudSetting is undefined. + * @throws {Error} Throws an error if an unknown cloud setting is provided. + */ +export function getArmEndpoint(cloudSetting?: AzureSupportedClouds): string | undefined { + if (cloudSetting === undefined) { + return undefined; + } + const cloudEndpoints: Record = { + AZURE_CHINA_CLOUD: "https://management.chinacloudapi.cn/", + AZURE_US_GOVERNMENT: "https://management.usgovcloudapi.net/", + AZURE_PUBLIC_CLOUD: "https://management.azure.com/", + }; + if (cloudSetting in cloudEndpoints) { + return cloudEndpoints[cloudSetting]; + } else { + throw new Error( + `Unknown cloud setting: ${cloudSetting}. Please refer to the enum AzureClouds for possible values.`, + ); + } +} diff --git a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pagingHelpers.ts b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pagingHelpers.ts index ce33af5f4178..11248b3804e4 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pagingHelpers.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pagingHelpers.ts @@ -1,7 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { Client, createRestError, PathUncheckedResponse } from "@azure-rest/core-client"; +import type { Client, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError } from "@azure-rest/core-client"; import { RestError } from "@azure/core-rest-pipeline"; /** diff --git a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pollingHelpers.ts b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pollingHelpers.ts index f01c41bab69d..63b3c201e5a8 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pollingHelpers.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/pollingHelpers.ts @@ -1,17 +1,18 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { +import type { PollerLike, OperationState, ResourceLocationConfig, RunningOperation, - createHttpPoller, OperationResponse, } from "@azure/core-lro"; +import { createHttpPoller } from "@azure/core-lro"; -import { Client, PathUncheckedResponse, createRestError } from "@azure-rest/core-client"; -import { AbortSignalLike } from "@azure/abort-controller"; +import type { Client, PathUncheckedResponse } from "@azure-rest/core-client"; +import { createRestError } from "@azure-rest/core-client"; +import type { AbortSignalLike } from "@azure/abort-controller"; export interface GetLongRunningPollerOptions { /** Delay to wait until next poll, in milliseconds. */ diff --git a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/urlTemplate.ts b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/urlTemplate.ts index 9aac558fb377..657898dd38ff 100644 --- a/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/urlTemplate.ts +++ b/sdk/oracledatabase/arm-oracledatabase/src/static-helpers/urlTemplate.ts @@ -1,9 +1,9 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -//--------------------- +// --------------------- // interfaces -//--------------------- +// --------------------- interface ValueOptions { isFirst: boolean; // is first value in the expression op?: string; // operator @@ -21,27 +21,27 @@ export interface UrlTemplateOptions { // --------------------- // helpers // --------------------- -function encodeComponent(val: string, reserved?: boolean, op?: string) { +function encodeComponent(val: string, reserved?: boolean, op?: string): string { return (reserved ?? op === "+") || op === "#" ? encodeReservedComponent(val) : encodeRFC3986URIComponent(val); } -function encodeReservedComponent(str: string) { +function encodeReservedComponent(str: string): string { return str .split(/(%[0-9A-Fa-f]{2})/g) .map((part) => (!/%[0-9A-Fa-f]/.test(part) ? encodeURI(part) : part)) .join(""); } -function encodeRFC3986URIComponent(str: string) { +function encodeRFC3986URIComponent(str: string): string { return encodeURIComponent(str).replace( /[!'()*]/g, (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`, ); } -function isDefined(val: any) { +function isDefined(val: any): boolean { return val !== undefined && val !== null; } @@ -49,7 +49,7 @@ function getNamedAndIfEmpty(op?: string): [boolean, string] { return [!!op && [";", "?", "&"].includes(op), !!op && ["?", "&"].includes(op) ? "=" : ""]; } -function getFirstOrSep(op?: string, isFirst = false) { +function getFirstOrSep(op?: string, isFirst = false): string { if (isFirst) { return !op || op === "+" ? "" : op; } else if (!op || op === "+" || op === "#") { @@ -61,7 +61,7 @@ function getFirstOrSep(op?: string, isFirst = false) { } } -function getExpandedValue(option: ValueOptions) { +function getExpandedValue(option: ValueOptions): string { let isFirst = option.isFirst; const { op, varName, varValue: value, reserved } = option; const vals: string[] = []; @@ -73,7 +73,11 @@ function getExpandedValue(option: ValueOptions) { vals.push(`${getFirstOrSep(op, isFirst)}`); if (named && varName) { vals.push(`${encodeURIComponent(varName)}`); - val === "" ? vals.push(ifEmpty) : vals.push("="); + if (val === "") { + vals.push(ifEmpty); + } else { + vals.push("="); + } } vals.push(encodeComponent(val, reserved, op)); isFirst = false; @@ -88,7 +92,11 @@ function getExpandedValue(option: ValueOptions) { vals.push(`${getFirstOrSep(op, isFirst)}`); if (key) { vals.push(`${encodeURIComponent(key)}`); - named && val === "" ? vals.push(ifEmpty) : vals.push("="); + if (named && val === "") { + vals.push(ifEmpty); + } else { + vals.push("="); + } } vals.push(encodeComponent(val, reserved, op)); isFirst = false; @@ -97,7 +105,7 @@ function getExpandedValue(option: ValueOptions) { return vals.join(""); } -function getNonExpandedValue(option: ValueOptions) { +function getNonExpandedValue(option: ValueOptions): string | undefined { const { op, varName, varValue: value, isFirst, reserved } = option; const vals: string[] = []; const first = getFirstOrSep(op, isFirst); @@ -143,7 +151,11 @@ function getVarValue(option: ValueOptions): string | undefined { if (named && varName) { // No need to encode varName considering it is already encoded vals.push(varName); - val === "" ? vals.push(ifEmpty) : vals.push("="); + if (val === "") { + vals.push(ifEmpty); + } else { + vals.push("="); + } } if (modifier && modifier !== "*") { val = val.substring(0, parseInt(modifier, 10)); @@ -165,18 +177,19 @@ export function expandUrlTemplate( context: Record, option?: UrlTemplateOptions, ): string { - return template.replace(/\{([^\{\}]+)\}|([^\{\}]+)/g, (_, expr, text) => { + return template.replace(/\{([^{}]+)\}|([^{}]+)/g, (_, expr, text) => { if (!expr) { return encodeReservedComponent(text); } let op; if (["+", "#", ".", "/", ";", "?", "&"].includes(expr[0])) { - ((op = expr[0]), (expr = expr.slice(1))); + op = expr[0]; + expr = expr.slice(1); } const varList = expr.split(/,/g); const result = []; for (const varSpec of varList) { - const varMatch = /([^:\*]*)(?::(\d+)|(\*))?/.exec(varSpec); + const varMatch = /([^:*]*)(?::(\d+)|(\*))?/.exec(varSpec); if (!varMatch || !varMatch[1]) { continue; } diff --git a/sdk/oracledatabase/arm-oracledatabase/test/public/utils/recordedClient.ts b/sdk/oracledatabase/arm-oracledatabase/test/public/utils/recordedClient.ts index 14dcd9fa397c..285e4643c45e 100644 --- a/sdk/oracledatabase/arm-oracledatabase/test/public/utils/recordedClient.ts +++ b/sdk/oracledatabase/arm-oracledatabase/test/public/utils/recordedClient.ts @@ -1,7 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { Recorder, RecorderStartOptions, VitestTestContext } from "@azure-tools/test-recorder"; +import type { RecorderStartOptions, VitestTestContext } from "@azure-tools/test-recorder"; +import { Recorder } from "@azure-tools/test-recorder"; const replaceableVariables: Record = { SUBSCRIPTION_ID: "azure_subscription_id", diff --git a/sdk/oracledatabase/arm-oracledatabase/test/snippets.spec.ts b/sdk/oracledatabase/arm-oracledatabase/test/snippets.spec.ts index c576bade13db..837e4ee30c8b 100644 --- a/sdk/oracledatabase/arm-oracledatabase/test/snippets.spec.ts +++ b/sdk/oracledatabase/arm-oracledatabase/test/snippets.spec.ts @@ -8,7 +8,8 @@ import { describe, it } from "vitest"; describe("snippets", () => { it("ReadmeSampleCreateClient_Node", async () => { - const client = new OracleDatabaseManagementClient(new DefaultAzureCredential()); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(new DefaultAzureCredential(), subscriptionId); }); it("ReadmeSampleCreateClient_Browser", async () => { @@ -16,7 +17,8 @@ describe("snippets", () => { tenantId: "", clientId: "", }); - const client = new OracleDatabaseManagementClient(credential); + const subscriptionId = "00000000-0000-0000-0000-000000000000"; + const client = new OracleDatabaseManagementClient(credential, subscriptionId); }); it("SetLogLevel", async () => { diff --git a/sdk/oracledatabase/arm-oracledatabase/tsconfig.browser.config.json b/sdk/oracledatabase/arm-oracledatabase/tsconfig.browser.config.json index 4cfc7459d784..75871518e3a0 100644 --- a/sdk/oracledatabase/arm-oracledatabase/tsconfig.browser.config.json +++ b/sdk/oracledatabase/arm-oracledatabase/tsconfig.browser.config.json @@ -1,10 +1,3 @@ { - "extends": "../../../tsconfig.browser.base.json", - "compilerOptions": { - "paths": { - "@azure/arm-oracledatabase": ["./dist/browser/index.d.ts"], - "@azure/arm-oracledatabase/*": ["./dist/browser/*"], - "$internal/*": ["./dist/browser/*"] - } - } + "extends": ["./tsconfig.test.json", "../../../tsconfig.browser.base.json"] } diff --git a/sdk/oracledatabase/arm-oracledatabase/tsconfig.json b/sdk/oracledatabase/arm-oracledatabase/tsconfig.json index d466f1460665..0e57dbd186e5 100644 --- a/sdk/oracledatabase/arm-oracledatabase/tsconfig.json +++ b/sdk/oracledatabase/arm-oracledatabase/tsconfig.json @@ -12,6 +12,5 @@ { "path": "./tsconfig.snippets.json" } - ], - "files": [] + ] } diff --git a/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.json b/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.json index 42798ad68913..290ca214aebc 100644 --- a/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.json +++ b/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.json @@ -1,14 +1,3 @@ { - "references": [ - { - "path": "./tsconfig.test.node.json" - }, - { - "path": "./tsconfig.browser.config.json" - } - ], - "compilerOptions": { - "composite": true - }, - "files": [] + "extends": ["./tsconfig.src.json", "../../../tsconfig.test.base.json"] } diff --git a/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.node.json b/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.node.json deleted file mode 100644 index 1016cf4a44cf..000000000000 --- a/sdk/oracledatabase/arm-oracledatabase/tsconfig.test.node.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../../tsconfig.test.node.base.json", - "compilerOptions": { - "paths": { - "@azure/arm-oracledatabase": ["./src/index.ts"], - "@azure/arm-oracledatabase/*": ["./src/*"], - "$internal/*": ["./src/*"] - } - } -} diff --git a/sdk/oracledatabase/arm-oracledatabase/tsp-location.yaml b/sdk/oracledatabase/arm-oracledatabase/tsp-location.yaml index e04aac7d3f43..e4c56f733f82 100644 --- a/sdk/oracledatabase/arm-oracledatabase/tsp-location.yaml +++ b/sdk/oracledatabase/arm-oracledatabase/tsp-location.yaml @@ -1,5 +1,5 @@ directory: specification/oracle/Oracle.Database.Management -commit: 48f770303e835ddc4861b27b07f2b74b9c69503e +commit: 9158dabc895f6b48e4b04a84bd5070e8301caf23 repo: Azure/azure-rest-api-specs additionalDirectories: - specification/oracle/Oracle.Database.Management/models diff --git a/sdk/oracledatabase/arm-oracledatabase/vitest.config.ts b/sdk/oracledatabase/arm-oracledatabase/vitest.config.ts index cc5cd85d4131..0dfa15cc4498 100644 --- a/sdk/oracledatabase/arm-oracledatabase/vitest.config.ts +++ b/sdk/oracledatabase/arm-oracledatabase/vitest.config.ts @@ -1,4 +1,3 @@ - // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. diff --git a/sdk/oracledatabase/arm-oracledatabase/vitest.esm.config.ts b/sdk/oracledatabase/arm-oracledatabase/vitest.esm.config.ts new file mode 100644 index 000000000000..5e9735e9b144 --- /dev/null +++ b/sdk/oracledatabase/arm-oracledatabase/vitest.esm.config.ts @@ -0,0 +1,8 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. + +import { mergeConfig } from "vitest/config"; +import vitestConfig from "./vitest.config.ts"; +import vitestEsmConfig from "../../../vitest.esm.shared.config.ts"; + +export default mergeConfig(vitestConfig, vitestEsmConfig); From 1119d3c568d948d0c5685ecacafed58179353cd4 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 13 Oct 2025 08:54:27 -0700 Subject: [PATCH 10/73] Sync eng/common directory with azure-sdk-tools for PR 12454 (#36184) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12454 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) --------- Co-authored-by: Ray Chen --- eng/common/tsp-client/README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/eng/common/tsp-client/README.md b/eng/common/tsp-client/README.md index c0a6076a4b87..6f88d536c9e2 100644 --- a/eng/common/tsp-client/README.md +++ b/eng/common/tsp-client/README.md @@ -25,30 +25,32 @@ npm ci ## Usage -After installation, you can run tsp-client by navigating to the directory and using npm exec: +After installation, you can run `tsp-client` using `npm exec --prefix {path_to_the_eng/common/tsp-client}`. +Note that you should *not* navigate into the `eng/common/tsp-client` folder, since several `tsp-client` commands require the current working directory to be the client library's root. ```bash -cd eng/common/tsp-client +# Set the tsp-client directory path relative to your current working directory +_TspClientDir=eng/common/tsp-client # Get help -npm exec --no -- tsp-client --help +npm exec --prefix ${_TspClientDir} --no -- tsp-client --help # Check version -npm exec --no -- tsp-client version +npm exec --prefix ${_TspClientDir} --no -- tsp-client version # Generate client code -npm exec --no -- tsp-client generate --output-dir ./generated +npm exec --prefix ${_TspClientDir} --no -- tsp-client generate --output-dir ./generated # Initialize a new project -npm exec --no -- tsp-client init --tsp-config ./tspconfig.yaml +npm exec --prefix ${_TspClientDir} --no -- tsp-client init --tsp-config ./tspconfig.yaml ``` ## CI/CD Best Practices ```bash -cd eng/common/tsp-client -npm ci -npm exec --no -- tsp-client init --update-if-exists --tsp-config https://github.com/Azure/azure-rest-api-specs/blob/dee71463cbde1d416c47cf544e34f7966a94ddcb/specification/contosowidgetmanager/Contoso.WidgetManager/tspconfig.yaml +_TspClientDir=eng/common/tsp-client +npm ci --prefix ${_TspClientDir} +npm exec --prefix ${_TspClientDir} --no -- tsp-client init --update-if-exists --tsp-config https://github.com/Azure/azure-rest-api-specs/blob/dee71463cbde1d416c47cf544e34f7966a94ddcb/specification/contosowidgetmanager/Contoso.WidgetManager/tspconfig.yaml ``` ## Package Management From f4e5ac7124919054e6e36a1804467891151ebe37 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 13 Oct 2025 09:07:13 -0700 Subject: [PATCH 11/73] Sync eng/common directory with azure-sdk-tools for PR 12410 (#36136) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12410 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) --------- Co-authored-by: ray chen --- .../steps/set-test-pipeline-version.yml | 26 +++- eng/common/scripts/SetTestPipelineVersion.ps1 | 132 ++++++++++++++---- 2 files changed, 124 insertions(+), 34 deletions(-) diff --git a/eng/common/pipelines/templates/steps/set-test-pipeline-version.yml b/eng/common/pipelines/templates/steps/set-test-pipeline-version.yml index 61d49cdb7db4..cb4d8ff33334 100644 --- a/eng/common/pipelines/templates/steps/set-test-pipeline-version.yml +++ b/eng/common/pipelines/templates/steps/set-test-pipeline-version.yml @@ -1,12 +1,25 @@ parameters: - PackageName: '' - PackageNames: '' - ServiceDirectory: '' - TagSeparator: '_' - TestPipeline: false +- name: PackageName + type: string + default: '' +- name: PackageNames + type: string + default: '' +- name: ServiceDirectory + type: string + default: '' +- name: TagSeparator + type: string + default: '_' +- name: TestPipeline + type: boolean + default: false +- name: ArtifactsJson + type: string + default: '' steps: -- ${{ if eq(parameters.TestPipeline, 'true') }}: +- ${{ if eq(parameters.TestPipeline, true) }}: - task: PowerShell@2 displayName: Prep template pipeline for release condition: and(succeeded(), ne(variables['Skip.SetTestPipelineVersion'], 'true')) @@ -18,4 +31,5 @@ steps: -PackageNames '${{ coalesce(parameters.PackageName, parameters.PackageNames) }}' -ServiceDirectory '${{ parameters.ServiceDirectory }}' -TagSeparator '${{ parameters.TagSeparator }}' + -ArtifactsJson '${{ parameters.ArtifactsJson }}' pwsh: true diff --git a/eng/common/scripts/SetTestPipelineVersion.ps1 b/eng/common/scripts/SetTestPipelineVersion.ps1 index 2b2ee70ef97e..dea5496874e8 100644 --- a/eng/common/scripts/SetTestPipelineVersion.ps1 +++ b/eng/common/scripts/SetTestPipelineVersion.ps1 @@ -3,12 +3,14 @@ param ( [Parameter(mandatory = $true)] [string]$BuildID, - [Parameter(mandatory = $true)] - [string]$PackageNames, + [Parameter(mandatory = $false)] + [string]$PackageNames = "", [Parameter(mandatory = $true)] [string]$ServiceDirectory, [Parameter(mandatory = $false)] - [string]$TagSeparator = "_" + [string]$TagSeparator = "_", + [Parameter(mandatory = $false)] + [string]$ArtifactsJson = "" ) . (Join-Path $PSScriptRoot common.ps1) @@ -16,43 +18,117 @@ param ( Write-Host "PackageNames: $PackageNames" Write-Host "ServiceDirectory: $ServiceDirectory" Write-Host "BuildID: $BuildID" +Write-Host "ArtifactsJson: $ArtifactsJson" $packageNamesArray = @() +$artifacts = $null -if ([String]::IsNullOrWhiteSpace($PackageNames)) { - LogError "PackageNames cannot be empty." - exit 1 +# If ArtifactsJson is provided, extract package names from it +if (![String]::IsNullOrWhiteSpace($ArtifactsJson)) { + Write-Host "Using ArtifactsJson to determine package names" + try { + $artifacts = $ArtifactsJson | ConvertFrom-Json + $packageNamesArray = $artifacts | ForEach-Object { $_.name } + Write-Host "Extracted package names from ArtifactsJson: $($packageNamesArray -join ', ')" + } + catch { + LogError "Failed to parse ArtifactsJson: $($_.Exception.Message)" + exit 1 + } } -else { +elseif (![String]::IsNullOrWhiteSpace($PackageNames)) { $packageNamesArray = $PackageNames.Split(',') } +else { + LogError "Either PackageNames or ArtifactsJson must be provided." + exit 1 +} -foreach ($packageName in $packageNamesArray) { - Write-Host "Processing $packageName" - $newVersion = [AzureEngSemanticVersion]::new("1.0.0") - $prefix = "$packageName$TagSeparator" - Write-Host "Get Latest Tag : git tag -l $prefix*" - $latestTags = git tag -l "$prefix*" +if ($artifacts) { + # When using ArtifactsJson, process each artifact with its name and groupId (if applicable) + try { + foreach ($artifact in $artifacts) { + $packageName = $artifact.name + $newVersion = [AzureEngSemanticVersion]::new("1.0.0") + $prefix = "$packageName$TagSeparator" - $semVars = @() + if ($Language -eq "java") { + $groupId = $artifact.groupId + Write-Host "Processing $packageName with groupId $groupId" + if ([String]::IsNullOrWhiteSpace($groupId)) { + LogError "GroupId is missing for package $packageName." + exit 1 + } + # Use groupId+artifactName format for tag prefix (e.g., "com.azure.v2+azure-sdk-template_") + $prefix = "$groupId+$packageName$TagSeparator" + } - if ($latestTags -and ($latestTags.Length -gt 0)) { - foreach ($tag in $latestTags) { - $semVars += $tag.Substring($prefix.Length) - } + Write-Host "Get Latest Tag : git tag -l $prefix*" + $latestTags = git tag -l "$prefix*" + + $semVars = @() - $semVarsSorted = [AzureEngSemanticVersion]::SortVersionStrings($semVars) - Write-Host "Last Published Version $($semVarsSorted[0])" - $newVersion = [AzureEngSemanticVersion]::new($semVarsSorted[0]) + if ($latestTags -and ($latestTags.Length -gt 0)) { + foreach ($tag in $latestTags) { + $semVars += $tag.Substring($prefix.Length) + } + + $semVarsSorted = [AzureEngSemanticVersion]::SortVersionStrings($semVars) + Write-Host "Last Published Version $($semVarsSorted[0])" + $newVersion = [AzureEngSemanticVersion]::new($semVarsSorted[0]) + } + + $newVersion.PrereleaseLabel = $newVersion.DefaultPrereleaseLabel + $newVersion.PrereleaseNumber = $BuildID + $newVersion.IsPrerelease = $True + + Write-Host "Version to publish [ $($newVersion.ToString()) ]" + + if ($Language -ne "java") { + SetPackageVersion -PackageName $packageName ` + -Version $newVersion.ToString() ` + -ServiceDirectory $ServiceDirectory + } else { + SetPackageVersion -PackageName $packageName ` + -Version $newVersion.ToString() ` + -ServiceDirectory $ServiceDirectory ` + -GroupId $groupId + } + } + } + catch { + LogError "Failed to process ArtifactsJson: $ArtifactsJson, exception: $($_.Exception.Message)" + exit 1 } +} else { + # Fallback to original logic when using PackageNames string + foreach ($packageName in $packageNamesArray) { + Write-Host "Processing $packageName" + $newVersion = [AzureEngSemanticVersion]::new("1.0.0") + $prefix = "$packageName$TagSeparator" + Write-Host "Get Latest Tag : git tag -l $prefix*" + $latestTags = git tag -l "$prefix*" - $newVersion.PrereleaseLabel = $newVersion.DefaultPrereleaseLabel - $newVersion.PrereleaseNumber = $BuildID - $newVersion.IsPrerelease = $True + $semVars = @() - Write-Host "Version to publish [ $($newVersion.ToString()) ]" + if ($latestTags -and ($latestTags.Length -gt 0)) { + foreach ($tag in $latestTags) { + $semVars += $tag.Substring($prefix.Length) + } - SetPackageVersion -PackageName $packageName ` - -Version $newVersion.ToString() ` - -ServiceDirectory $ServiceDirectory + $semVarsSorted = [AzureEngSemanticVersion]::SortVersionStrings($semVars) + Write-Host "Last Published Version $($semVarsSorted[0])" + $newVersion = [AzureEngSemanticVersion]::new($semVarsSorted[0]) + } + + $newVersion.PrereleaseLabel = $newVersion.DefaultPrereleaseLabel + $newVersion.PrereleaseNumber = $BuildID + $newVersion.IsPrerelease = $True + + Write-Host "Version to publish [ $($newVersion.ToString()) ]" + + SetPackageVersion -PackageName $packageName ` + -Version $newVersion.ToString() ` + -ServiceDirectory $ServiceDirectory + } } From a07fe73a3240454d82b0baad4671c30ce66ee79f Mon Sep 17 00:00:00 2001 From: Deyaa Date: Mon, 13 Oct 2025 09:16:18 -0700 Subject: [PATCH 12/73] [textanalytics] Fix test types (#36185) --- sdk/textanalytics/ai-text-analytics/test/utils/setup.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/textanalytics/ai-text-analytics/test/utils/setup.ts b/sdk/textanalytics/ai-text-analytics/test/utils/setup.ts index 75bcfb714440..0a04b98b501e 100644 --- a/sdk/textanalytics/ai-text-analytics/test/utils/setup.ts +++ b/sdk/textanalytics/ai-text-analytics/test/utils/setup.ts @@ -11,7 +11,8 @@ declare module "vitest" { type MyEnvVarKeys = { [K in (typeof EnvVarKeys)[keyof typeof EnvVarKeys]]: string; }; - export interface ProvidedContext extends MyEnvVarKeys { + export interface ProvidedContext + extends Omit { [EnvVarKeys.TEST_MODE]: string | undefined; [EnvVarKeys.DISABLE_LOCAL_AUTH]: boolean; } From ebb24d08850816786043c4bcb2628173bc10ed9b Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 13 Oct 2025 09:30:23 -0700 Subject: [PATCH 13/73] [EngSys] automatic pnpm update (#36195) This is an automatic PR generated weekly with changes from running the command pnpm update --- pnpm-lock.yaml | 3887 ++++++++++++++++++++++++------------------------ 1 file changed, 1953 insertions(+), 1934 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5b32da7f4695..8a13387e21a1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,7 +18,7 @@ catalogs: default: '@types/node': specifier: ^20.19.0 - version: 20.19.19 + version: 20.19.21 autorest: specifier: latest version: 3.7.2 @@ -74,7 +74,7 @@ catalogs: version: 13.5.6 playwright: specifier: ^1.50.1 - version: 1.55.1 + version: 1.56.0 vitest: specifier: ^3.2.3 version: 3.2.4 @@ -121,10 +121,10 @@ importers: version: 4.10.1 '@microsoft/api-extractor': specifier: ^7.52.4 - version: 7.53.0(@types/node@20.19.19) + version: 7.53.1(@types/node@20.19.21) '@microsoft/api-extractor-model': specifier: ^7.30.5 - version: 7.31.0(@types/node@20.19.19) + version: 7.31.1(@types/node@20.19.21) '@pnpm/catalogs.config': specifier: ^1000.0.2 version: 1000.0.5 @@ -157,7 +157,7 @@ importers: version: 11.3.2 memfs: specifier: ^4.14.1 - version: 4.48.1 + version: 4.49.0 minimist: specifier: ^1.2.8 version: 1.2.8 @@ -166,7 +166,7 @@ importers: version: 3.6.2 semver: specifier: ^7.6.0 - version: 7.7.2 + version: 7.7.3 strip-json-comments: specifier: ^5.0.1 version: 5.0.3 @@ -203,7 +203,7 @@ importers: version: 5.0.3 '@types/express-serve-static-core': specifier: ^5.0.6 - version: 5.0.7 + version: 5.1.0 '@types/fs-extra': specifier: ^11.0.4 version: 11.0.4 @@ -212,7 +212,7 @@ importers: version: 1.2.5 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/semver': specifier: ^7.7.0 version: 7.7.1 @@ -245,7 +245,7 @@ importers: version: 8.43.0(eslint@9.37.0)(typescript@5.8.3) vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) common/tools/eslint-plugin-azure-sdk: dependencies: @@ -300,7 +300,7 @@ importers: version: 6.11.3 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@typescript-eslint/eslint-plugin': specifier: ~8.43.0 version: 8.43.0(@typescript-eslint/parser@8.43.0(eslint@9.37.0)(typescript@5.8.3))(eslint@9.37.0)(typescript@5.8.3) @@ -315,7 +315,7 @@ importers: version: 8.43.0(eslint@9.37.0)(typescript@5.8.3) '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -324,7 +324,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 prettier: specifier: ^3.3.3 version: 3.6.2 @@ -336,7 +336,7 @@ importers: version: 3.0.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) common/tools/vite-plugin-browser-test-map: dependencies: @@ -349,7 +349,7 @@ importers: version: 9.37.0 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -395,7 +395,7 @@ importers: version: 9.37.0 '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: ^3.1.1 version: 3.2.4(vitest@3.2.4) @@ -404,7 +404,7 @@ importers: version: 9.37.0 pino-pretty: specifier: ^13.1.1 - version: 13.1.1 + version: 13.1.2 tsx: specifier: ^4.17.0 version: 4.20.6 @@ -416,7 +416,7 @@ importers: version: 8.43.0(eslint@9.37.0)(typescript@5.8.3) vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/advisor/arm-advisor: dependencies: @@ -453,10 +453,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -465,13 +465,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/agricultureplatform/arm-agricultureplatform: dependencies: @@ -520,10 +520,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -535,13 +535,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/agrifood/agrifood-farming-rest: dependencies: @@ -590,10 +590,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -605,13 +605,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/agrifood/arm-agrifood: dependencies: @@ -654,7 +654,7 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -663,7 +663,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/ai/ai-agents: dependencies: @@ -739,10 +739,10 @@ importers: version: 1.30.1(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -754,7 +754,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 prettier: specifier: ^3.2.5 version: 3.6.2 @@ -763,7 +763,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/ai/ai-inference-rest: dependencies: @@ -833,10 +833,10 @@ importers: version: 2.1.0(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -851,13 +851,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/ai/ai-projects: dependencies: @@ -942,10 +942,10 @@ importers: version: 2.1.0(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -957,13 +957,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/analysisservices/arm-analysisservices: dependencies: @@ -1006,7 +1006,7 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1015,7 +1015,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/anomalydetector/ai-anomaly-detector-rest: dependencies: @@ -1061,10 +1061,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1082,13 +1082,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/apicenter/arm-apicenter: dependencies: @@ -1131,7 +1131,7 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1143,7 +1143,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/apimanagement/api-management-custom-widgets-scaffolder: dependencies: @@ -1155,7 +1155,7 @@ importers: version: 11.0.3 inquirer: specifier: ^12.6.3 - version: 12.9.6(@types/node@20.19.19) + version: 12.9.6(@types/node@20.19.21) mustache: specifier: ^4.2.0 version: 4.2.0 @@ -1183,7 +1183,7 @@ importers: version: 4.2.6 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/yargs': specifier: ^17.0.32 version: 17.0.33 @@ -1210,7 +1210,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/apimanagement/api-management-custom-widgets-tools: dependencies: @@ -1238,10 +1238,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1250,13 +1250,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/apimanagement/arm-apimanagement: dependencies: @@ -1302,10 +1302,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1314,13 +1314,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appcomplianceautomation/arm-appcomplianceautomation: dependencies: @@ -1363,10 +1363,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1375,13 +1375,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appconfiguration/app-configuration: dependencies: @@ -1448,10 +1448,10 @@ importers: version: 2.2.0 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1466,13 +1466,13 @@ importers: version: 13.5.6 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appconfiguration/app-configuration-perf-tests: dependencies: @@ -1500,7 +1500,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -1552,10 +1552,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1564,13 +1564,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appcontainers/arm-appcontainers: dependencies: @@ -1616,10 +1616,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1628,13 +1628,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/applicationinsights/arm-appinsights: dependencies: @@ -1671,10 +1671,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1683,13 +1683,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appservice/arm-appservice: dependencies: @@ -1735,10 +1735,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1747,13 +1747,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appservice/arm-appservice-profile-2020-09-01-hybrid: dependencies: @@ -1796,10 +1796,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1808,13 +1808,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/appservice/arm-appservice-rest: dependencies: @@ -1860,10 +1860,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1878,13 +1878,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/astro/arm-astro: dependencies: @@ -1930,10 +1930,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -1942,13 +1942,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/attestation/arm-attestation: dependencies: @@ -1988,22 +1988,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/attestation/attestation: dependencies: @@ -2049,10 +2049,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2067,7 +2067,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 safe-buffer: specifier: ^5.2.1 version: 5.2.1 @@ -2076,7 +2076,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/authorization/arm-authorization: dependencies: @@ -2122,10 +2122,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2134,13 +2134,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/authorization/arm-authorization-profile-2020-09-01-hybrid: dependencies: @@ -2180,10 +2180,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2192,13 +2192,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/automanage/arm-automanage: dependencies: @@ -2238,10 +2238,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2250,13 +2250,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/automation/arm-automation: dependencies: @@ -2302,10 +2302,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2314,13 +2314,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/avs/arm-avs: dependencies: @@ -2369,10 +2369,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2384,13 +2384,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/azureadexternalidentities/arm-azureadexternalidentities: dependencies: @@ -2436,22 +2436,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/azurestack/arm-azurestack: dependencies: @@ -2491,22 +2491,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/azurestackhci/arm-azurestackhci: dependencies: @@ -2552,10 +2552,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2564,13 +2564,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/azurestackhcivm/arm-azurestackhcivm: dependencies: @@ -2619,10 +2619,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2634,13 +2634,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/baremetalinfrastructure/arm-baremetalinfrastructure: dependencies: @@ -2686,10 +2686,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2698,13 +2698,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/batch/arm-batch: dependencies: @@ -2753,10 +2753,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2765,13 +2765,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/batch/batch-rest: dependencies: @@ -2814,10 +2814,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2829,13 +2829,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/billing/arm-billing: dependencies: @@ -2881,10 +2881,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -2893,13 +2893,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/billingbenefits/arm-billingbenefits: dependencies: @@ -2945,22 +2945,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/botservice/arm-botservice: dependencies: @@ -3006,10 +3006,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3018,13 +3018,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/carbonoptimization/arm-carbonoptimization: dependencies: @@ -3067,10 +3067,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3082,13 +3082,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cdn/arm-cdn: dependencies: @@ -3134,10 +3134,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3146,13 +3146,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/changeanalysis/arm-changeanalysis: dependencies: @@ -3192,22 +3192,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/changes/arm-changes: dependencies: @@ -3244,22 +3244,22 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/chaos/arm-chaos: dependencies: @@ -3311,10 +3311,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3326,13 +3326,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cloudhealth/arm-cloudhealth: dependencies: @@ -3381,10 +3381,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3396,13 +3396,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cognitivelanguage/ai-language-conversations: dependencies: @@ -3457,10 +3457,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3472,13 +3472,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cognitivelanguage/ai-language-text: dependencies: @@ -3536,13 +3536,13 @@ importers: version: link:../../storage/storage-blob '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/unzipper': specifier: ~0.10.10 version: 0.10.11 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3557,7 +3557,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3566,7 +3566,7 @@ importers: version: 0.12.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cognitivelanguage/ai-language-text-perf-tests: dependencies: @@ -3594,7 +3594,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -3646,10 +3646,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3658,13 +3658,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/commerce/arm-commerce: dependencies: @@ -3704,22 +3704,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/commerce/arm-commerce-profile-2020-09-01-hybrid: dependencies: @@ -3759,10 +3759,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3771,13 +3771,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/arm-communication: dependencies: @@ -3823,10 +3823,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3835,13 +3835,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-alpha-ids: dependencies: @@ -3896,10 +3896,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -3911,13 +3911,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-call-automation: dependencies: @@ -3987,10 +3987,10 @@ importers: version: 7.9.5 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4005,13 +4005,13 @@ importers: version: 2.0.4 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-chat: dependencies: @@ -4072,10 +4072,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4087,13 +4087,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-common: dependencies: @@ -4142,10 +4142,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4160,13 +4160,13 @@ importers: version: 13.5.6 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-email: dependencies: @@ -4218,10 +4218,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4233,13 +4233,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-identity: dependencies: @@ -4303,10 +4303,10 @@ importers: version: 2.16.3 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4318,13 +4318,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-job-router-rest: dependencies: @@ -4370,10 +4370,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4388,13 +4388,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-messages-rest: dependencies: @@ -4452,10 +4452,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4470,13 +4470,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-phone-numbers: dependencies: @@ -4537,10 +4537,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4552,13 +4552,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-recipient-verification: dependencies: @@ -4616,10 +4616,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4631,13 +4631,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-rooms: dependencies: @@ -4692,10 +4692,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4707,13 +4707,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-short-codes: dependencies: @@ -4771,10 +4771,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4786,13 +4786,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-sms: dependencies: @@ -4847,10 +4847,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4862,13 +4862,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-tiering: dependencies: @@ -4926,10 +4926,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -4941,13 +4941,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/communication/communication-toll-free-verification: dependencies: @@ -5002,10 +5002,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5017,13 +5017,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/compute/arm-compute: dependencies: @@ -5072,10 +5072,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5084,13 +5084,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/compute/arm-compute-profile-2020-09-01-hybrid: dependencies: @@ -5136,10 +5136,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5148,13 +5148,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/compute/arm-compute-rest: dependencies: @@ -5203,10 +5203,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5221,13 +5221,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/compute/arm-computerecommender: dependencies: @@ -5258,7 +5258,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -5270,10 +5270,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -5285,13 +5285,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/computefleet/arm-computefleet: dependencies: @@ -5328,7 +5328,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -5340,10 +5340,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -5355,13 +5355,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/computeschedule/arm-computeschedule: dependencies: @@ -5410,10 +5410,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5425,13 +5425,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/confidentialledger/arm-confidentialledger: dependencies: @@ -5477,10 +5477,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5489,13 +5489,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/confidentialledger/confidential-ledger-rest: dependencies: @@ -5535,7 +5535,7 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5550,7 +5550,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/confluent/arm-confluent: dependencies: @@ -5596,10 +5596,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5608,13 +5608,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/connectedcache/arm-connectedcache: dependencies: @@ -5663,10 +5663,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5678,13 +5678,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/connectedvmware/arm-connectedvmware: dependencies: @@ -5730,10 +5730,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5742,13 +5742,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/consumption/arm-consumption: dependencies: @@ -5788,10 +5788,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5800,13 +5800,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerinstance/arm-containerinstance: dependencies: @@ -5852,10 +5852,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5864,13 +5864,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerregistry/arm-containerregistry: dependencies: @@ -5916,10 +5916,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -5928,13 +5928,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerregistry/container-registry: dependencies: @@ -5986,10 +5986,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6001,13 +6001,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerregistry/container-registry-perf-tests: dependencies: @@ -6032,7 +6032,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -6084,10 +6084,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6096,13 +6096,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerservice/arm-containerservice-rest: dependencies: @@ -6148,10 +6148,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6166,13 +6166,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerservice/arm-containerservicefleet: dependencies: @@ -6221,10 +6221,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6236,13 +6236,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/containerservice/arm-containerservicesafeguards: dependencies: @@ -6279,7 +6279,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -6291,10 +6291,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -6306,13 +6306,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/contentsafety/ai-content-safety-rest: dependencies: @@ -6358,10 +6358,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6376,7 +6376,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 rollup-plugin-copy: specifier: ^3.5.0 version: 3.5.0 @@ -6385,7 +6385,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/abort-controller: dependencies: @@ -6401,10 +6401,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6413,7 +6413,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6422,7 +6422,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-amqp: dependencies: @@ -6477,13 +6477,13 @@ importers: version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/ws': specifier: ^8.5.10 version: 8.18.1 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6495,7 +6495,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6504,7 +6504,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) ws: specifier: ^8.17.0 version: 8.18.3 @@ -6529,10 +6529,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6541,7 +6541,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6550,7 +6550,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-client: dependencies: @@ -6587,10 +6587,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6599,7 +6599,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6608,7 +6608,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-client-rest: dependencies: @@ -6639,10 +6639,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6651,7 +6651,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6660,7 +6660,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-http-compat: dependencies: @@ -6682,10 +6682,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6694,7 +6694,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6703,7 +6703,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-lro: dependencies: @@ -6734,10 +6734,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6746,7 +6746,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6755,7 +6755,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-paging: dependencies: @@ -6771,10 +6771,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6783,7 +6783,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6792,7 +6792,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-rest-pipeline: dependencies: @@ -6829,10 +6829,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6841,7 +6841,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6850,7 +6850,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-rest-pipeline-perf-tests: dependencies: @@ -6884,7 +6884,7 @@ importers: version: 5.0.3 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 concurrently: specifier: ^9.2.1 version: 9.2.1 @@ -6936,10 +6936,10 @@ importers: version: 5.0.3 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6954,7 +6954,7 @@ importers: version: 5.1.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6966,7 +6966,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-tracing: dependencies: @@ -6985,10 +6985,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -6997,7 +6997,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7006,7 +7006,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-util: dependencies: @@ -7031,10 +7031,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7043,7 +7043,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7052,7 +7052,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/core-xml: dependencies: @@ -7071,13 +7071,13 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/trusted-types': specifier: ^2.0.0 version: 2.0.7 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7086,7 +7086,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7095,7 +7095,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/logger: dependencies: @@ -7114,10 +7114,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7129,7 +7129,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7138,7 +7138,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/core/ts-http-runtime: dependencies: @@ -7163,10 +7163,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7175,7 +7175,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7187,7 +7187,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cosmosdb/arm-cosmosdb: dependencies: @@ -7233,10 +7233,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7245,13 +7245,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cosmosdb/cosmos: dependencies: @@ -7306,7 +7306,7 @@ importers: version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/priorityqueuejs': specifier: ^1.0.1 version: 1.0.4 @@ -7315,7 +7315,7 @@ importers: version: 1.1.4 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7333,13 +7333,13 @@ importers: version: 13.5.6 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql: dependencies: @@ -7385,10 +7385,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7397,13 +7397,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/cost-management/arm-costmanagement: dependencies: @@ -7449,10 +7449,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7461,13 +7461,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/customer-insights/arm-customerinsights: dependencies: @@ -7513,22 +7513,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dashboard/arm-dashboard: dependencies: @@ -7577,10 +7577,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7592,13 +7592,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/databasewatcher/arm-databasewatcher: dependencies: @@ -7647,10 +7647,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7662,13 +7662,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/databoundaries/arm-databoundaries: dependencies: @@ -7705,10 +7705,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7717,13 +7717,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/databox/arm-databox: dependencies: @@ -7769,10 +7769,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7781,13 +7781,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/databoxedge/arm-databoxedge: dependencies: @@ -7833,22 +7833,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid: dependencies: @@ -7894,10 +7894,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7906,13 +7906,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/databricks/arm-databricks: dependencies: @@ -7958,10 +7958,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -7970,13 +7970,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/datacatalog/arm-datacatalog: dependencies: @@ -8019,22 +8019,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/datadog/arm-datadog: dependencies: @@ -8080,10 +8080,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8092,13 +8092,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/datafactory/arm-datafactory: dependencies: @@ -8144,10 +8144,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8156,13 +8156,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/datalake-analytics/arm-datalake-analytics: dependencies: @@ -8208,22 +8208,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/datamigration/arm-datamigration: dependencies: @@ -8269,10 +8269,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8281,13 +8281,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dataprotection/arm-dataprotection: dependencies: @@ -8336,10 +8336,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8351,13 +8351,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/defendereasm/arm-defendereasm: dependencies: @@ -8403,10 +8403,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8415,13 +8415,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dell/arm-dell-storage: dependencies: @@ -8470,10 +8470,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8485,13 +8485,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dependencymap/arm-dependencymap: dependencies: @@ -8540,10 +8540,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8555,13 +8555,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/deploymentmanager/arm-deploymentmanager: dependencies: @@ -8604,22 +8604,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/desktopvirtualization/arm-desktopvirtualization: dependencies: @@ -8659,10 +8659,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8671,13 +8671,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/devcenter/arm-devcenter: dependencies: @@ -8723,10 +8723,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8735,13 +8735,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/devcenter/developer-devcenter-rest: dependencies: @@ -8787,10 +8787,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8802,13 +8802,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/devhub/arm-devhub: dependencies: @@ -8848,10 +8848,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8860,13 +8860,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/deviceprovisioningservices/arm-deviceprovisioningservices: dependencies: @@ -8912,10 +8912,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8924,13 +8924,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/deviceregistry/arm-deviceregistry: dependencies: @@ -8979,10 +8979,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -8994,13 +8994,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/deviceupdate/arm-deviceupdate: dependencies: @@ -9046,10 +9046,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9058,13 +9058,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/deviceupdate/iot-device-update-rest: dependencies: @@ -9116,10 +9116,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9131,13 +9131,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/devopsinfrastructure/arm-devopsinfrastructure: dependencies: @@ -9186,10 +9186,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9201,13 +9201,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/devspaces/arm-devspaces: dependencies: @@ -9253,22 +9253,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/devtestlabs/arm-devtestlabs: dependencies: @@ -9314,22 +9314,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/digitaltwins/arm-digitaltwins: dependencies: @@ -9375,10 +9375,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9387,13 +9387,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/digitaltwins/digital-twins-core: dependencies: @@ -9448,10 +9448,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9463,13 +9463,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dns/arm-dns: dependencies: @@ -9515,10 +9515,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9527,13 +9527,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dns/arm-dns-profile-2020-09-01-hybrid: dependencies: @@ -9579,10 +9579,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9591,13 +9591,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dnsresolver/arm-dnsresolver: dependencies: @@ -9643,10 +9643,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9655,13 +9655,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/documentintelligence/ai-document-intelligence-rest: dependencies: @@ -9710,10 +9710,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9725,13 +9725,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/documenttranslator/ai-document-translator-rest: dependencies: @@ -9777,10 +9777,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9792,13 +9792,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/domainservices/arm-domainservices: dependencies: @@ -9844,22 +9844,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/durabletask/arm-durabletask: dependencies: @@ -9908,10 +9908,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9923,13 +9923,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/dynatrace/arm-dynatrace: dependencies: @@ -9975,10 +9975,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -9987,13 +9987,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/easm/defender-easm-rest: dependencies: @@ -10033,10 +10033,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10048,13 +10048,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/edgezones/arm-edgezones: dependencies: @@ -10097,10 +10097,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10112,13 +10112,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/education/arm-education: dependencies: @@ -10158,10 +10158,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10170,13 +10170,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/elastic/arm-elastic: dependencies: @@ -10222,10 +10222,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10234,13 +10234,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/elasticsans/arm-elasticsan: dependencies: @@ -10286,10 +10286,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10298,13 +10298,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/entra/functions-authentication-events: dependencies: @@ -10344,10 +10344,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10359,13 +10359,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventgrid/arm-eventgrid: dependencies: @@ -10411,10 +10411,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10423,13 +10423,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventgrid/eventgrid: dependencies: @@ -10478,10 +10478,10 @@ importers: version: 7.9.5 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10493,13 +10493,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventgrid/eventgrid-namespaces: dependencies: @@ -10551,10 +10551,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10566,13 +10566,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventgrid/eventgrid-perf-tests: dependencies: @@ -10597,7 +10597,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -10637,10 +10637,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10649,13 +10649,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventhub/arm-eventhub: dependencies: @@ -10704,10 +10704,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10716,13 +10716,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid: dependencies: @@ -10768,10 +10768,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10780,13 +10780,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventhub/event-hubs: dependencies: @@ -10862,7 +10862,7 @@ importers: version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/node-forge': specifier: ^1.3.11 version: 1.3.14 @@ -10871,7 +10871,7 @@ importers: version: 8.18.1 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -10904,13 +10904,13 @@ importers: version: 1.3.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) ws: specifier: ^8.2.0 version: 8.18.3 @@ -10944,7 +10944,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -11008,10 +11008,10 @@ importers: version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11035,7 +11035,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 process: specifier: ^0.11.10 version: 0.11.10 @@ -11047,7 +11047,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventhub/eventhubs-checkpointstore-table: dependencies: @@ -11096,10 +11096,10 @@ importers: version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11123,7 +11123,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 process: specifier: ^0.11.10 version: 0.11.10 @@ -11135,7 +11135,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/eventhub/mock-hub: dependencies: @@ -11157,7 +11157,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11169,13 +11169,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/extendedlocation/arm-extendedlocation: dependencies: @@ -11221,10 +11221,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11233,13 +11233,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/fabric/arm-fabric: dependencies: @@ -11288,10 +11288,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11303,7 +11303,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 prettier: specifier: ^3.2.5 version: 3.6.2 @@ -11312,7 +11312,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/face/ai-vision-face-rest: dependencies: @@ -11358,10 +11358,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11373,7 +11373,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 prettier: specifier: ^3.2.5 version: 3.6.2 @@ -11382,7 +11382,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/features/arm-features: dependencies: @@ -11422,22 +11422,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/fluidrelay/arm-fluidrelay: dependencies: @@ -11477,10 +11477,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11489,13 +11489,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/formrecognizer/ai-form-recognizer: dependencies: @@ -11556,10 +11556,10 @@ importers: version: 15.3.1(rollup@4.52.4) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11574,7 +11574,7 @@ importers: version: 0.30.19 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 prettier: specifier: ^3.3.3 version: 3.6.2 @@ -11586,7 +11586,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/formrecognizer/ai-form-recognizer-perf-tests: dependencies: @@ -11614,7 +11614,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -11666,10 +11666,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11678,13 +11678,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/graphservices/arm-graphservices: dependencies: @@ -11730,10 +11730,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11742,13 +11742,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/guestconfiguration/arm-guestconfiguration: dependencies: @@ -11788,10 +11788,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11800,13 +11800,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hanaonazure/arm-hanaonazure: dependencies: @@ -11852,22 +11852,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules: dependencies: @@ -11916,10 +11916,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11931,13 +11931,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hdinsight/arm-hdinsight: dependencies: @@ -11983,10 +11983,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -11995,13 +11995,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hdinsight/arm-hdinsightcontainers: dependencies: @@ -12047,10 +12047,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12059,13 +12059,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthbot/arm-healthbot: dependencies: @@ -12111,22 +12111,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthcareapis/arm-healthcareapis: dependencies: @@ -12172,10 +12172,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12184,13 +12184,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthdataaiservices/arm-healthdataaiservices: dependencies: @@ -12239,10 +12239,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12254,13 +12254,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthdataaiservices/health-deidentification-rest: dependencies: @@ -12309,10 +12309,10 @@ importers: version: 4.11.1 '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12324,13 +12324,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthinsights/health-insights-cancerprofiling-rest: dependencies: @@ -12376,10 +12376,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12394,13 +12394,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthinsights/health-insights-clinicalmatching-rest: dependencies: @@ -12446,10 +12446,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12464,13 +12464,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/healthinsights/health-insights-radiologyinsights-rest: dependencies: @@ -12516,10 +12516,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12534,13 +12534,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hybridcompute/arm-hybridcompute: dependencies: @@ -12586,10 +12586,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12598,13 +12598,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hybridconnectivity/arm-hybridconnectivity: dependencies: @@ -12653,10 +12653,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12668,13 +12668,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hybridcontainerservice/arm-hybridcontainerservice: dependencies: @@ -12720,10 +12720,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12732,13 +12732,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hybridkubernetes/arm-hybridkubernetes: dependencies: @@ -12784,10 +12784,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12796,13 +12796,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/hybridnetwork/arm-hybridnetwork: dependencies: @@ -12848,10 +12848,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12860,13 +12860,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/identity/identity: dependencies: @@ -12893,7 +12893,7 @@ importers: version: link:../../core/logger '@azure/msal-browser': specifier: ^4.2.0 - version: 4.24.1 + version: 4.25.0 '@azure/msal-node': specifier: ^3.5.0 version: 3.8.0 @@ -12927,10 +12927,10 @@ importers: version: 2.1.0 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -12951,13 +12951,13 @@ importers: version: 2.1.3 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/identity/identity-broker: dependencies: @@ -13006,7 +13006,7 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13018,7 +13018,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/identity/identity-cache-persistence: dependencies: @@ -13061,10 +13061,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13076,13 +13076,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/identity/identity-perf-tests: dependencies: @@ -13110,7 +13110,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -13153,10 +13153,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13168,13 +13168,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/imagebuilder/arm-imagebuilder: dependencies: @@ -13220,10 +13220,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13232,13 +13232,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/impactreporting/arm-impactreporting: dependencies: @@ -13287,10 +13287,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13302,13 +13302,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/informatica/arm-informaticadatamanagement: dependencies: @@ -13354,10 +13354,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13366,13 +13366,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/instrumentation/opentelemetry-instrumentation-azure-sdk: dependencies: @@ -13415,10 +13415,10 @@ importers: version: 2.1.0(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13430,13 +13430,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/iot/iot-modelsrepository: dependencies: @@ -13476,10 +13476,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13488,13 +13488,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/iotcentral/arm-iotcentral: dependencies: @@ -13540,22 +13540,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/iotfirmwaredefense/arm-iotfirmwaredefense: dependencies: @@ -13604,10 +13604,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13619,13 +13619,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/iothub/arm-iothub: dependencies: @@ -13671,10 +13671,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13683,13 +13683,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/iothub/arm-iothub-profile-2020-09-01-hybrid: dependencies: @@ -13735,10 +13735,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13747,13 +13747,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/iotoperations/arm-iotoperations: dependencies: @@ -13802,10 +13802,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13817,13 +13817,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/arm-keyvault: dependencies: @@ -13869,10 +13869,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13881,13 +13881,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid: dependencies: @@ -13933,10 +13933,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -13945,13 +13945,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/keyvault-admin: dependencies: @@ -14012,10 +14012,10 @@ importers: version: link:../keyvault-keys '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14027,13 +14027,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/keyvault-certificates: dependencies: @@ -14097,10 +14097,10 @@ importers: version: link:../keyvault-secrets '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14112,13 +14112,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/keyvault-certificates-perf-tests: dependencies: @@ -14146,7 +14146,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -14192,10 +14192,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14204,13 +14204,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/keyvault-keys: dependencies: @@ -14271,10 +14271,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14286,13 +14286,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/keyvault-keys-perf-tests: dependencies: @@ -14320,7 +14320,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -14387,7 +14387,7 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14399,13 +14399,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/keyvault/keyvault-secrets-perf-tests: dependencies: @@ -14433,7 +14433,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -14485,10 +14485,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14497,13 +14497,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions: dependencies: @@ -14549,10 +14549,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14561,13 +14561,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes: dependencies: @@ -14607,10 +14607,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14619,13 +14619,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations: dependencies: @@ -14671,10 +14671,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14683,13 +14683,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes: dependencies: @@ -14735,10 +14735,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14747,13 +14747,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/kubernetesruntime/arm-containerorchestratorruntime: dependencies: @@ -14802,10 +14802,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14817,13 +14817,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/kusto/arm-kusto: dependencies: @@ -14869,10 +14869,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14881,13 +14881,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/labservices/arm-labservices: dependencies: @@ -14933,10 +14933,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -14945,13 +14945,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute: dependencies: @@ -15000,10 +15000,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15015,13 +15015,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/largeinstance/arm-largeinstance: dependencies: @@ -15067,10 +15067,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15079,13 +15079,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/liftrarize/arm-arizeaiobservabilityeval: dependencies: @@ -15134,10 +15134,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15149,13 +15149,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/liftrqumulo/arm-qumulo: dependencies: @@ -15201,10 +15201,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15213,13 +15213,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/liftrweightsandbiases/arm-weightsandbiases: dependencies: @@ -15268,10 +15268,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15283,13 +15283,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/links/arm-links: dependencies: @@ -15332,22 +15332,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/loadtesting/arm-loadtesting: dependencies: @@ -15393,10 +15393,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15405,13 +15405,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/loadtesting/create-playwright: dependencies: @@ -15436,7 +15436,7 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/prompts': specifier: ^2.4.9 version: 2.4.9 @@ -15451,7 +15451,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/loadtesting/load-testing-rest: dependencies: @@ -15503,10 +15503,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15521,13 +15521,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/loadtesting/playwright: dependencies: @@ -15558,16 +15558,16 @@ importers: version: 4.11.1 '@playwright/test': specifier: ^1.51.1 - version: 1.55.1 + version: 1.56.0 '@types/debug': specifier: ^4.1.12 version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15576,13 +15576,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/locks/arm-locks: dependencies: @@ -15622,22 +15622,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/locks/arm-locks-profile-2020-09-01-hybrid: dependencies: @@ -15677,10 +15677,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15689,13 +15689,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/logic/arm-logic: dependencies: @@ -15741,10 +15741,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15753,13 +15753,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/machinelearning/arm-commitmentplans: dependencies: @@ -15799,22 +15799,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/machinelearning/arm-machinelearning: dependencies: @@ -15860,10 +15860,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -15872,13 +15872,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/machinelearning/arm-webservices: dependencies: @@ -15924,22 +15924,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/machinelearning/arm-workspaces: dependencies: @@ -15979,22 +15979,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/machinelearningcompute/arm-machinelearningcompute: dependencies: @@ -16040,22 +16040,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/machinelearningexperimentation/arm-machinelearningexperimentation: dependencies: @@ -16095,10 +16095,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16107,13 +16107,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maintenance/arm-maintenance: dependencies: @@ -16153,10 +16153,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16165,13 +16165,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/managedapplications/arm-managedapplications: dependencies: @@ -16217,10 +16217,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16229,13 +16229,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/managednetworkfabric/arm-managednetworkfabric: dependencies: @@ -16281,10 +16281,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16293,13 +16293,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/managementgroups/arm-managementgroups: dependencies: @@ -16345,22 +16345,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/managementpartner/arm-managementpartner: dependencies: @@ -16400,10 +16400,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16412,13 +16412,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/arm-maps: dependencies: @@ -16458,10 +16458,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16470,13 +16470,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/maps-common: dependencies: @@ -16513,10 +16513,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16525,13 +16525,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/maps-geolocation-rest: dependencies: @@ -16577,10 +16577,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16595,13 +16595,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/maps-render-rest: dependencies: @@ -16647,10 +16647,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16665,13 +16665,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/maps-route-rest: dependencies: @@ -16720,10 +16720,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16738,13 +16738,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/maps-search-rest: dependencies: @@ -16793,10 +16793,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16811,13 +16811,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/maps/maps-timezone-rest: dependencies: @@ -16866,10 +16866,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -16884,13 +16884,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mariadb/arm-mariadb: dependencies: @@ -16936,22 +16936,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/marketplaceordering/arm-marketplaceordering: dependencies: @@ -16991,10 +16991,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17003,13 +17003,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/metricsadvisor/ai-metrics-advisor: dependencies: @@ -17061,10 +17061,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17076,13 +17076,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/metricsadvisor/ai-metrics-advisor-perf-tests: dependencies: @@ -17107,7 +17107,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -17153,10 +17153,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17165,13 +17165,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/migrate/arm-migrationassessment: dependencies: @@ -17217,10 +17217,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17229,13 +17229,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/migrationdiscovery/arm-migrationdiscoverysap: dependencies: @@ -17281,10 +17281,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17293,13 +17293,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mobilenetwork/arm-mobilenetwork: dependencies: @@ -17345,10 +17345,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17357,13 +17357,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mongocluster/arm-mongocluster: dependencies: @@ -17400,7 +17400,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -17412,10 +17412,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -17427,13 +17427,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mongodbatlas/arm-mongodbatlas: dependencies: @@ -17482,10 +17482,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17497,13 +17497,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/arm-monitor: dependencies: @@ -17561,10 +17561,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17573,13 +17573,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/arm-monitor-profile-2020-09-01-hybrid: dependencies: @@ -17619,10 +17619,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17631,13 +17631,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/monitor-ingestion: dependencies: @@ -17695,13 +17695,13 @@ importers: version: link:../monitor-query-logs '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/pako': specifier: ^2.0.0 version: 2.0.4 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17713,13 +17713,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/monitor-ingestion-perf-tests: dependencies: @@ -17747,7 +17747,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -17865,7 +17865,7 @@ importers: version: 0.204.0(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17880,7 +17880,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/monitor-opentelemetry-exporter: dependencies: @@ -17947,10 +17947,10 @@ importers: version: 2.1.0(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -17965,13 +17965,13 @@ importers: version: 13.5.6 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/monitor-opentelemetry-perf-tests: dependencies: @@ -18005,7 +18005,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -18078,10 +18078,10 @@ importers: version: 1.30.1(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18093,13 +18093,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/monitor/monitor-query-metrics: dependencies: @@ -18157,10 +18157,10 @@ importers: version: 1.30.1(@opentelemetry/api@1.9.0) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18172,13 +18172,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/msi/arm-msi: dependencies: @@ -18218,10 +18218,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18230,13 +18230,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mysql/arm-mysql: dependencies: @@ -18282,22 +18282,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mysql/arm-mysql-flexible: dependencies: @@ -18343,10 +18343,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18355,13 +18355,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/neonpostgres/arm-neonpostgres: dependencies: @@ -18410,10 +18410,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18425,13 +18425,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/netapp/arm-netapp: dependencies: @@ -18477,10 +18477,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18489,13 +18489,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/network/arm-network: dependencies: @@ -18541,10 +18541,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18553,13 +18553,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/network/arm-network-profile-2020-09-01-hybrid: dependencies: @@ -18605,10 +18605,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18617,13 +18617,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/network/arm-network-rest: dependencies: @@ -18669,10 +18669,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18687,13 +18687,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/networkcloud/arm-networkcloud: dependencies: @@ -18739,10 +18739,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18751,13 +18751,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/networkfunction/arm-networkfunction: dependencies: @@ -18803,22 +18803,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/newrelicobservability/arm-newrelicobservability: dependencies: @@ -18864,10 +18864,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18876,13 +18876,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/nginx/arm-nginx: dependencies: @@ -18928,10 +18928,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -18940,13 +18940,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/notificationhubs/arm-notificationhubs: dependencies: @@ -18995,10 +18995,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19007,13 +19007,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/notificationhubs/notification-hubs: dependencies: @@ -19062,10 +19062,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19077,13 +19077,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/oep/arm-oep: dependencies: @@ -19129,22 +19129,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/onlineexperimentation/arm-onlineexperimentation: dependencies: @@ -19193,10 +19193,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19208,13 +19208,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/onlineexperimentation/onlineexperimentation-rest: dependencies: @@ -19251,10 +19251,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19266,13 +19266,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/openai/openai: dependencies: @@ -19315,13 +19315,13 @@ importers: version: link:../../core/logger '@azure/search-documents': specifier: ^12.1.0 - version: 12.1.0 + version: 12.2.0 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19336,13 +19336,13 @@ importers: version: 5.23.2(ws@8.18.3)(zod@3.25.76) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) zod: specifier: ^3.24.2 version: 3.25.76 @@ -19391,10 +19391,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19403,13 +19403,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/operationsmanagement/arm-operations: dependencies: @@ -19455,22 +19455,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/oracledatabase/arm-oracledatabase: dependencies: @@ -19519,10 +19519,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19534,13 +19534,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/orbital/arm-orbital: dependencies: @@ -19586,10 +19586,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19598,13 +19598,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/paloaltonetworksngfw/arm-paloaltonetworksngfw: dependencies: @@ -19650,10 +19650,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19662,13 +19662,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/peering/arm-peering: dependencies: @@ -19708,22 +19708,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/pineconevectordb/arm-pineconevectordb: dependencies: @@ -19772,10 +19772,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19787,13 +19787,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/planetarycomputer/arm-planetarycomputer: dependencies: @@ -19842,10 +19842,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19857,13 +19857,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/playwright/arm-playwright: dependencies: @@ -19912,10 +19912,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19927,13 +19927,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/playwrighttesting/arm-playwrighttesting: dependencies: @@ -19982,10 +19982,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -19997,13 +19997,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/playwrighttesting/create-microsoft-playwright-testing: dependencies: @@ -20028,7 +20028,7 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/prompts': specifier: ^2.4.9 version: 2.4.9 @@ -20043,7 +20043,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/playwrighttesting/microsoft-playwright-testing: dependencies: @@ -20074,16 +20074,16 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@playwright/test': specifier: ^1.51.1 - version: 1.55.1 + version: 1.56.0 '@types/debug': specifier: ^4.1.12 version: 4.1.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20092,13 +20092,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/policy/arm-policy: dependencies: @@ -20141,10 +20141,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20153,13 +20153,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/policy/arm-policy-profile-2020-09-01-hybrid: dependencies: @@ -20199,10 +20199,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20211,13 +20211,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/policyinsights/arm-policyinsights: dependencies: @@ -20263,10 +20263,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20275,13 +20275,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/portal/arm-portal: dependencies: @@ -20321,10 +20321,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20333,13 +20333,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/portalservices/arm-portalservicescopilot: dependencies: @@ -20382,10 +20382,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20397,13 +20397,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/postgresql/arm-postgresql: dependencies: @@ -20449,22 +20449,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/postgresql/arm-postgresql-flexible: dependencies: @@ -20510,10 +20510,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20522,13 +20522,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/powerbidedicated/arm-powerbidedicated: dependencies: @@ -20574,10 +20574,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20586,13 +20586,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/powerbiembedded/arm-powerbiembedded: dependencies: @@ -20638,22 +20638,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/privatedns/arm-privatedns: dependencies: @@ -20699,10 +20699,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20711,13 +20711,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/programmableconnectivity/arm-programmableconnectivity: dependencies: @@ -20766,10 +20766,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20781,13 +20781,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purestorageblock/arm-purestorageblock: dependencies: @@ -20836,10 +20836,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20851,13 +20851,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purview/arm-purview: dependencies: @@ -20903,22 +20903,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purview/purview-administration-rest: dependencies: @@ -20958,10 +20958,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -20973,13 +20973,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purview/purview-datamap-rest: dependencies: @@ -21019,10 +21019,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21037,13 +21037,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purview/purview-scanning-rest: dependencies: @@ -21089,10 +21089,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21104,13 +21104,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purview/purview-sharing-rest: dependencies: @@ -21156,10 +21156,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21174,13 +21174,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/purview/purview-workflow-rest: dependencies: @@ -21220,10 +21220,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21238,13 +21238,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/quantum/arm-quantum: dependencies: @@ -21290,10 +21290,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21302,13 +21302,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/quantum/quantum-jobs: dependencies: @@ -21360,10 +21360,10 @@ importers: version: link:../../storage/storage-blob '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21378,13 +21378,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/quota/arm-quota: dependencies: @@ -21430,10 +21430,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21442,13 +21442,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/recoveryservices/arm-recoveryservices: dependencies: @@ -21494,10 +21494,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21506,13 +21506,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/recoveryservicesbackup/arm-recoveryservicesbackup: dependencies: @@ -21561,10 +21561,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21573,13 +21573,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/recoveryservicesdatareplication/arm-recoveryservicesdatareplication: dependencies: @@ -21628,10 +21628,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21643,13 +21643,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/recoveryservicessiterecovery/arm-recoveryservices-siterecovery: dependencies: @@ -21695,10 +21695,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21707,13 +21707,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/redhatopenshift/arm-redhatopenshift: dependencies: @@ -21759,10 +21759,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21771,13 +21771,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/redis/arm-rediscache: dependencies: @@ -21826,10 +21826,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21838,13 +21838,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/redisenterprise/arm-redisenterprisecache: dependencies: @@ -21890,10 +21890,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21902,13 +21902,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/relay/arm-relay: dependencies: @@ -21954,10 +21954,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -21966,13 +21966,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/reservations/arm-reservations: dependencies: @@ -22018,10 +22018,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22030,13 +22030,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resourceconnector/arm-resourceconnector: dependencies: @@ -22082,10 +22082,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22094,13 +22094,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resourcegraph/arm-resourcegraph: dependencies: @@ -22140,22 +22140,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resourcehealth/arm-resourcehealth: dependencies: @@ -22195,10 +22195,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22207,13 +22207,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resourcemover/arm-resourcemover: dependencies: @@ -22259,10 +22259,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22271,13 +22271,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resources-subscriptions/arm-resources-subscriptions: dependencies: @@ -22317,10 +22317,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22329,13 +22329,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resources/arm-resources: dependencies: @@ -22381,10 +22381,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22393,13 +22393,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resources/arm-resources-profile-2020-09-01-hybrid: dependencies: @@ -22445,10 +22445,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22457,13 +22457,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resources/arm-resourcesbicep: dependencies: @@ -22506,10 +22506,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22521,13 +22521,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resources/arm-resourcesdeployments: dependencies: @@ -22573,10 +22573,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22585,13 +22585,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/resourcesdeploymentstacks/arm-resourcesdeploymentstacks: dependencies: @@ -22637,10 +22637,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22649,13 +22649,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/schemaregistry/schema-registry: dependencies: @@ -22701,10 +22701,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22716,13 +22716,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/schemaregistry/schema-registry-avro: dependencies: @@ -22777,10 +22777,10 @@ importers: version: 5.0.5(rollup@4.52.4) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22795,7 +22795,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 process: specifier: ^0.11.10 version: 0.11.10 @@ -22807,7 +22807,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/schemaregistry/schema-registry-avro-perf-tests: dependencies: @@ -22838,7 +22838,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -22893,10 +22893,10 @@ importers: version: 5.0.5(rollup@4.52.4) '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22914,13 +22914,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/scvmm/arm-scvmm: dependencies: @@ -22966,10 +22966,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -22978,13 +22978,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/search/arm-search: dependencies: @@ -23030,10 +23030,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23042,13 +23042,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/search/search-documents: dependencies: @@ -23106,10 +23106,10 @@ importers: version: 1.0.0-beta.12 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23121,7 +23121,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 type-plus: specifier: ^7.6.2 version: 7.6.2 @@ -23130,7 +23130,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/search/search-documents-perf-tests: dependencies: @@ -23158,7 +23158,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -23210,10 +23210,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23222,13 +23222,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/securitydevops/arm-securitydevops: dependencies: @@ -23274,10 +23274,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23286,13 +23286,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/securityinsight/arm-securityinsight: dependencies: @@ -23338,10 +23338,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23350,13 +23350,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/selfhelp/arm-selfhelp: dependencies: @@ -23402,10 +23402,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23414,13 +23414,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/serialconsole/arm-serialconsole: dependencies: @@ -23457,22 +23457,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/service-map/arm-servicemap: dependencies: @@ -23512,10 +23512,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23524,13 +23524,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicebus/arm-servicebus: dependencies: @@ -23576,10 +23576,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23588,13 +23588,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicebus/service-bus: dependencies: @@ -23691,13 +23691,13 @@ importers: version: 2.0.2 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/ws': specifier: ^8.18.1 version: 8.18.1 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23727,13 +23727,13 @@ importers: version: 7.0.6 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) ws: specifier: ^8.0.0 version: 8.18.3 @@ -23764,7 +23764,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -23816,10 +23816,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23828,13 +23828,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicefabric/arm-servicefabric-rest: dependencies: @@ -23883,10 +23883,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23901,13 +23901,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicefabricmanagedclusters/arm-servicefabricmanagedclusters: dependencies: @@ -23956,10 +23956,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -23971,13 +23971,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicefabricmesh/arm-servicefabricmesh: dependencies: @@ -24017,10 +24017,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24029,13 +24029,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicelinker/arm-servicelinker: dependencies: @@ -24081,10 +24081,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24093,13 +24093,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/servicenetworking/arm-servicenetworking: dependencies: @@ -24148,10 +24148,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24163,13 +24163,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/signalr/arm-signalr: dependencies: @@ -24215,10 +24215,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24227,13 +24227,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/sitemanager/arm-sitemanager: dependencies: @@ -24282,10 +24282,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24297,13 +24297,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/sphere/arm-sphere: dependencies: @@ -24349,10 +24349,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24361,13 +24361,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/springappdiscovery/arm-springappdiscovery: dependencies: @@ -24413,10 +24413,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24425,13 +24425,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/sql/arm-sql: dependencies: @@ -24477,10 +24477,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24489,13 +24489,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/sqlvirtualmachine/arm-sqlvirtualmachine: dependencies: @@ -24541,10 +24541,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24553,13 +24553,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/standbypool/arm-standbypool: dependencies: @@ -24608,10 +24608,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24623,13 +24623,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/arm-storage: dependencies: @@ -24663,7 +24663,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -24675,10 +24675,10 @@ importers: version: link:../../core/logger '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -24687,13 +24687,13 @@ importers: version: 16.6.1 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/arm-storage-profile-2020-09-01-hybrid: dependencies: @@ -24739,10 +24739,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24751,13 +24751,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-blob: dependencies: @@ -24830,10 +24830,10 @@ importers: version: link:../storage-file-share '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24845,13 +24845,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-blob-changefeed: dependencies: @@ -24912,10 +24912,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -24927,13 +24927,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-blob-perf-tests: dependencies: @@ -24961,7 +24961,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -25010,10 +25010,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25022,13 +25022,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-file-datalake: dependencies: @@ -25098,10 +25098,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25113,13 +25113,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-file-datalake-perf-tests: dependencies: @@ -25144,7 +25144,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -25220,10 +25220,10 @@ importers: version: 12.27.0 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25235,13 +25235,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-file-share-perf-tests: dependencies: @@ -25266,7 +25266,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -25300,10 +25300,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25315,13 +25315,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storage/storage-queue: dependencies: @@ -25382,10 +25382,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25397,13 +25397,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storageactions/arm-storageactions: dependencies: @@ -25455,10 +25455,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25470,13 +25470,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storagecache/arm-storagecache: dependencies: @@ -25522,10 +25522,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25534,13 +25534,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storagediscovery/arm-storagediscovery: dependencies: @@ -25577,7 +25577,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -25589,10 +25589,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -25604,13 +25604,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storageimportexport/arm-storageimportexport: dependencies: @@ -25650,10 +25650,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25662,13 +25662,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storagemover/arm-storagemover: dependencies: @@ -25705,7 +25705,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -25717,10 +25717,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -25732,13 +25732,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storagesync/arm-storagesync: dependencies: @@ -25784,22 +25784,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storsimple1200series/arm-storsimple1200series: dependencies: @@ -25845,22 +25845,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/storsimple8000series/arm-storsimple8000series: dependencies: @@ -25906,22 +25906,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/streamanalytics/arm-streamanalytics: dependencies: @@ -25967,10 +25967,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -25979,13 +25979,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/subscription/arm-subscriptions: dependencies: @@ -26031,22 +26031,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/subscription/arm-subscriptions-profile-2020-09-01-hybrid: dependencies: @@ -26086,10 +26086,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26098,13 +26098,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/support/arm-support: dependencies: @@ -26150,10 +26150,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26162,13 +26162,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/arm-synapse: dependencies: @@ -26214,10 +26214,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26226,13 +26226,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/synapse-access-control: dependencies: @@ -26275,10 +26275,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26290,13 +26290,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/synapse-access-control-rest: dependencies: @@ -26339,10 +26339,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26354,13 +26354,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/synapse-artifacts: dependencies: @@ -26409,10 +26409,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26424,13 +26424,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/synapse-managed-private-endpoints: dependencies: @@ -26473,10 +26473,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26488,13 +26488,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/synapse-monitoring: dependencies: @@ -26534,10 +26534,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26546,13 +26546,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/synapse/synapse-spark: dependencies: @@ -26592,10 +26592,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26607,13 +26607,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/tables/data-tables: dependencies: @@ -26668,10 +26668,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26683,13 +26683,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/tables/data-tables-perf-tests: dependencies: @@ -26714,7 +26714,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -26769,10 +26769,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26784,13 +26784,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/template/template-dpg: dependencies: @@ -26830,10 +26830,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -26845,13 +26845,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/template/template-perf-tests: dependencies: @@ -26882,7 +26882,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -26928,22 +26928,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/terraform/arm-terraform: dependencies: @@ -26992,10 +26992,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27007,13 +27007,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/test-utils/perf: dependencies: @@ -27053,7 +27053,7 @@ importers: version: 11.0.4 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -27090,10 +27090,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27108,7 +27108,7 @@ importers: version: 5.1.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 tslib: specifier: 'catalog:' version: 2.8.1 @@ -27117,7 +27117,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/test-utils/test-credential: dependencies: @@ -27148,10 +27148,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27160,13 +27160,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/test-utils/test-utils-vitest: dependencies: @@ -27190,7 +27190,7 @@ importers: version: 2.8.1 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) devDependencies: '@azure/dev-tool': specifier: workspace:^ @@ -27200,10 +27200,10 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27215,7 +27215,7 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27270,10 +27270,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27285,13 +27285,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/textanalytics/ai-text-analytics-perf-tests: dependencies: @@ -27319,7 +27319,7 @@ importers: version: link:../../../common/tools/eslint-plugin-azure-sdk '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 eslint: specifier: 'catalog:' version: 9.37.0 @@ -27371,10 +27371,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27383,13 +27383,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/trafficmanager/arm-trafficmanager: dependencies: @@ -27429,10 +27429,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27441,13 +27441,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/translation/ai-translation-document-rest: dependencies: @@ -27499,10 +27499,10 @@ importers: version: link:../../storage/storage-blob '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27517,13 +27517,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/translation/ai-translation-text-rest: dependencies: @@ -27563,10 +27563,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27581,13 +27581,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/trustedsigning/arm-trustedsigning: dependencies: @@ -27636,10 +27636,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27651,13 +27651,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/vision/ai-vision-image-analysis-rest: dependencies: @@ -27697,10 +27697,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27715,13 +27715,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/visualstudio/arm-visualstudio: dependencies: @@ -27764,22 +27764,22 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/vmwarecloudsimple/arm-vmwarecloudsimple: dependencies: @@ -27825,10 +27825,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27837,13 +27837,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/voiceservices/arm-voiceservices: dependencies: @@ -27889,10 +27889,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27901,13 +27901,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/web-pubsub/arm-webpubsub: dependencies: @@ -27953,10 +27953,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -27965,13 +27965,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/web-pubsub/web-pubsub: dependencies: @@ -28026,13 +28026,13 @@ importers: version: 9.0.10 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/ws': specifier: ^8.5.13 version: 8.18.1 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -28044,13 +28044,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) ws: specifier: ^8.18.0 version: 8.18.3 @@ -28096,13 +28096,13 @@ importers: version: link:../web-pubsub '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@types/ws': specifier: ^8.18.1 version: 8.18.1 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -28114,13 +28114,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/web-pubsub/web-pubsub-client-protobuf: dependencies: @@ -28157,10 +28157,10 @@ importers: version: link:../web-pubsub '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -28178,7 +28178,7 @@ importers: version: 3.0.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 protobufjs-cli: specifier: ^1.1.3 version: 1.1.3(protobufjs@7.5.4) @@ -28187,7 +28187,7 @@ importers: version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/web-pubsub/web-pubsub-express: dependencies: @@ -28212,16 +28212,16 @@ importers: version: 5.0.3 '@types/express-serve-static-core': specifier: ^5.0.7 - version: 5.0.7 + version: 5.1.0 '@types/jsonwebtoken': specifier: ^9.0.0 version: 9.0.10 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -28236,13 +28236,13 @@ importers: version: 5.1.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/workloadorchestration/arm-workloadorchestration: dependencies: @@ -28279,7 +28279,7 @@ importers: version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@azure/dev-tool': specifier: ^1.0.0 version: link:../../../common/tools/dev-tool @@ -28291,10 +28291,10 @@ importers: version: link:../../identity/identity '@types/node': specifier: ^20.0.0 - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) @@ -28306,13 +28306,13 @@ importers: version: 9.37.0 playwright: specifier: ^1.52.0 - version: 1.55.1 + version: 1.56.0 typescript: specifier: ~5.8.2 version: 5.8.3 vitest: specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/workloads/arm-workloads: dependencies: @@ -28358,10 +28358,10 @@ importers: version: link:../../core/logger '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -28370,13 +28370,13 @@ importers: version: 16.6.1 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/workloads/arm-workloadssapvirtualinstance: dependencies: @@ -28425,10 +28425,10 @@ importers: version: 4.11.1 '@types/node': specifier: 'catalog:' - version: 20.19.19 + version: 20.19.21 '@vitest/browser': specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) @@ -28440,13 +28440,13 @@ importers: version: 9.37.0 playwright: specifier: catalog:testing - version: 1.55.1 + version: 1.56.0 typescript: specifier: 'catalog:' version: 5.9.3 vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) packages: @@ -28636,8 +28636,8 @@ packages: resolution: {integrity: sha512-PB9GlnfojcQ4nf9WXdQvWeAk7gm8P74o+Z5IHz5YLK/W+3vrNrmVVVuFpGOvCPrLjag50UinaZsMBtPtxoiobg==} engines: {node: '>=14.0.0'} - '@azure/msal-browser@4.24.1': - resolution: {integrity: sha512-e4sp8ihJIyZQvN0ZM1MMuKlEiiLWUS9V9+kxsVAc6K8MtpXHui8VINmKUxXH0OOksLhFDpdq4sGW1w6uYp431A==} + '@azure/msal-browser@4.25.0': + resolution: {integrity: sha512-kbL+Ae7/UC62wSzxirZddYeVnHvvkvAnSZkBqL55X+jaSXTAXfngnNsDM5acEWU0Q/SAv3gEQfxO1igWOn87Pg==} engines: {node: '>=0.8.0'} '@azure/msal-common@14.16.1': @@ -28680,6 +28680,10 @@ packages: resolution: {integrity: sha512-IzD+hfqGqFtXymHXm4RzrZW2MsSH2M7RLmZsKaKVi7SUxbeYTUeX+ALk8gVzkM8ykb7EzlDLWCNErKfAa57rYQ==} engines: {node: '>=18.0.0'} + '@azure/search-documents@12.2.0': + resolution: {integrity: sha512-4+Qw+qaGqnkdUCq/vEFzk/bkROogTvdbPb1fmI8poxNfDDN1q2WHxBmhI7CYwesrBj1yXC4i5E0aISBxZqZi0g==} + engines: {node: '>=20.0.0'} + '@azure/service-bus@7.9.5': resolution: {integrity: sha512-R5Af+4jtZZII2snLomaddMyElFtTCBRZp2qERPlP8PuISLU87eFYFM7xWzxjNd0yeiyQUBkamx/ZhOC8eWhCHA==} engines: {node: '>=18.0.0'} @@ -29457,8 +29461,8 @@ packages: peerDependencies: tslib: '2' - '@jsonjoy.com/buffers@1.0.0': - resolution: {integrity: sha512-NDigYR3PHqCnQLXYyoLbnEdzMMvzeiCWo1KOut7Q0CoIqg9tUAPKJ1iq/2nFhc5kZtexzutNY0LFjdwWL3Dw3Q==} + '@jsonjoy.com/buffers@1.2.0': + resolution: {integrity: sha512-6RX+W5a+ZUY/c/7J5s5jK9UinLfJo5oWKh84fb4X0yK2q4WXEWUWZWuEMjvCb1YNUQhEAhUfr5scEGOH7jC4YQ==} engines: {node: '>=10.0'} peerDependencies: tslib: '2' @@ -29469,8 +29473,8 @@ packages: peerDependencies: tslib: '2' - '@jsonjoy.com/json-pack@1.14.0': - resolution: {integrity: sha512-LpWbYgVnKzphN5S6uss4M25jJ/9+m6q6UJoeN6zTkK4xAGhKsiBRPVeF7OYMWonn5repMQbE5vieRXcMUrKDKw==} + '@jsonjoy.com/json-pack@1.20.0': + resolution: {integrity: sha512-adcXFVorSQULtT4XDL0giRLr2EVGIcyWm6eQKZWTrRA4EEydGOY8QVQtL0PaITQpUyu+lOd/QOicw6vdy1v8QQ==} engines: {node: '>=10.0'} peerDependencies: tslib: '2' @@ -29490,11 +29494,11 @@ packages: '@loaderkit/resolve@1.0.4': resolution: {integrity: sha512-rJzYKVcV4dxJv+vW6jlvagF8zvGxHJ2+HTr1e2qOejfmGhAApgJHl8Aog4mMszxceTRiKTTbnpgmTO1bEZHV/A==} - '@microsoft/api-extractor-model@7.31.0': - resolution: {integrity: sha512-DqbB4G33bYTsS8hxdmyjpLXjQTjf/05Jsk82d4ldb5UaYi5kt7imJDcSJh5K+bgJXLBn63MAPAJTUNVXsniFCQ==} + '@microsoft/api-extractor-model@7.31.1': + resolution: {integrity: sha512-Dhnip5OFKbl85rq/ICHBFGhV4RA5UQSl8AC/P/zoGvs+CBudPkatt5kIhMGiYgVPnUWmfR6fcp38+1AFLYNtUw==} - '@microsoft/api-extractor@7.53.0': - resolution: {integrity: sha512-gbeBZm5ni4VIo7oUIq0u2UpIJsayBzxxsqE6dk1G/lrjef4OuuCJh09BakPH348JhD0ZIa3M+c0wGphLkYohTA==} + '@microsoft/api-extractor@7.53.1': + resolution: {integrity: sha512-bul5eTNxijLdDBqLye74u9494sRmf+9QULtec9Od0uHnifahGeNt8CC4/xCdn7mVyEBrXIQyQ5+sc4Uc0QfBSA==} hasBin: true '@microsoft/applicationinsights-web-snippet@1.2.2': @@ -29919,8 +29923,8 @@ packages: resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@playwright/test@1.55.1': - resolution: {integrity: sha512-IVAh/nOJaw6W9g+RJVlIQJ6gSiER+ae6mKQ5CX1bERzQgbC1VSeBlwdvczT7pxb0GWiyrxH4TGKbMfDb4Sq/ig==} + '@playwright/test@1.56.0': + resolution: {integrity: sha512-Tzh95Twig7hUwwNe381/K3PggZBZblKUe2wv25oIpzWLr6Z0m4KgV1ZVIjnR6GM9ANEqjZD7XsZEa6JL/7YEgg==} engines: {node: '>=18'} hasBin: true @@ -30137,8 +30141,8 @@ packages: cpu: [x64] os: [win32] - '@rushstack/node-core-library@5.16.0': - resolution: {integrity: sha512-bO2LN3olkALZawMqPtBgRGtSzd9l306imZYE0kCiCHNvMEvCB40GqbNFZBds0RcQxx/Am2oohPSJA15UP/MrSA==} + '@rushstack/node-core-library@5.17.0': + resolution: {integrity: sha512-24vt1GbHN6kyIglRMTVpyEiNRRRJK8uZHc1XoGAhmnTDKnrWet8OmOpImMswJIe6gM78eV8cMg1HXwuUHkSSgg==} peerDependencies: '@types/node': '*' peerDependenciesMeta: @@ -30156,16 +30160,16 @@ packages: '@rushstack/rig-package@0.6.0': resolution: {integrity: sha512-ZQmfzsLE2+Y91GF15c65L/slMRVhF6Hycq04D4TwtdGaUAbIXXg9c5pKA5KFU7M4QMaihoobp9JJYpYcaY3zOw==} - '@rushstack/terminal@0.19.0': - resolution: {integrity: sha512-Q0eHHuK3V4yLJ8mMuwal+YKhp1TcT0tW9Pr3xJDXyNGlpishp5M9qRTsLsk1d8GcIF15APV9vcKkFDtTvzFGHQ==} + '@rushstack/terminal@0.19.1': + resolution: {integrity: sha512-jsBuSad67IDVMO2yp0hDfs0OdE4z3mDIjIL2pclDT3aEJboeZXE85e1HjuD0F6JoW3XgHvDwoX+WOV+AVTDQeA==} peerDependencies: '@types/node': '*' peerDependenciesMeta: '@types/node': optional: true - '@rushstack/ts-command-line@5.1.0': - resolution: {integrity: sha512-ncUEFDUU/RMwCmQpwy8fcA3CenEV0ZsNg8m1IJYGVUVzC5WdfeeoDEWhMjNqjq9DYcE4VXTXwQwyAeGo3ugSLg==} + '@rushstack/ts-command-line@5.1.1': + resolution: {integrity: sha512-HPzFsUcr+wZ3oQI08Ec/E6cuiAVHKzrXZGHhwiwIGygAFiqN5QzX+ff30n70NU2WyE26CykgMwBZZSSyHCJrzA==} '@sindresorhus/is@4.6.0': resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} @@ -30231,8 +30235,8 @@ packages: '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} - '@types/express-serve-static-core@5.0.7': - resolution: {integrity: sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==} + '@types/express-serve-static-core@5.1.0': + resolution: {integrity: sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==} '@types/express@5.0.3': resolution: {integrity: sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==} @@ -30292,8 +30296,8 @@ packages: '@types/node-forge@1.3.14': resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==} - '@types/node@20.19.19': - resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==} + '@types/node@20.19.21': + resolution: {integrity: sha512-CsGG2P3I5y48RPMfprQGfy4JPRZ6csfC3ltBZSRItG3ngggmNY/qs2uZKp4p9VbrpqNNSMzUZNFZKzgOGnd/VA==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -30636,8 +30640,8 @@ packages: base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - baseline-browser-mapping@2.8.12: - resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==} + baseline-browser-mapping@2.8.16: + resolution: {integrity: sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw==} hasBin: true bl@4.1.0: @@ -30720,8 +30724,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001747: - resolution: {integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==} + caniuse-lite@1.0.30001750: + resolution: {integrity: sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==} catharsis@0.9.0: resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==} @@ -31083,8 +31087,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.230: - resolution: {integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==} + electron-to-chromium@1.5.234: + resolution: {integrity: sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -31455,8 +31459,8 @@ packages: resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} engines: {node: '>= 0.4'} - get-tsconfig@4.10.1: - resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + get-tsconfig@4.12.0: + resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==} git-hooks-list@4.1.1: resolution: {integrity: sha512-cmP497iLq54AZnv4YRAEMnEyQ1eIn4tGKbmswqwmFV4GBnAqE8NLtWxxdXa++AalfgL5EBH4IxTPyquEuGY/jA==} @@ -31627,8 +31631,8 @@ packages: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} - import-in-the-middle@1.14.4: - resolution: {integrity: sha512-eWjxh735SJLFJJDs5X82JQ2405OdJeAHDBnaoFCfdr5GVc7AWc9xU7KbrF+3Xd5F2ccP1aQFKtY+65X6EfKZ7A==} + import-in-the-middle@1.15.0: + resolution: {integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA==} import-lazy@4.0.0: resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} @@ -31817,8 +31821,8 @@ packages: js2xmlparser@4.0.2: resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==} - jsdoc@4.0.4: - resolution: {integrity: sha512-zeFezwyXeG4syyYHbvh1A967IAqq/67yXtXvuL5wnqCkFZe8I0vKfm+EO+YEvLguo6w9CDUbrAXVtJSHh2E8rw==} + jsdoc@4.0.5: + resolution: {integrity: sha512-P4C6MWP9yIlMiK8nwoZvxN84vb6MsnXcHuy7XzVOvQoCizWX5JFCBsWIIWKXBltpoRZXddUOVQmCTOZt9yDj9g==} engines: {node: '>=12.0.0'} hasBin: true @@ -32049,8 +32053,8 @@ packages: resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} engines: {node: '>= 0.8'} - memfs@4.48.1: - resolution: {integrity: sha512-vWO+1ROkhOALF1UnT9aNOOflq5oFDlqwTXaPg6duo07fBLxSH0+bcF0TY1lbA1zTNKyGgDxgaDdKx5MaewLX5A==} + memfs@4.49.0: + resolution: {integrity: sha512-L9uC9vGuc4xFybbdOpRLoOAOq1YEBBsocCs5NVW32DfU+CZWWIn3OVF+lB8Gp4ttBVSMazwrTrjv8ussX/e3VQ==} meow@10.1.5: resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} @@ -32205,8 +32209,8 @@ packages: resolution: {integrity: sha512-o2zOYiCpzRqSzPj0Zt/dQ/DqZeYoaQ7TUonc/xUPjCGl9WeHpNbxgVvOquXYAaJzI0M9BXV3HTzG0p8IUAbBTQ==} engines: {node: '>= 10.13'} - node-abi@3.77.0: - resolution: {integrity: sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ==} + node-abi@3.78.0: + resolution: {integrity: sha512-E2wEyrgX/CqvicaQYU3Ze1PFGjc4QYPGsjUrlYkqAE0WjHEZwgOsGMPMzkMse4LjJbDmaEuDX3CM036j5K2DSQ==} engines: {node: '>=10'} node-addon-api@4.3.0: @@ -32413,8 +32417,8 @@ packages: pino-abstract-transport@2.0.0: resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} - pino-pretty@13.1.1: - resolution: {integrity: sha512-TNNEOg0eA0u+/WuqH0MH0Xui7uqVk9D74ESOpjtebSQYbNWJk/dIxCXIxFsNfeN53JmtWqYHP2OrIZjT/CBEnA==} + pino-pretty@13.1.2: + resolution: {integrity: sha512-3cN0tCakkT4f3zo9RXDIhy6GTvtYD6bK4CRBLN9j3E/ePqN1tugAXD5rGVfoChW6s0hiek+eyYlLNqc/BG7vBQ==} hasBin: true pino-std-serializers@7.0.0: @@ -32424,13 +32428,13 @@ packages: resolution: {integrity: sha512-Szuj+ViDTjKPQYiKumGmEn3frdl+ZPSdosHyt9SnUevFosOkMY2b7ipxlEctNKPmMD/VibeBI+ZcZCJK+4DPuw==} hasBin: true - playwright-core@1.55.1: - resolution: {integrity: sha512-Z6Mh9mkwX+zxSlHqdr5AOcJnfp+xUWLCt9uKV18fhzA8eyxUd8NUWzAjxUh55RZKSYwDGX0cfaySdhZJGMoJ+w==} + playwright-core@1.56.0: + resolution: {integrity: sha512-1SXl7pMfemAMSDn5rkPeZljxOCYAmQnYLBTExuh6E8USHXGSX3dx6lYZN/xPpTz1vimXmPA9CDnILvmJaB8aSQ==} engines: {node: '>=18'} hasBin: true - playwright@1.55.1: - resolution: {integrity: sha512-cJW4Xd/G3v5ovXtJJ52MAOclqeac9S/aGGgRzLabuF8TnIb6xHvMzKIa6JmrRzUkeXJgfL1MhukP0NK6l39h3A==} + playwright@1.56.0: + resolution: {integrity: sha512-X5Q1b8lOdWIE4KAoHpW3SE8HvUB+ZZsUoN64ZhjnN8dOb1UpujxBtENGiZFE+9F/yhzJwYa+ca3u43FeLbboHA==} engines: {node: '>=18'} hasBin: true @@ -32738,8 +32742,8 @@ packages: engines: {node: '>=10'} hasBin: true - semver@7.7.2: - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} engines: {node: '>=10'} hasBin: true @@ -32824,8 +32828,8 @@ packages: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} - slow-redact@0.3.1: - resolution: {integrity: sha512-NvFvl1GuLZNW4U046Tfi8b26zXo8aBzgCAS2f7yVJR/fArN93mOqSA99cB9uITm92ajSz01bsu1K7SCVVjIMpQ==} + slow-redact@0.3.2: + resolution: {integrity: sha512-MseHyi2+E/hBRqdOi5COy6wZ7j7DxXRz9NkseavNYSvvWC06D8a5cidVZX3tcG5eCW3NIyVU4zT63hw0Q486jw==} smol-toml@1.4.2: resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==} @@ -33547,7 +33551,7 @@ snapshots: commander: 10.0.1 marked: 9.1.6 marked-terminal: 7.3.0(marked@9.1.6) - semver: 7.7.2 + semver: 7.7.3 '@arethetypeswrong/core@0.17.4': dependencies: @@ -33556,7 +33560,7 @@ snapshots: cjs-module-lexer: 1.4.3 fflate: 0.8.2 lru-cache: 10.4.3 - semver: 7.7.2 + semver: 7.7.3 typescript: 5.6.1-rc validate-npm-package-name: 5.0.1 @@ -33592,7 +33596,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure-tools/test-utils-vitest@1.0.0(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)': + '@azure-tools/test-utils-vitest@1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)': dependencies: '@azure-tools/test-recorder': 4.1.0 '@azure/abort-controller': 2.1.2 @@ -33600,7 +33604,7 @@ snapshots: '@azure/core-tracing': 1.3.1 '@opentelemetry/api': 1.9.0 tslib: 2.8.1 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - '@edge-runtime/vm' - '@types/debug' @@ -33975,7 +33979,7 @@ snapshots: '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 - '@azure/msal-browser': 4.24.1 + '@azure/msal-browser': 4.25.0 '@azure/msal-node': 3.8.0 open: 10.2.0 tslib: 2.8.1 @@ -33991,7 +33995,7 @@ snapshots: '@azure/core-tracing': 1.3.1 '@azure/core-util': 1.13.1 '@azure/logger': 1.3.0 - '@azure/msal-browser': 4.24.1 + '@azure/msal-browser': 4.25.0 '@azure/msal-node': 3.8.0 open: 10.2.0 tslib: 2.8.1 @@ -34062,7 +34066,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/msal-browser@4.24.1': + '@azure/msal-browser@4.25.0': dependencies: '@azure/msal-common': 15.13.0 @@ -34140,6 +34144,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@azure/search-documents@12.2.0': + dependencies: + '@azure/core-auth': 1.10.1 + '@azure/core-client': 1.10.1 + '@azure/core-http-compat': 2.3.1 + '@azure/core-paging': 1.6.2 + '@azure/core-rest-pipeline': 1.22.1 + '@azure/core-tracing': 1.3.1 + '@azure/core-util': 1.13.1 + '@azure/logger': 1.3.0 + events: 3.3.0 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + '@azure/service-bus@7.9.5': dependencies: '@azure/abort-controller': 1.1.0 @@ -34740,128 +34759,128 @@ snapshots: '@inquirer/ansi@1.0.0': {} - '@inquirer/checkbox@4.2.4(@types/node@20.19.19)': + '@inquirer/checkbox@4.2.4(@types/node@20.19.21)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/type': 3.0.8(@types/node@20.19.21) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/confirm@5.1.18(@types/node@20.19.19)': + '@inquirer/confirm@5.1.18(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/core@10.2.2(@types/node@20.19.19)': + '@inquirer/core@10.2.2(@types/node@20.19.21)': dependencies: '@inquirer/ansi': 1.0.0 '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/type': 3.0.8(@types/node@20.19.21) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/editor@4.2.20(@types/node@20.19.19)': + '@inquirer/editor@4.2.20(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/external-editor': 1.0.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/external-editor': 1.0.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/expand@4.0.20(@types/node@20.19.19)': + '@inquirer/expand@4.0.20(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/external-editor@1.0.2(@types/node@20.19.19)': + '@inquirer/external-editor@1.0.2(@types/node@20.19.21)': dependencies: chardet: 2.1.0 iconv-lite: 0.7.0 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@inquirer/figures@1.0.13': {} - '@inquirer/input@4.2.4(@types/node@20.19.19)': + '@inquirer/input@4.2.4(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/number@3.0.20(@types/node@20.19.19)': + '@inquirer/number@3.0.20(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/password@4.0.20(@types/node@20.19.19)': + '@inquirer/password@4.0.20(@types/node@20.19.21)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) optionalDependencies: - '@types/node': 20.19.19 - - '@inquirer/prompts@7.8.6(@types/node@20.19.19)': - dependencies: - '@inquirer/checkbox': 4.2.4(@types/node@20.19.19) - '@inquirer/confirm': 5.1.18(@types/node@20.19.19) - '@inquirer/editor': 4.2.20(@types/node@20.19.19) - '@inquirer/expand': 4.0.20(@types/node@20.19.19) - '@inquirer/input': 4.2.4(@types/node@20.19.19) - '@inquirer/number': 3.0.20(@types/node@20.19.19) - '@inquirer/password': 4.0.20(@types/node@20.19.19) - '@inquirer/rawlist': 4.1.8(@types/node@20.19.19) - '@inquirer/search': 3.1.3(@types/node@20.19.19) - '@inquirer/select': 4.3.4(@types/node@20.19.19) + '@types/node': 20.19.21 + + '@inquirer/prompts@7.8.6(@types/node@20.19.21)': + dependencies: + '@inquirer/checkbox': 4.2.4(@types/node@20.19.21) + '@inquirer/confirm': 5.1.18(@types/node@20.19.21) + '@inquirer/editor': 4.2.20(@types/node@20.19.21) + '@inquirer/expand': 4.0.20(@types/node@20.19.21) + '@inquirer/input': 4.2.4(@types/node@20.19.21) + '@inquirer/number': 3.0.20(@types/node@20.19.21) + '@inquirer/password': 4.0.20(@types/node@20.19.21) + '@inquirer/rawlist': 4.1.8(@types/node@20.19.21) + '@inquirer/search': 3.1.3(@types/node@20.19.21) + '@inquirer/select': 4.3.4(@types/node@20.19.21) optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/rawlist@4.1.8(@types/node@20.19.19)': + '@inquirer/rawlist@4.1.8(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/search@3.1.3(@types/node@20.19.19)': + '@inquirer/search@3.1.3(@types/node@20.19.21)': dependencies: - '@inquirer/core': 10.2.2(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/type': 3.0.8(@types/node@20.19.21) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/select@4.3.4(@types/node@20.19.19)': + '@inquirer/select@4.3.4(@types/node@20.19.21)': dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) '@inquirer/figures': 1.0.13 - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/type': 3.0.8(@types/node@20.19.21) yoctocolors-cjs: 2.1.3 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@inquirer/type@3.0.8(@types/node@20.19.19)': + '@inquirer/type@3.0.8(@types/node@20.19.21)': optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@isaacs/balanced-match@4.0.1': {} @@ -34919,7 +34938,7 @@ snapshots: dependencies: tslib: 2.8.1 - '@jsonjoy.com/buffers@1.0.0(tslib@2.8.1)': + '@jsonjoy.com/buffers@1.2.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 @@ -34927,10 +34946,10 @@ snapshots: dependencies: tslib: 2.8.1 - '@jsonjoy.com/json-pack@1.14.0(tslib@2.8.1)': + '@jsonjoy.com/json-pack@1.20.0(tslib@2.8.1)': dependencies: '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1) - '@jsonjoy.com/buffers': 1.0.0(tslib@2.8.1) + '@jsonjoy.com/buffers': 1.2.0(tslib@2.8.1) '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) '@jsonjoy.com/json-pointer': 1.0.2(tslib@2.8.1) '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) @@ -34946,7 +34965,7 @@ snapshots: '@jsonjoy.com/util@1.9.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/buffers': 1.0.0(tslib@2.8.1) + '@jsonjoy.com/buffers': 1.2.0(tslib@2.8.1) '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) tslib: 2.8.1 @@ -34954,23 +34973,23 @@ snapshots: dependencies: '@braidai/lang': 1.1.2 - '@microsoft/api-extractor-model@7.31.0(@types/node@20.19.19)': + '@microsoft/api-extractor-model@7.31.1(@types/node@20.19.21)': dependencies: '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.16.0(@types/node@20.19.19) + '@rushstack/node-core-library': 5.17.0(@types/node@20.19.21) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.53.0(@types/node@20.19.19)': + '@microsoft/api-extractor@7.53.1(@types/node@20.19.21)': dependencies: - '@microsoft/api-extractor-model': 7.31.0(@types/node@20.19.19) + '@microsoft/api-extractor-model': 7.31.1(@types/node@20.19.21) '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.16.0(@types/node@20.19.19) + '@rushstack/node-core-library': 5.17.0(@types/node@20.19.21) '@rushstack/rig-package': 0.6.0 - '@rushstack/terminal': 0.19.0(@types/node@20.19.19) - '@rushstack/ts-command-line': 5.1.0(@types/node@20.19.19) + '@rushstack/terminal': 0.19.1(@types/node@20.19.21) + '@rushstack/ts-command-line': 5.1.1(@types/node@20.19.21) lodash: 4.17.21 minimatch: 10.0.3 resolve: 1.22.10 @@ -35274,7 +35293,7 @@ snapshots: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.200.0 '@types/shimmer': 1.2.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 shimmer: 1.2.1 transitivePeerDependencies: @@ -35284,7 +35303,7 @@ snapshots: dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.202.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 transitivePeerDependencies: - supports-color @@ -35293,7 +35312,7 @@ snapshots: dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.204.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 transitivePeerDependencies: - supports-color @@ -35302,7 +35321,7 @@ snapshots: dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.205.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 transitivePeerDependencies: - supports-color @@ -35312,9 +35331,9 @@ snapshots: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.53.0 '@types/shimmer': 1.2.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 - semver: 7.7.2 + semver: 7.7.3 shimmer: 1.2.1 transitivePeerDependencies: - supports-color @@ -35324,9 +35343,9 @@ snapshots: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.57.0 '@types/shimmer': 1.2.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 - semver: 7.7.2 + semver: 7.7.3 shimmer: 1.2.1 transitivePeerDependencies: - supports-color @@ -35336,9 +35355,9 @@ snapshots: '@opentelemetry/api': 1.9.0 '@opentelemetry/api-logs': 0.57.2 '@types/shimmer': 1.2.0 - import-in-the-middle: 1.14.4 + import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2 - semver: 7.7.2 + semver: 7.7.3 shimmer: 1.2.1 transitivePeerDependencies: - supports-color @@ -35494,7 +35513,7 @@ snapshots: '@opentelemetry/propagator-b3': 1.30.1(@opentelemetry/api@1.9.0) '@opentelemetry/propagator-jaeger': 1.30.1(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.0) - semver: 7.7.2 + semver: 7.7.3 '@opentelemetry/sdk-trace-node@2.1.0(@opentelemetry/api@1.9.0)': dependencies: @@ -35528,9 +35547,9 @@ snapshots: '@pkgr/core@0.2.9': {} - '@playwright/test@1.55.1': + '@playwright/test@1.56.0': dependencies: - playwright: 1.55.1 + playwright: 1.56.0 '@pnpm/catalogs.config@1000.0.5': dependencies: @@ -35677,7 +35696,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.52.4': optional: true - '@rushstack/node-core-library@5.16.0(@types/node@20.19.19)': + '@rushstack/node-core-library@5.17.0(@types/node@20.19.21)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -35688,28 +35707,28 @@ snapshots: resolve: 1.22.10 semver: 7.5.4 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@rushstack/problem-matcher@0.1.1(@types/node@20.19.19)': + '@rushstack/problem-matcher@0.1.1(@types/node@20.19.21)': optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@rushstack/rig-package@0.6.0': dependencies: resolve: 1.22.10 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.19.0(@types/node@20.19.19)': + '@rushstack/terminal@0.19.1(@types/node@20.19.21)': dependencies: - '@rushstack/node-core-library': 5.16.0(@types/node@20.19.19) - '@rushstack/problem-matcher': 0.1.1(@types/node@20.19.19) + '@rushstack/node-core-library': 5.17.0(@types/node@20.19.21) + '@rushstack/problem-matcher': 0.1.1(@types/node@20.19.21) supports-color: 8.1.1 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@rushstack/ts-command-line@5.1.0(@types/node@20.19.19)': + '@rushstack/ts-command-line@5.1.1(@types/node@20.19.21)': dependencies: - '@rushstack/terminal': 0.19.0(@types/node@20.19.19) + '@rushstack/terminal': 0.19.1(@types/node@20.19.21) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 @@ -35751,11 +35770,11 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/bunyan@1.8.11': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/chai-as-promised@8.0.2': dependencies: @@ -35767,7 +35786,7 @@ snapshots: '@types/connect@3.4.38': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/cookie@0.6.0': optional: true @@ -35787,9 +35806,9 @@ snapshots: '@types/estree@1.0.8': {} - '@types/express-serve-static-core@5.0.7': + '@types/express-serve-static-core@5.1.0': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.0 @@ -35797,39 +35816,39 @@ snapshots: '@types/express@5.0.3': dependencies: '@types/body-parser': 1.19.6 - '@types/express-serve-static-core': 5.0.7 + '@types/express-serve-static-core': 5.1.0 '@types/serve-static': 1.15.9 '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/fs-extra@8.1.5': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/glob@7.2.0': dependencies: '@types/minimatch': 6.0.0 - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/http-errors@2.0.5': {} '@types/is-buffer@2.0.2': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/json-schema@7.0.15': {} '@types/jsonfile@6.1.4': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/jsonwebtoken@9.0.10': dependencies: '@types/ms': 2.1.0 - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/linkify-it@5.0.0': {} @@ -35854,13 +35873,13 @@ snapshots: '@types/mysql@2.15.27': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/node-forge@1.3.14': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 - '@types/node@20.19.19': + '@types/node@20.19.21': dependencies: undici-types: 6.21.0 @@ -35874,7 +35893,7 @@ snapshots: '@types/pg@8.15.5': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 pg-protocol: 1.10.3 pg-types: 2.2.0 @@ -35882,7 +35901,7 @@ snapshots: '@types/prompts@2.4.9': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 kleur: 3.0.3 '@types/qs@6.14.0': {} @@ -35898,16 +35917,16 @@ snapshots: '@types/send@0.17.5': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/send@1.2.0': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/serve-static@1.15.9': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/send': 0.17.5 '@types/shimmer@1.2.0': {} @@ -35924,11 +35943,11 @@ snapshots: '@types/unzipper@0.10.11': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/ws@8.18.1': dependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 '@types/yargs-parser@21.0.3': {} @@ -36021,7 +36040,7 @@ snapshots: eslint: 9.37.0 json-stable-stringify-without-jsonify: 1.0.1 lodash.merge: 4.6.2 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color - typescript @@ -36075,7 +36094,7 @@ snapshots: fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: @@ -36091,7 +36110,7 @@ snapshots: fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.2 + semver: 7.7.3 ts-api-utils: 2.1.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: @@ -36132,38 +36151,38 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitest/browser@3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)': + '@vitest/browser@3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)': dependencies: '@testing-library/dom': 10.4.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) - '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/utils': 3.2.4 magic-string: 0.30.19 sirv: 3.0.2 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) ws: 8.18.3 optionalDependencies: - playwright: 1.55.1 + playwright: 1.56.0 transitivePeerDependencies: - bufferutil - msw - utf-8-validate - vite - '@vitest/browser@3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)': + '@vitest/browser@3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4)': dependencies: '@testing-library/dom': 10.4.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) - '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/utils': 3.2.4 magic-string: 0.30.19 sirv: 3.0.2 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) ws: 8.18.3 optionalDependencies: - playwright: 1.55.1 + playwright: 1.56.0 transitivePeerDependencies: - bufferutil - msw @@ -36182,7 +36201,7 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -36194,23 +36213,23 @@ snapshots: chai: 5.3.3 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.19 optionalDependencies: - msw: 2.7.3(@types/node@20.19.19)(typescript@5.8.3) - vite: 7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + msw: 2.7.3(@types/node@20.19.21)(typescript@5.8.3) + vite: 7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - '@vitest/mocker@3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))': + '@vitest/mocker@3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.19 optionalDependencies: - msw: 2.7.3(@types/node@20.19.19)(typescript@5.9.3) - vite: 7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + msw: 2.7.3(@types/node@20.19.21)(typescript@5.9.3) + vite: 7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -36377,7 +36396,7 @@ snapshots: base64-js@1.5.1: {} - baseline-browser-mapping@2.8.12: {} + baseline-browser-mapping@2.8.16: {} bl@4.1.0: dependencies: @@ -36419,9 +36438,9 @@ snapshots: browserslist@4.26.3: dependencies: - baseline-browser-mapping: 2.8.12 - caniuse-lite: 1.0.30001747 - electron-to-chromium: 1.5.230 + baseline-browser-mapping: 2.8.16 + caniuse-lite: 1.0.30001750 + electron-to-chromium: 1.5.234 node-releases: 2.0.23 update-browserslist-db: 1.1.3(browserslist@4.26.3) @@ -36478,7 +36497,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001747: {} + caniuse-lite@1.0.30001750: {} catharsis@0.9.0: dependencies: @@ -36749,7 +36768,7 @@ snapshots: cspell-lib: 9.2.1 fast-json-stable-stringify: 2.1.0 flatted: 3.3.3 - semver: 7.7.2 + semver: 7.7.3 tinyglobby: 0.2.15 cssom@0.3.8: @@ -36863,7 +36882,7 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.230: {} + electron-to-chromium@1.5.234: {} emoji-regex@8.0.0: {} @@ -36968,7 +36987,7 @@ snapshots: eslint-compat-utils@0.5.1(eslint@9.37.0): dependencies: eslint: 9.37.0 - semver: 7.7.2 + semver: 7.7.3 eslint-config-prettier@10.1.8(eslint@9.37.0): dependencies: @@ -36987,11 +37006,11 @@ snapshots: enhanced-resolve: 5.18.3 eslint: 9.37.0 eslint-plugin-es-x: 7.8.0(eslint@9.37.0) - get-tsconfig: 4.10.1 + get-tsconfig: 4.12.0 globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 - semver: 7.7.2 + semver: 7.7.3 ts-declaration-location: 1.0.7(typescript@5.8.3) transitivePeerDependencies: - typescript @@ -37189,7 +37208,7 @@ snapshots: process-warning: 5.0.0 rfdc: 1.4.1 secure-json-parse: 4.1.0 - semver: 7.7.2 + semver: 7.7.3 toad-cache: 3.7.0 fastq@1.19.1: @@ -37317,7 +37336,7 @@ snapshots: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 - get-tsconfig@4.10.1: + get-tsconfig@4.12.0: dependencies: resolve-pkg-maps: 1.0.0 @@ -37512,7 +37531,7 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 - import-in-the-middle@1.14.4: + import-in-the-middle@1.15.0: dependencies: acorn: 8.15.0 acorn-import-attributes: 1.9.5(acorn@8.15.0) @@ -37538,17 +37557,17 @@ snapshots: ini@4.1.1: {} - inquirer@12.9.6(@types/node@20.19.19): + inquirer@12.9.6(@types/node@20.19.21): dependencies: '@inquirer/ansi': 1.0.0 - '@inquirer/core': 10.2.2(@types/node@20.19.19) - '@inquirer/prompts': 7.8.6(@types/node@20.19.19) - '@inquirer/type': 3.0.8(@types/node@20.19.19) + '@inquirer/core': 10.2.2(@types/node@20.19.21) + '@inquirer/prompts': 7.8.6(@types/node@20.19.21) + '@inquirer/type': 3.0.8(@types/node@20.19.21) mute-stream: 2.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 ipaddr.js@1.9.1: {} @@ -37638,7 +37657,7 @@ snapshots: '@babel/parser': 7.28.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 - semver: 7.7.2 + semver: 7.7.3 transitivePeerDependencies: - supports-color @@ -37687,7 +37706,7 @@ snapshots: dependencies: xmlcreate: 2.0.4 - jsdoc@4.0.4: + jsdoc@4.0.5: dependencies: '@babel/parser': 7.28.4 '@jsdoc/salty': 0.2.9 @@ -37783,7 +37802,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.7.2 + semver: 7.7.3 jsrsasign@11.1.0: {} @@ -37908,7 +37927,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 map-obj@1.0.1: {} @@ -37949,9 +37968,9 @@ snapshots: media-typer@1.1.0: {} - memfs@4.48.1: + memfs@4.49.0: dependencies: - '@jsonjoy.com/json-pack': 1.14.0(tslib@2.8.1) + '@jsonjoy.com/json-pack': 1.20.0(tslib@2.8.1) '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) glob-to-regex.js: 1.2.0(tslib@2.8.1) thingies: 2.5.0(tslib@2.8.1) @@ -38057,12 +38076,12 @@ snapshots: ms@2.1.3: {} - msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3): + msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3): dependencies: '@bundled-es-modules/cookie': 2.0.1 '@bundled-es-modules/statuses': 1.0.1 '@bundled-es-modules/tough-cookie': 0.1.6 - '@inquirer/confirm': 5.1.18(@types/node@20.19.19) + '@inquirer/confirm': 5.1.18(@types/node@20.19.21) '@mswjs/interceptors': 0.37.6 '@open-draft/deferred-promise': 2.2.0 '@open-draft/until': 2.1.0 @@ -38083,12 +38102,12 @@ snapshots: - '@types/node' optional: true - msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3): + msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3): dependencies: '@bundled-es-modules/cookie': 2.0.1 '@bundled-es-modules/statuses': 1.0.1 '@bundled-es-modules/tough-cookie': 0.1.6 - '@inquirer/confirm': 5.1.18(@types/node@20.19.19) + '@inquirer/confirm': 5.1.18(@types/node@20.19.21) '@mswjs/interceptors': 0.37.6 '@open-draft/deferred-promise': 2.2.0 '@open-draft/until': 2.1.0 @@ -38135,9 +38154,9 @@ snapshots: transitivePeerDependencies: - supports-color - node-abi@3.77.0: + node-abi@3.78.0: dependencies: - semver: 7.7.2 + semver: 7.7.3 node-addon-api@4.3.0: {} @@ -38163,7 +38182,7 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.16.1 - semver: 7.7.2 + semver: 7.7.3 validate-npm-package-license: 3.0.4 nwsapi@2.2.22: @@ -38322,7 +38341,7 @@ snapshots: dependencies: split2: 4.2.0 - pino-pretty@13.1.1: + pino-pretty@13.1.2: dependencies: colorette: 2.0.20 dateformat: 4.6.3 @@ -38350,15 +38369,15 @@ snapshots: quick-format-unescaped: 4.0.4 real-require: 0.2.0 safe-stable-stringify: 2.5.0 - slow-redact: 0.3.1 + slow-redact: 0.3.2 sonic-boom: 4.2.0 thread-stream: 3.1.0 - playwright-core@1.55.1: {} + playwright-core@1.56.0: {} - playwright@1.55.1: + playwright@1.56.0: dependencies: - playwright-core: 1.55.1 + playwright-core: 1.56.0 optionalDependencies: fsevents: 2.3.2 @@ -38390,7 +38409,7 @@ snapshots: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 2.0.0 - node-abi: 3.77.0 + node-abi: 3.78.0 pump: 3.0.3 rc: 1.2.8 simple-get: 4.0.1 @@ -38440,10 +38459,10 @@ snapshots: espree: 9.6.1 estraverse: 5.3.0 glob: 8.1.0 - jsdoc: 4.0.4 + jsdoc: 4.0.5 minimist: 1.2.8 protobufjs: 7.5.4 - semver: 7.7.2 + semver: 7.7.3 tmp: 0.2.5 uglify-js: 3.19.3 @@ -38459,7 +38478,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.19.19 + '@types/node': 20.19.21 long: 5.3.2 proxy-addr@2.0.7: @@ -38714,7 +38733,7 @@ snapshots: dependencies: lru-cache: 6.0.0 - semver@7.7.2: {} + semver@7.7.3: {} send@1.2.0: dependencies: @@ -38820,7 +38839,7 @@ snapshots: slash@5.1.0: {} - slow-redact@0.3.1: {} + slow-redact@0.3.2: {} smol-toml@1.4.2: {} @@ -38836,7 +38855,7 @@ snapshots: detect-newline: 4.0.1 git-hooks-list: 4.1.1 is-plain-obj: 4.1.0 - semver: 7.7.2 + semver: 7.7.3 sort-object-keys: 1.1.3 tinyglobby: 0.2.15 @@ -39114,7 +39133,7 @@ snapshots: tsx@4.20.6: dependencies: esbuild: 0.25.10 - get-tsconfig: 4.10.1 + get-tsconfig: 4.12.0 optionalDependencies: fsevents: 2.3.3 @@ -39281,13 +39300,13 @@ snapshots: vary@1.1.2: {} - vite-node@3.2.4(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): + vite-node@3.2.4(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): dependencies: cac: 6.7.14 debug: 4.4.3 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vite: 7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' - jiti @@ -39302,7 +39321,7 @@ snapshots: - tsx - yaml - vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): + vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): dependencies: esbuild: 0.25.10 fdir: 6.5.0(picomatch@4.0.3) @@ -39311,17 +39330,17 @@ snapshots: rollup: 4.52.4 tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 20.19.19 + '@types/node': 20.19.21 fsevents: 2.3.3 terser: 5.39.0 tsx: 4.20.6 yaml: 2.8.1 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -39339,13 +39358,13 @@ snapshots: tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vite: 7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 20.19.19 - '@vitest/browser': 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.8.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@types/node': 20.19.21 + '@vitest/browser': 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) jsdom: 16.7.0 transitivePeerDependencies: - jiti @@ -39361,11 +39380,11 @@ snapshots: - tsx - yaml - vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.19)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) + '@vitest/mocker': 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 @@ -39383,13 +39402,13 @@ snapshots: tinyglobby: 0.2.15 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - vite-node: 3.2.4(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vite: 7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 20.19.19 - '@vitest/browser': 3.2.4(msw@2.7.3(@types/node@20.19.19)(typescript@5.9.3))(playwright@1.55.1)(vite@7.1.9(@types/node@20.19.19)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@types/node': 20.19.21 + '@vitest/browser': 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) jsdom: 16.7.0 transitivePeerDependencies: - jiti From 19d7220496295ba9dbbaddd524b8d7feb0b38e88 Mon Sep 17 00:00:00 2001 From: Scott Addie <10702007+scottaddie@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:47:10 -0500 Subject: [PATCH 14/73] Update credential chains doc section links (#36194) The JS cred chains doc was updated last week so that it aligns with the other languages. This PR updates the section links. --- sdk/identity/identity/README.md | 2 +- sdk/identity/identity/samples/AzureIdentityExamples.md | 2 +- sdk/identity/identity/src/credentials/chainedTokenCredential.ts | 2 +- sdk/identity/identity/src/credentials/defaultAzureCredential.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sdk/identity/identity/README.md b/sdk/identity/identity/README.md index 8a166fddefe1..f6b549d6ba7b 100644 --- a/sdk/identity/identity/README.md +++ b/sdk/identity/identity/README.md @@ -112,7 +112,7 @@ See [Credential Classes](#credential-classes). ### DefaultAzureCredential -`DefaultAzureCredential` simplifies authentication while developing apps that deploy to Azure by combining credentials used in Azure hosting environments with credentials used in local development. For more information, see [DefaultAzureCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#use-defaultazurecredential-for-flexibility). +`DefaultAzureCredential` simplifies authentication while developing apps that deploy to Azure by combining credentials used in Azure hosting environments with credentials used in local development. For more information, see [DefaultAzureCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#defaultazurecredential-overview). #### Continuation policy diff --git a/sdk/identity/identity/samples/AzureIdentityExamples.md b/sdk/identity/identity/samples/AzureIdentityExamples.md index 092f4a2f92ae..8b0430336cd6 100644 --- a/sdk/identity/identity/samples/AzureIdentityExamples.md +++ b/sdk/identity/identity/samples/AzureIdentityExamples.md @@ -697,7 +697,7 @@ function withAzurePipelinesCredential() { ## Chaining credentials -The `ChainedTokenCredential` class provides the ability to link together multiple credential instances to be tried sequentially when authenticating. For more information, see [ChainedTokenCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#use-chainedtokencredential-for-granularity). +The `ChainedTokenCredential` class provides the ability to link together multiple credential instances to be tried sequentially when authenticating. For more information, see [ChainedTokenCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#chainedtokencredential-overview). ## Authenticating With Azure Stack using Azure Identity diff --git a/sdk/identity/identity/src/credentials/chainedTokenCredential.ts b/sdk/identity/identity/src/credentials/chainedTokenCredential.ts index a21a80d109d9..4c70185e69c1 100644 --- a/sdk/identity/identity/src/credentials/chainedTokenCredential.ts +++ b/sdk/identity/identity/src/credentials/chainedTokenCredential.ts @@ -14,7 +14,7 @@ export const logger = credentialLogger("ChainedTokenCredential"); /** * Enables multiple `TokenCredential` implementations to be tried in order until * one of the getToken methods returns an access token. For more information, see - * [ChainedTokenCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#use-chainedtokencredential-for-granularity). + * [ChainedTokenCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#chainedtokencredential-overview). */ export class ChainedTokenCredential implements TokenCredential { private _sources: TokenCredential[] = []; diff --git a/sdk/identity/identity/src/credentials/defaultAzureCredential.ts b/sdk/identity/identity/src/credentials/defaultAzureCredential.ts index 284e5af3be19..8d3dcff44843 100644 --- a/sdk/identity/identity/src/credentials/defaultAzureCredential.ts +++ b/sdk/identity/identity/src/credentials/defaultAzureCredential.ts @@ -54,7 +54,7 @@ export class UnavailableDefaultCredential implements TokenCredential { /** * Provides a default {@link ChainedTokenCredential} configuration that works for most * applications that use Azure SDK client libraries. For more information, see - * [DefaultAzureCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#use-defaultazurecredential-for-flexibility). + * [DefaultAzureCredential overview](https://aka.ms/azsdk/js/identity/credential-chains#defaultazurecredential-overview). * * The following credential types will be tried, in order: * From 39e33c1aebd25b71aeede02c7aa61bc65403617a Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Mon, 13 Oct 2025 10:41:06 -0700 Subject: [PATCH 15/73] [attestation] fix build error introduced ty TypeScript 5.9 upgrade (#36180) After the upgrades, we are getting the following error when building samples >@azure/attestation:build:samples: samples-dev/attestEnclaves.ts(402,18): error TS2352: Conversion of type 'ArrayBuffer' to type 'Buffer' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first. @azure/attestation:build:samples: Type 'ArrayBuffer' is missing the following properties from type 'Buffer': subarray, write, toJSON, equals, and 94 more. @azure/attestation:build:samples: samples-dev/attestEnclaves.ts(410,17): error TS2345: Argument of type 'Uint8Array' is not assignable to parameter of type 'ArrayBuffer'. @azure/attestation:build:samples: The types of 'slice(...)[Symbol.toStringTag]' are incompatible between these types. @azure/attestation:build:samples: Type '"Uint8Array"' is not assignable to type '"ArrayBuffer"'. This PR simplifies the sample to just use `TextDecoder`, which is available in global namespace in our supported NodeJS versions. --- .../attestation/samples-dev/attestEnclaves.ts | 19 ++------------- .../test/utils/base64url-browser.mts | 20 ---------------- .../attestation/test/utils/base64url.ts | 23 ++----------------- 3 files changed, 4 insertions(+), 58 deletions(-) diff --git a/sdk/attestation/attestation/samples-dev/attestEnclaves.ts b/sdk/attestation/attestation/samples-dev/attestEnclaves.ts index 4341a94c0c54..52545c9fbad9 100644 --- a/sdk/attestation/attestation/samples-dev/attestEnclaves.ts +++ b/sdk/attestation/attestation/samples-dev/attestEnclaves.ts @@ -383,23 +383,8 @@ issuancerules } } -declare let TextDecoder: - | undefined - | (new () => { decode(buffer: ArrayBuffer | ArrayBufferView): string }); - -// TextDecoder and TextEncoder are in the global namespace for Node version 11 and -// higher, but before that, they were in the "util" namespace. If we're running -// under node ("Buffer" is defined), then check to see if the global namespace version -// of the decoders are present, if not, import them from the util namespace. -const decoder = - typeof Buffer === "undefined" - ? // eslint-disable-next-line @typescript-eslint/no-require-imports - new (TextDecoder ?? require("util").TextDecoder)("ascii") - : undefined; - -const decode: (buffer: ArrayBuffer) => string = decoder - ? (buffer) => decoder.decode(buffer) - : (buffer) => (buffer as Buffer).toString("ascii"); +const decoder = new TextDecoder("ascii"); +const decode: (buffer: Uint8Array) => string = (buffer) => decoder.decode(buffer); /** * Converts a utf8 string into a byte array. diff --git a/sdk/attestation/attestation/test/utils/base64url-browser.mts b/sdk/attestation/attestation/test/utils/base64url-browser.mts index 0a1c59f05344..7971dbd90f06 100644 --- a/sdk/attestation/attestation/test/utils/base64url-browser.mts +++ b/sdk/attestation/attestation/test/utils/base64url-browser.mts @@ -3,26 +3,6 @@ /// -/** - * Encodes a string in base64 format. - * @param value - the string to encode - */ -export function encodeString(value: string): string { - return btoa(value); -} - -/** - * Encodes a byte array in base64 format. - * @param value - the Uint8Array to encode - */ -export function encodeByteArray(value: Uint8Array): string { - let str = ""; - for (let i = 0; i < value.length; i++) { - str += String.fromCharCode(value[i]); - } - return btoa(str); -} - /** * Decodes a base64 string into a byte array. * @param value - the base64 string to decode diff --git a/sdk/attestation/attestation/test/utils/base64url.ts b/sdk/attestation/attestation/test/utils/base64url.ts index 640e15162400..b57958f2a4de 100644 --- a/sdk/attestation/attestation/test/utils/base64url.ts +++ b/sdk/attestation/attestation/test/utils/base64url.ts @@ -1,30 +1,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -/** - * Encodes a string in base64 format. - * @param value - the string to encode - */ -export function encodeString(value: string): string { - return Buffer.from(value).toString("base64"); -} - -/** - * Encodes a byte array in base64 format. - * @param value - the Uint8Array to encode - */ -export function encodeByteArray(value: Uint8Array): string { - // Buffer.from accepts | -- the TypeScript definition is off here - // https://nodejs.org/api/buffer.html#buffer_class_method_buffer_from_arraybuffer_byteoffset_length - const bufferValue = value instanceof Buffer ? value : Buffer.from(value.buffer as ArrayBuffer); - return bufferValue.toString("base64"); -} - /** * Decodes a base64 string into a byte array. * @param value - the base64 string to decode */ -function decodeStringFromBase64(value: string): Uint8Array { +function decodeStringFromBase64(value: string): Uint8Array { return Buffer.from(value, "base64"); } @@ -42,7 +23,7 @@ function fixPadding(unpadded: string): string { * Decodes a base64url string into a byte array. * @param value - the base64url string to decode */ -export function decodeString(value: string): Uint8Array { +export function decodeString(value: string): Uint8Array { const encoded = value.replace(/-/g, "+").replace(/_/g, "/"); const paddedEncoded = fixPadding(encoded); return decodeStringFromBase64(paddedEncoded); From d5e946d21fefdff8c59df9039529ebb1c01e536c Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Mon, 13 Oct 2025 10:41:36 -0700 Subject: [PATCH 16/73] [dev-tool] report error when browser tests fail to build (#36183) Currently the result of `compileForEnvironment("browser", ...)` is ignored. This PR changes to return its result so that compilation errors are reported as failure. --------- Co-authored-by: Deyaa --- common/tools/dev-tool/src/commands/run/build-test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tools/dev-tool/src/commands/run/build-test.ts b/common/tools/dev-tool/src/commands/run/build-test.ts index 134ffb9708c5..d9c01dc3bef8 100644 --- a/common/tools/dev-tool/src/commands/run/build-test.ts +++ b/common/tools/dev-tool/src/commands/run/build-test.ts @@ -127,7 +127,7 @@ export default leafCommand(commandInfo, async (options) => { log.info(`Building for browser testing...`); const esmMap = overrides.has("esm") ? overrides.get("esm")!.map : new Map(); - await compileForEnvironment("browser", browserConfig, importMap, esmMap); + return compileForEnvironment("browser", browserConfig, importMap, esmMap); } return true; From 1d83e8f208d863ad90a4c6674db47c683caa8273 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:15:06 -0700 Subject: [PATCH 17/73] Sync eng/common directory with azure-sdk-tools for PR 12471 (#36200) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12471 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) Co-authored-by: Ben Broderick Phillips --- eng/common/scripts/job-matrix/Create-JobMatrix.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eng/common/scripts/job-matrix/Create-JobMatrix.ps1 b/eng/common/scripts/job-matrix/Create-JobMatrix.ps1 index d35b3c923a6d..2ca67e92a7d6 100644 --- a/eng/common/scripts/job-matrix/Create-JobMatrix.ps1 +++ b/eng/common/scripts/job-matrix/Create-JobMatrix.ps1 @@ -54,7 +54,9 @@ LogGroupEnd $serialized = SerializePipelineMatrix $matrix Write-Host "Generated matrix:" -Write-Host $serialized.pretty + +# Write-Output required to support other scripts that call this script directly +Write-Output $serialized.pretty if ($CI) { Write-Output "##vso[task.setVariable variable=matrix;isOutput=true]$($serialized.compressed)" From 89c70bb29fda480f754c6cec5c2d549974f4f0e6 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Mon, 13 Oct 2025 16:24:01 -0700 Subject: [PATCH 18/73] Sync eng/common directory with azure-sdk-tools for PR 12295 (#36202) Sync eng/common directory with azure-sdk-tools for PR https://github.com/Azure/azure-sdk-tools/pull/12295 See [eng/common workflow](https://github.com/Azure/azure-sdk-tools/blob/main/eng/common/README.md#workflow) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- eng/common/tsp-client/package-lock.json | 8 ++++---- eng/common/tsp-client/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/common/tsp-client/package-lock.json b/eng/common/tsp-client/package-lock.json index b998c1b4fce0..0859bbbfb1ff 100644 --- a/eng/common/tsp-client/package-lock.json +++ b/eng/common/tsp-client/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "dependencies": { - "@azure-tools/typespec-client-generator-cli": "0.28.3" + "@azure-tools/typespec-client-generator-cli": "0.29.0" } }, "node_modules/@autorest/codemodel": { @@ -189,9 +189,9 @@ } }, "node_modules/@azure-tools/typespec-client-generator-cli": { - "version": "0.28.3", - "resolved": "https://registry.npmjs.org/@azure-tools/typespec-client-generator-cli/-/typespec-client-generator-cli-0.28.3.tgz", - "integrity": "sha512-vWIuMHAlSC3mi+5YJregrxNSU3tZMkZZXTwCV53TX3f/eLYOCT8fTCmNHMOIseIX0OPPb4M1zoLFzZTr96Z7mQ==", + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/@azure-tools/typespec-client-generator-cli/-/typespec-client-generator-cli-0.29.0.tgz", + "integrity": "sha512-dQ8aHoouZ1SaDzan2xv2sa9Kzf/gXG3LFnas9io+3x6HzVCljlqiN/hPd8c35pn9mqVhlVoktg3CGlMKDwQN/Q==", "license": "MIT", "dependencies": { "@autorest/core": "^3.10.2", diff --git a/eng/common/tsp-client/package.json b/eng/common/tsp-client/package.json index aa5b6fff2493..8aa229e7cdad 100644 --- a/eng/common/tsp-client/package.json +++ b/eng/common/tsp-client/package.json @@ -1,5 +1,5 @@ { "dependencies": { - "@azure-tools/typespec-client-generator-cli": "0.28.3" + "@azure-tools/typespec-client-generator-cli": "0.29.0" } } From 696aa6ae5208e7aef27a0dd52efcb11827a61fc3 Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Mon, 13 Oct 2025 16:52:42 -0700 Subject: [PATCH 19/73] [EngSys] remove `dev-tool run vendored` from individual packages (#36198) The primary reason that we added `dev-tool run vendored` command is to manage dependencies centrally. Now we can achieve that with pnpm workspace/catalog feature. This PR removes most of the `dev-tool run vendored` usages from individual packages and replace them with direct tool calls. Those tools are also added to individual package's dev dependencies per Pnpm recommendation. --- common/tools/dev-tool/package.json | 14 +- .../dev-tool/src/templates/sampleReadme.md.ts | 2 +- .../dev-tool/src/util/samples/generation.ts | 5 +- .../cjs-forms/javascript/README.md | 2 +- .../cjs-forms/typescript/README.md | 2 +- .../cjs-forms/typescript/package.json | 5 +- .../output-customization/javascript/README.md | 2 +- .../output-customization/typescript/README.md | 2 +- .../typescript/package.json | 5 +- .../expectations/simple/javascript/README.md | 2 +- .../expectations/simple/typescript/README.md | 2 +- .../simple/typescript/package.json | 5 +- .../simple@1.0.0-beta.1/javascript/README.md | 2 +- .../simple@1.0.0-beta.1/typescript/README.md | 2 +- .../typescript/package.json | 5 +- .../special-characters/javascript/README.md | 2 +- .../special-characters/typescript/README.md | 2 +- .../typescript/package.json | 5 +- .../eslint-plugin-azure-sdk/package.json | 3 +- .../turborepo-remote-cache/package.json | 4 +- package.json | 3 - pnpm-lock.yaml | 5903 +++++++++++++++-- pnpm-workspace.yaml | 1 - sdk/advisor/arm-advisor/package.json | 10 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-agricultureplatform/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../agrifood-farming-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/agrifood/arm-agrifood/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/ai/ai-agents/package.json | 36 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/ai/ai-inference-rest/package.json | 13 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/ai/ai-projects/package.json | 27 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-analysisservices/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../ai-anomaly-detector-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/apicenter/arm-apicenter/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 9 +- .../package.json | 10 +- .../arm-apimanagement/package.json | 5 +- .../samples/v10/javascript/README.md | 2 +- .../samples/v10/typescript/README.md | 2 +- .../arm-appcomplianceautomation/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../app-configuration-perf-tests/package.json | 14 +- .../app-configuration/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-appconfiguration/package.json | 21 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../arm-appcontainers/package.json | 30 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../arm-appinsights/package.json | 5 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-appservice-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/appservice/arm-appservice/package.json | 21 +- .../samples/v17/javascript/README.md | 2 +- .../samples/v17/typescript/README.md | 2 +- sdk/astro/arm-astro/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/attestation/arm-attestation/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/attestation/attestation/package.json | 10 +- .../package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-authorization/package.json | 5 +- .../samples/v10-beta/javascript/README.md | 2 +- .../samples/v10-beta/typescript/README.md | 2 +- sdk/automanage/arm-automanage/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/automation/arm-automation/package.json | 5 +- .../samples/v11-beta/javascript/README.md | 2 +- .../samples/v11-beta/typescript/README.md | 2 +- sdk/avs/arm-avs/package.json | 12 +- .../arm-avs/samples/v7/javascript/README.md | 2 +- .../arm-avs/samples/v7/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/azurestack/arm-azurestack/package.json | 5 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../arm-azurestackhci/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-azurestackhcivm/package.json | 26 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-baremetalinfrastructure/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/batch/arm-batch/package.json | 5 +- .../samples/v10/javascript/README.md | 2 +- .../samples/v10/typescript/README.md | 2 +- sdk/batch/batch-rest/package.json | 16 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/billing/arm-billing/package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../arm-billingbenefits/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/botservice/arm-botservice/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../arm-carbonoptimization/package.json | 16 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/cdn/arm-cdn/package.json | 5 +- .../arm-cdn/samples/v9/javascript/README.md | 2 +- .../arm-cdn/samples/v9/typescript/README.md | 2 +- .../arm-changeanalysis/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/changes/arm-changes/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/chaos/arm-chaos/package.json | 14 +- .../arm-chaos/samples/v2/javascript/README.md | 2 +- .../arm-chaos/samples/v2/typescript/README.md | 2 +- sdk/cloudhealth/arm-cloudhealth/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../ai-language-conversations/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../ai-language-text-perf-tests/package.json | 14 +- .../ai-language-text/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-cognitiveservices/package.json | 34 +- .../samples/v7/javascript/README.md | 2 +- .../samples/v7/typescript/README.md | 2 +- .../samples/v8/javascript/README.md | 2 +- .../samples/v8/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/commerce/arm-commerce/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-communication/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../communication-alpha-ids/package.json | 10 +- .../package.json | 10 +- .../communication-chat/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../communication-common/package.json | 10 +- .../communication-email/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../communication-identity/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../communication-messages-rest/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../communication-phone-numbers/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../communication-rooms/package.json | 14 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../communication-short-codes/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../communication-sms/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../communication-tiering/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 10 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/compute/arm-compute-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/compute/arm-compute/package.json | 38 +- .../samples/v23/javascript/README.md | 2 +- .../samples/v23/typescript/README.md | 2 +- .../arm-computerecommender/package.json | 22 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-computefleet/package.json | 26 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-computeschedule/package.json | 14 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-confidentialledger/package.json | 21 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../confidential-ledger-rest/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/confluent/arm-confluent/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-connectedcache/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-connectedvmware/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/consumption/arm-consumption/package.json | 5 +- .../samples/v9/javascript/README.md | 2 +- .../samples/v9/typescript/README.md | 2 +- .../arm-containerinstance/package.json | 5 +- .../samples/v9-beta/javascript/README.md | 2 +- .../samples/v9-beta/typescript/README.md | 2 +- .../samples/v9/javascript/README.md | 2 +- .../samples/v9/typescript/README.md | 2 +- .../arm-containerregistry/package.json | 5 +- .../samples/v11-beta/javascript/README.md | 2 +- .../samples/v11-beta/typescript/README.md | 2 +- .../package.json | 14 +- .../container-registry/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-containerservice-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-containerservice/package.json | 34 +- .../samples/v23-beta/javascript/README.md | 2 +- .../samples/v23-beta/typescript/README.md | 2 +- .../arm-containerservicefleet/package.json | 14 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../package.json | 26 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../ai-content-safety-rest/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/core/abort-controller/package.json | 3 + sdk/core/core-amqp/package.json | 3 + sdk/core/core-auth/package.json | 3 + sdk/core/core-client-rest/package.json | 3 + sdk/core/core-client/package.json | 3 + sdk/core/core-http-compat/package.json | 3 + sdk/core/core-lro/package.json | 3 + .../core-lro/samples/v3/javascript/README.md | 2 +- .../core-lro/samples/v3/typescript/README.md | 2 +- sdk/core/core-paging/package.json | 3 + .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 3 + sdk/core/core-rest-pipeline/package.json | 3 + .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/core/core-sse/package.json | 3 + .../core-sse/samples/v1/javascript/README.md | 2 +- .../core-sse/samples/v1/typescript/README.md | 2 +- .../core-sse/samples/v2/javascript/README.md | 2 +- .../core-sse/samples/v2/typescript/README.md | 2 +- sdk/core/core-tracing/package.json | 3 + .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/core/core-util/package.json | 3 + sdk/core/core-xml/package.json | 3 + sdk/core/logger/package.json | 3 + sdk/core/ts-http-runtime/package.json | 3 + sdk/cosmosdb/arm-cosmosdb/package.json | 21 +- .../samples/v16/javascript/README.md | 2 +- .../samples/v16/typescript/README.md | 2 +- sdk/cosmosdb/cosmos/package.json | 18 +- .../cosmos/samples/v3/javascript/README.md | 2 +- .../cosmos/samples/v3/typescript/README.md | 2 +- .../cosmos/samples/v4/javascript/README.md | 2 +- .../cosmos/samples/v4/typescript/README.md | 2 +- .../arm-cosmosdbforpostgresql/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-costmanagement/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-customerinsights/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- sdk/dashboard/arm-dashboard/package.json | 26 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-databasewatcher/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-databoundaries/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/databox/arm-databox/package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/databoxedge/arm-databoxedge/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/databricks/arm-databricks/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/datacatalog/arm-datacatalog/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- sdk/datadog/arm-datadog/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/datafactory/arm-datafactory/package.json | 5 +- .../samples/v19/javascript/README.md | 2 +- .../samples/v19/typescript/README.md | 2 +- .../arm-datalake-analytics/package.json | 5 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-datamigration/package.json | 34 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-dataprotection/package.json | 20 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../arm-defendereasm/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/dell/arm-dell-storage/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-dependencymap/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-deploymentmanager/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-desktopvirtualization/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/devcenter/arm-devcenter/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../developer-devcenter-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/devhub/arm-devhub/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../samples/v6-beta/javascript/README.md | 2 +- .../samples/v6-beta/typescript/README.md | 2 +- .../arm-deviceregistry/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-deviceupdate/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../iot-device-update-rest/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-devopsinfrastructure/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/devspaces/arm-devspaces/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/devtestlabs/arm-devtestlabs/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../arm-digitaltwins/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../digital-twins-core/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../package.json | 5 +- sdk/dns/arm-dns/package.json | 5 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- sdk/dnsresolver/arm-dnsresolver/package.json | 21 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 14 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../ai-document-translator-rest/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-domainservices/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- sdk/durabletask/arm-durabletask/package.json | 20 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/dynatrace/arm-dynatrace/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/easm/defender-easm-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/edgezones/arm-edgezones/package.json | 12 +- sdk/education/arm-education/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/elastic/arm-elastic/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/elasticsans/arm-elasticsan/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 10 +- sdk/eventgrid/arm-eventgrid/package.json | 21 +- .../samples/v15-beta/javascript/README.md | 2 +- .../samples/v15-beta/typescript/README.md | 2 +- .../eventgrid-namespaces/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../eventgrid-perf-tests/package.json | 14 +- .../eventgrid-systemevents/package.json | 10 +- sdk/eventgrid/eventgrid/package.json | 10 +- .../eventgrid/samples/v5/javascript/README.md | 2 +- .../eventgrid/samples/v5/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/eventhub/arm-eventhub/package.json | 5 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- .../event-hubs-perf-tests/package.json | 14 +- sdk/eventhub/event-hubs/package.json | 19 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../package.json | 10 +- sdk/eventhub/mock-hub/package.json | 10 +- .../mock-hub/samples/v1/javascript/README.md | 2 +- .../mock-hub/samples/v1/typescript/README.md | 2 +- .../arm-extendedlocation/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/fabric/arm-fabric/package.json | 11 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/face/ai-vision-face-rest/package.json | 11 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/features/arm-features/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/fluidrelay/arm-fluidrelay/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 14 +- .../ai-form-recognizer/package.json | 9 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- sdk/frontdoor/arm-frontdoor/package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../arm-graphservices/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-guestconfiguration/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/hanaonazure/arm-hanaonazure/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-hardwaresecuritymodules/package.json | 14 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/hdinsight/arm-hdinsight/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-hdinsightcontainers/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/healthbot/arm-healthbot/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-healthcareapis/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-healthdataaiservices/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../health-deidentification-rest/package.json | 18 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-hybridcompute/package.json | 21 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- .../arm-hybridconnectivity/package.json | 26 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-hybridcontainerservice/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-hybridkubernetes/package.json | 10 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../arm-hybridnetwork/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/identity/identity-broker/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../samples/v2/javascript/README.md | 2 +- .../identity-cache-persistence/package.json | 10 +- sdk/identity/identity-perf-tests/package.json | 14 +- sdk/identity/identity-vscode/package.json | 10 +- sdk/identity/identity/package.json | 10 +- .../identity/samples/v2/javascript/README.md | 2 +- .../identity/samples/v2/typescript/README.md | 2 +- .../identity/samples/v3/javascript/README.md | 2 +- .../identity/samples/v3/typescript/README.md | 2 +- .../identity/samples/v4/javascript/README.md | 2 +- .../identity/samples/v4/typescript/README.md | 2 +- .../package.json | 4 +- .../arm-imagebuilder/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../arm-impactreporting/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 14 +- sdk/iot/iot-modelsrepository/package.json | 14 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/iotcentral/arm-iotcentral/package.json | 5 +- .../samples/v7-beta/javascript/README.md | 2 +- .../samples/v7-beta/typescript/README.md | 2 +- .../arm-iotfirmwaredefense/package.json | 24 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/iothub/arm-iothub/package.json | 5 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../arm-iotoperations/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/keyvault/arm-keyvault/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/keyvault/keyvault-admin/package.json | 12 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../package.json | 14 +- .../keyvault-certificates/package.json | 10 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- sdk/keyvault/keyvault-common/package.json | 10 +- .../keyvault-keys-perf-tests/package.json | 14 +- sdk/keyvault/keyvault-keys/package.json | 10 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../keyvault-secrets-perf-tests/package.json | 14 +- sdk/keyvault/keyvault-secrets/package.json | 10 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 21 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-kubernetesconfiguration/package.json | 5 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/kusto/arm-kusto/package.json | 5 +- .../arm-kusto/samples/v8/javascript/README.md | 2 +- .../arm-kusto/samples/v8/typescript/README.md | 2 +- sdk/labservices/arm-labservices/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-lambdatesthyperexecute/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-largeinstance/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-arizeaiobservabilityeval/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/liftrqumulo/arm-qumulo/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-weightsandbiases/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/links/arm-links/package.json | 5 +- sdk/loadtesting/arm-loadtesting/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../create-playwright/package.json | 10 +- .../load-testing-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/loadtesting/playwright/package.json | 18 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/locks/arm-locks/package.json | 5 +- .../arm-locks/samples/v2/javascript/README.md | 2 +- .../arm-locks/samples/v2/typescript/README.md | 2 +- sdk/logic/arm-logic/package.json | 5 +- .../arm-logic/samples/v8/javascript/README.md | 2 +- .../arm-logic/samples/v8/typescript/README.md | 2 +- .../arm-commitmentplans/package.json | 5 +- .../arm-machinelearning/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-webservices/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-workspaces/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-machinelearningcompute/package.json | 5 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- sdk/maintenance/arm-maintenance/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-managedapplications/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-managednetworkfabric/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-managementgroups/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-managementpartner/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/maps/arm-maps/package.json | 5 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../arm-maps/samples/v3/javascript/README.md | 2 +- .../arm-maps/samples/v3/typescript/README.md | 2 +- sdk/maps/maps-common/package.json | 10 +- sdk/maps/maps-geolocation-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/maps/maps-render-rest/package.json | 12 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- sdk/maps/maps-route-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/maps/maps-search-rest/package.json | 12 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- sdk/maps/maps-timezone-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/mariadb/arm-mariadb/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-marketplaceordering/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../package.json | 14 +- .../ai-metrics-advisor/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/migrate/arm-migrate/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-migrationassessment/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-migrationdiscoverysap/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-mobilenetwork/package.json | 5 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../arm-mongocluster/package.json | 50 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-mongodbatlas/package.json | 16 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/monitor/arm-monitor/package.json | 5 +- .../samples/v8-beta/javascript/README.md | 2 +- .../samples/v8-beta/typescript/README.md | 2 +- .../monitor-ingestion-perf-tests/package.json | 14 +- sdk/monitor/monitor-ingestion/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 14 +- .../monitor-opentelemetry/package.json | 10 +- sdk/monitor/monitor-query-logs/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../monitor-query-metrics/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/msi/arm-msi/package.json | 19 +- .../arm-msi/samples/v2/javascript/README.md | 2 +- .../arm-msi/samples/v2/typescript/README.md | 2 +- sdk/mysql/arm-mysql-flexible/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- sdk/mysql/arm-mysql/package.json | 5 +- .../arm-mysql/samples/v5/javascript/README.md | 2 +- .../arm-mysql/samples/v5/typescript/README.md | 2 +- .../arm-neonpostgres/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/netapp/arm-netapp/package.json | 40 +- .../samples/v21/javascript/README.md | 2 +- .../samples/v21/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/network/arm-network-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/network/arm-network/package.json | 21 +- .../samples/v34/javascript/README.md | 2 +- .../samples/v34/typescript/README.md | 2 +- .../arm-networkcloud/package.json | 21 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-networkfunction/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-newrelicobservability/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/nginx/arm-nginx/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-notificationhubs/package.json | 15 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../notification-hubs/package.json | 10 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/oep/arm-oep/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-onlineexperimentation/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../onlineexperimentation-rest/package.json | 55 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/openai/openai/package.json | 12 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../openai/samples/v2/javascript/README.md | 2 +- .../openai/samples/v2/typescript/README.md | 2 +- .../arm-operationalinsights/package.json | 5 +- .../samples/v9/javascript/README.md | 2 +- .../samples/v9/typescript/README.md | 2 +- .../arm-operations/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-oracledatabase/package.json | 20 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/orbital/arm-orbital/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-paloaltonetworksngfw/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/peering/arm-peering/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-pineconevectordb/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-planetarycomputer/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/playwright/arm-playwright/package.json | 24 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-playwrighttesting/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 10 +- .../microsoft-playwright-testing/package.json | 10 +- .../package.json | 5 +- sdk/policy/arm-policy/package.json | 10 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../arm-policyinsights/package.json | 5 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- sdk/portal/arm-portal/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-portalservicescopilot/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-postgresql-flexible/package.json | 21 +- .../samples/v8-beta/javascript/README.md | 2 +- .../samples/v8-beta/typescript/README.md | 2 +- sdk/postgresql/arm-postgresql/package.json | 5 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../arm-powerbidedicated/package.json | 5 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../arm-powerbiembedded/package.json | 5 +- sdk/privatedns/arm-privatedns/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-programmableconnectivity/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-purestorageblock/package.json | 14 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/purview/arm-purview/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../purview-administration-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/purview/purview-datamap-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../purview-scanning-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/purview/purview-sharing-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../purview-workflow-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/quantum/arm-quantum/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/quantum/quantum-jobs/package.json | 10 +- sdk/quota/arm-quota/package.json | 20 +- .../arm-quota/samples/v2/javascript/README.md | 2 +- .../arm-quota/samples/v2/typescript/README.md | 2 +- .../arm-recoveryservices/package.json | 21 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../arm-recoveryservicesbackup/package.json | 5 +- .../samples/v13/javascript/README.md | 2 +- .../samples/v13/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../arm-redhatopenshift/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/redis/arm-rediscache/package.json | 5 +- .../samples/v8/javascript/README.md | 2 +- .../samples/v8/typescript/README.md | 2 +- .../arm-redisenterprisecache/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- sdk/relay/arm-relay/package.json | 5 +- .../arm-relay/samples/v3/javascript/README.md | 2 +- .../arm-relay/samples/v3/typescript/README.md | 2 +- .../arm-reservations/package.json | 5 +- .../samples/v9/javascript/README.md | 2 +- .../samples/v9/typescript/README.md | 2 +- .../arm-resourceconnector/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-resourcegraph/package.json | 5 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- .../arm-resourcehealth/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../samples/v4/javascript/README.md | 2 +- .../samples/v4/typescript/README.md | 2 +- .../arm-resourcemover/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-resources-subscriptions/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/resources/arm-resources/package.json | 21 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../samples/v7/javascript/README.md | 2 +- .../samples/v7/typescript/README.md | 2 +- sdk/resources/arm-resourcesbicep/package.json | 16 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-resourcesdeployments/package.json | 21 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 14 +- .../schema-registry-avro/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../schema-registry-json/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../schema-registry/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/scvmm/arm-scvmm/package.json | 5 +- .../arm-scvmm/samples/v1/javascript/README.md | 2 +- .../arm-scvmm/samples/v1/typescript/README.md | 2 +- sdk/search/arm-search/package.json | 26 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../search-documents-perf-tests/package.json | 14 +- sdk/search/search-documents/package.json | 10 +- .../samples/v11/javascript/README.md | 2 +- .../samples/v11/typescript/README.md | 2 +- .../samples/v12-beta/javascript/README.md | 2 +- .../samples/v12-beta/typescript/README.md | 2 +- .../samples/v12/javascript/README.md | 2 +- .../samples/v12/typescript/README.md | 2 +- sdk/security/arm-security/package.json | 5 +- .../samples/v6-beta/javascript/README.md | 2 +- .../samples/v6-beta/typescript/README.md | 2 +- .../arm-securitydevops/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-securityinsight/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/selfhelp/arm-selfhelp/package.json | 5 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-serialconsole/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/service-map/arm-servicemap/package.json | 5 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- sdk/servicebus/arm-servicebus/package.json | 5 +- .../samples/v6-beta/javascript/README.md | 2 +- .../samples/v6-beta/typescript/README.md | 2 +- .../service-bus-perf-tests/package.json | 14 +- sdk/servicebus/service-bus/package.json | 10 +- .../samples/v7-beta/javascript/README.md | 2 +- .../samples/v7-beta/typescript/README.md | 2 +- .../samples/v7/javascript/README.md | 2 +- .../samples/v7/typescript/README.md | 2 +- .../arm-servicefabric-rest/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-servicefabric/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../package.json | 16 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-servicefabricmesh/package.json | 5 +- .../samples/v3-beta/javascript/README.md | 2 +- .../samples/v3-beta/typescript/README.md | 2 +- .../arm-servicelinker/package.json | 5 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-servicenetworking/package.json | 12 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- sdk/signalr/arm-signalr/package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../samples/v6-beta/javascript/README.md | 2 +- .../samples/v6-beta/typescript/README.md | 2 +- sdk/sitemanager/arm-sitemanager/package.json | 24 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/sphere/arm-sphere/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-springappdiscovery/package.json | 5 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/sql/arm-sql/package.json | 24 +- .../samples/v11-beta/javascript/README.md | 2 +- .../samples/v11-beta/typescript/README.md | 2 +- .../arm-sqlvirtualmachine/package.json | 5 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- sdk/standbypool/arm-standbypool/package.json | 12 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/storage/arm-storage/package.json | 34 +- .../samples/v19/javascript/README.md | 2 +- .../samples/v19/typescript/README.md | 2 +- .../storage-blob-changefeed/package.json | 16 +- .../samples/v12-beta/javascript/README.md | 2 +- .../samples/v12-beta/typescript/README.md | 2 +- .../storage-blob-perf-tests/package.json | 14 +- sdk/storage/storage-blob/package.json | 16 +- .../samples/v12/javascript/README.md | 2 +- .../samples/v12/typescript/README.md | 2 +- sdk/storage/storage-common/package.json | 12 +- .../package.json | 10 +- .../storage-file-datalake/package.json | 12 +- .../samples/v12/javascript/README.md | 2 +- .../samples/v12/typescript/README.md | 2 +- .../package.json | 14 +- sdk/storage/storage-file-share/package.json | 14 +- .../samples/v12/javascript/README.md | 2 +- .../samples/v12/typescript/README.md | 2 +- .../storage-internal-avro/package.json | 10 +- sdk/storage/storage-queue/package.json | 14 +- .../samples/v12/javascript/README.md | 2 +- .../samples/v12/typescript/README.md | 2 +- .../arm-storageactions/package.json | 16 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-storagecache/package.json | 24 +- .../samples/v8/javascript/README.md | 2 +- .../samples/v8/typescript/README.md | 2 +- .../arm-storagediscovery/package.json | 22 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-storageimportexport/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-storagemover/package.json | 26 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/storagesync/arm-storagesync/package.json | 5 +- .../samples/v9/javascript/README.md | 2 +- .../samples/v9/typescript/README.md | 2 +- .../arm-storsimple1200series/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-storsimple8000series/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-streamanalytics/package.json | 5 +- .../samples/v5-beta/javascript/README.md | 2 +- .../samples/v5-beta/typescript/README.md | 2 +- .../package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- .../arm-subscriptions/package.json | 5 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- sdk/support/arm-support/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- sdk/synapse/arm-synapse/package.json | 5 +- .../samples/v9-beta/javascript/README.md | 2 +- .../samples/v9-beta/typescript/README.md | 2 +- .../synapse-access-control-rest/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../synapse-access-control/package.json | 10 +- sdk/synapse/synapse-artifacts/package.json | 10 +- .../package.json | 10 +- sdk/synapse/synapse-monitoring/package.json | 10 +- sdk/synapse/synapse-spark/package.json | 10 +- .../data-tables-perf-tests/package.json | 14 +- sdk/tables/data-tables/package.json | 10 +- .../samples/v13/javascript/README.md | 2 +- .../samples/v13/typescript/README.md | 2 +- sdk/template/template-dpg/package.json | 10 +- sdk/template/template-perf-tests/package.json | 14 +- sdk/template/template/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../arm-templatespecs/package.json | 5 +- .../samples/v2/javascript/README.md | 2 +- .../samples/v2/typescript/README.md | 2 +- sdk/terraform/arm-terraform/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/test-utils/perf/package.json | 10 +- sdk/test-utils/recorder/package.json | 10 +- sdk/test-utils/test-credential/package.json | 14 +- sdk/test-utils/test-utils-vitest/package.json | 10 +- .../ai-text-analytics-perf-tests/package.json | 14 +- .../ai-text-analytics/package.json | 10 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../arm-timeseriesinsights/package.json | 5 +- .../samples/v2-beta/javascript/README.md | 2 +- .../samples/v2-beta/typescript/README.md | 2 +- .../arm-trafficmanager/package.json | 5 +- .../samples/v6/javascript/README.md | 2 +- .../samples/v6/typescript/README.md | 2 +- .../ai-translation-document-rest/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../ai-translation-text-rest/package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-trustedsigning/package.json | 12 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/javascript/README.md | 2 +- .../samples/typescript/README.md | 2 +- .../arm-visualstudio/package.json | 5 +- .../samples/v4-beta/javascript/README.md | 2 +- .../samples/v4-beta/typescript/README.md | 2 +- .../arm-vmwarecloudsimple/package.json | 5 +- .../samples/v3/javascript/README.md | 2 +- .../samples/v3/typescript/README.md | 2 +- .../arm-voiceservices/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/web-pubsub/arm-webpubsub/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../web-pubsub-client-protobuf/package.json | 10 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/web-pubsub/web-pubsub-client/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../web-pubsub-express/package.json | 10 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- sdk/web-pubsub/web-pubsub/package.json | 14 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../arm-workloadorchestration/package.json | 26 +- .../samples/v1-beta/javascript/README.md | 2 +- .../samples/v1-beta/typescript/README.md | 2 +- sdk/workloads/arm-workloads/package.json | 5 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../package.json | 12 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- 1267 files changed, 9066 insertions(+), 2941 deletions(-) diff --git a/common/tools/dev-tool/package.json b/common/tools/dev-tool/package.json index f7411a0b394b..2e51f76d6fad 100644 --- a/common/tools/dev-tool/package.json +++ b/common/tools/dev-tool/package.json @@ -40,7 +40,7 @@ "@_ts/max": "npm:typescript@latest", "@_ts/min": "npm:typescript@~4.2.4", "@arethetypeswrong/cli": "^0.17.4", - "@azure/identity": "4.10.1", + "@azure/identity": "4.12.0", "@microsoft/api-extractor": "^7.52.4", "@microsoft/api-extractor-model": "^7.30.5", "@pnpm/catalogs.config": "^1000.0.2", @@ -55,15 +55,15 @@ "fs-extra": "^11.2.0", "memfs": "^4.14.1", "minimist": "^1.2.8", - "prettier": "^3.5.3", + "prettier": "catalog:", "semver": "^7.6.0", "strip-json-comments": "^5.0.1", "tar": "^7.4.3", "ts-morph": "^27.0.0", - "tshy": "^3.0.0", + "tshy": "catalog:", "tslib": "^2.8.1", - "tsx": "^4.19.3", - "typescript": "~5.8.2", + "tsx": "catalog:", + "typescript": "~5.9.3", "unzipper": "~0.12.3", "yaml": "^2.3.4" }, @@ -79,10 +79,10 @@ "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", "builtin-modules": "^3.1.0", - "cross-env": "^7.0.3", + "cross-env": "catalog:", "eslint": "catalog:", "mkdirp": "^3.0.1", - "rimraf": "^6.0.1", + "rimraf": "catalog:", "typescript-eslint": "~8.43.0", "vitest": "catalog:testing" } diff --git a/common/tools/dev-tool/src/templates/sampleReadme.md.ts b/common/tools/dev-tool/src/templates/sampleReadme.md.ts index 2c568ba810ff..9bb0207aa93d 100644 --- a/common/tools/dev-tool/src/templates/sampleReadme.md.ts +++ b/common/tools/dev-tool/src/templates/sampleReadme.md.ts @@ -267,7 +267,7 @@ ${fence( Alternatively, run a single sample with the correct environment variables set (setting up the \`.env\` file is not required if you do this), for example (cross-platform): -${fence("bash", `npx dev-tool run vendored cross-env ${exampleNodeInvocation(info)}`)} +${fence("bash", `cross-env ${exampleNodeInvocation(info)}`)} ## Next Steps diff --git a/common/tools/dev-tool/src/util/samples/generation.ts b/common/tools/dev-tool/src/util/samples/generation.ts index ec8a93324553..399df436a7d5 100644 --- a/common/tools/dev-tool/src/util/samples/generation.ts +++ b/common/tools/dev-tool/src/util/samples/generation.ts @@ -255,13 +255,14 @@ export async function makeSampleGenerationInfo( }, defaultDependencies), ...(outputKind === OutputKind.TypeScript ? { - // In TypeScript samples, we include TypeScript and `rimraf`, because they're used + // In TypeScript samples, we include TypeScript, `cross-env`, and `rimraf`, because they're used // in the package scripts as well as @types/node. devDependencies: { ...typesDependencies, "@types/node": `^${MIN_SUPPORTED_NODE_VERSION}`, - typescript: devToolPackageJson.dependencies.typescript, + "cross-env": "latest", rimraf: "latest", + typescript: devToolPackageJson.dependencies.typescript, }, } : {}), diff --git a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md index 348d6aecb71d..a2eee5487994 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/javascript/README.md @@ -39,7 +39,7 @@ node index.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env WAIT_TIME="" node index.js +cross-env WAIT_TIME="" node index.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md index 4eda29cfad64..4cc0214ec1d9 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/README.md @@ -51,7 +51,7 @@ node dist/index.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env WAIT_TIME="" node dist/index.js +cross-env WAIT_TIME="" node dist/index.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json index bcd8cb3932cf..8ced8d3c013b 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/cjs-forms/typescript/package.json @@ -32,7 +32,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md index dfa21e8c63df..6e5ed0436926 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/output-customization/javascript/README.md @@ -43,7 +43,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md index 15672b5a09a3..2fe689cc8242 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/README.md @@ -55,7 +55,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json index 373b89d713ea..28121851067e 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/output-customization/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md index 7bcf6ecd580e..0abe71eabbbc 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple/javascript/README.md @@ -39,7 +39,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md index 6099dc25572e..81634cc5669d 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/README.md @@ -51,7 +51,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json index 06a67af5d5cb..2641a6ec87a4 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/simple/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md index 9a2221ca0015..51bfbbd2a15d 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/javascript/README.md @@ -39,7 +39,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md index d606704afe41..fd411427cf86 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/README.md @@ -51,7 +51,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json index 31dc9fa57dbe..23c4a4f343b5 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/simple@1.0.0-beta.1/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md b/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md index 691691a60062..802df62f3733 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/special-characters/javascript/README.md @@ -39,7 +39,7 @@ node getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node getConfigurationSetting.js +cross-env MY_VARIABLE="" node getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md index d0c502589fd7..babf274e2d7d 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md +++ b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/README.md @@ -51,7 +51,7 @@ node dist/getConfigurationSetting.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js +cross-env MY_VARIABLE="" node dist/getConfigurationSetting.js ``` ## Next Steps diff --git a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json index 26cff205ea0d..e40cc8da67c0 100644 --- a/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json +++ b/common/tools/dev-tool/test/samples/files/expectations/special-characters/typescript/package.json @@ -30,7 +30,8 @@ }, "devDependencies": { "@types/node": "^20.0.0", - "typescript": "~5.8.2", - "rimraf": "latest" + "cross-env": "latest", + "rimraf": "latest", + "typescript": "~5.9.3" } } diff --git a/common/tools/eslint-plugin-azure-sdk/package.json b/common/tools/eslint-plugin-azure-sdk/package.json index 4ed8fe975af0..409b8c251db9 100644 --- a/common/tools/eslint-plugin-azure-sdk/package.json +++ b/common/tools/eslint-plugin-azure-sdk/package.json @@ -110,11 +110,12 @@ "@typescript-eslint/utils": "~8.43.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", "prettier": "^3.3.3", "rimraf": "^6.0.1", - "tshy": "^3.0.0", + "tshy": "catalog:", "vitest": "catalog:testing" }, "tshy": { diff --git a/eng/containers/turborepo-remote-cache/package.json b/eng/containers/turborepo-remote-cache/package.json index 19a084508dc2..4b8949b20da9 100644 --- a/eng/containers/turborepo-remote-cache/package.json +++ b/eng/containers/turborepo-remote-cache/package.json @@ -39,6 +39,8 @@ "@vitest/coverage-istanbul": "^3.1.1", "eslint": "^9.9.0", "pino-pretty": "^13.1.1", + "prettier": "catalog:", + "rimraf": "catalog:", "tsx": "^4.17.0", "typescript": "~5.8.2", "typescript-eslint": "~8.43.0", @@ -54,7 +56,7 @@ "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.{ts,json,md}\"", "lint": "eslint src test", "lint:fix": "eslint src test --fix --fix-type [problem,suggestion]", - "pack": "npm pack 2>&1", + "pack": "pnpm pack 2>&1", "test": "npm run clean && npm run build && npm run test:node && npm run test:browser", "test:browser": "echo skipped", "test:node": "vitest", diff --git a/package.json b/package.json index 0c211aa78e3c..0ac10ba8b4dd 100644 --- a/package.json +++ b/package.json @@ -24,9 +24,6 @@ }, "devDependencies": { "cspell": "^9.2.0", - "cross-env": "^7.0.3", - "mkdirp": "^3.0.1", - "prettier": "^3.6.2", "prettier-plugin-packagejson": "^2.5.19", "rimraf": "^6.0.1", "turbo": "^2.5.6" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8a13387e21a1..828084150e92 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,9 +22,18 @@ catalogs: autorest: specifier: latest version: 3.7.2 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 eslint: specifier: ^9.33.0 version: 9.37.0 + prettier: + specifier: ^3.6.2 + version: 3.6.2 + rimraf: + specifier: ^6.0.1 + version: 6.0.1 tshy: specifier: ^3.0.0 version: 3.0.3 @@ -83,18 +92,9 @@ importers: .: devDependencies: - cross-env: - specifier: ^7.0.3 - version: 7.0.3 cspell: specifier: ^9.2.0 version: 9.2.1 - mkdirp: - specifier: ^3.0.1 - version: 3.0.1 - prettier: - specifier: ^3.6.2 - version: 3.6.2 prettier-plugin-packagejson: specifier: ^2.5.19 version: 2.5.19(prettier@3.6.2) @@ -117,8 +117,8 @@ importers: specifier: ^0.17.4 version: 0.17.4 '@azure/identity': - specifier: 4.10.1 - version: 4.10.1 + specifier: 4.12.0 + version: 4.12.0 '@microsoft/api-extractor': specifier: ^7.52.4 version: 7.53.1(@types/node@20.19.21) @@ -162,7 +162,7 @@ importers: specifier: ^1.2.8 version: 1.2.8 prettier: - specifier: ^3.5.3 + specifier: 'catalog:' version: 3.6.2 semver: specifier: ^7.6.0 @@ -177,17 +177,17 @@ importers: specifier: ^27.0.0 version: 27.0.0 tshy: - specifier: ^3.0.0 + specifier: 'catalog:' version: 3.0.3 tslib: specifier: ^2.8.1 version: 2.8.1 tsx: - specifier: ^4.19.3 + specifier: 'catalog:' version: 4.20.6 typescript: - specifier: ~5.8.2 - version: 5.8.3 + specifier: ~5.9.3 + version: 5.9.3 unzipper: specifier: ~0.12.3 version: 0.12.3 @@ -229,7 +229,7 @@ importers: specifier: ^3.1.0 version: 3.3.0 cross-env: - specifier: ^7.0.3 + specifier: 'catalog:' version: 7.0.3 eslint: specifier: 'catalog:' @@ -238,14 +238,14 @@ importers: specifier: ^3.0.1 version: 3.0.1 rimraf: - specifier: ^6.0.1 + specifier: 'catalog:' version: 6.0.1 typescript-eslint: specifier: ~8.43.0 - version: 8.43.0(eslint@9.37.0)(typescript@5.8.3) + version: 8.43.0(eslint@9.37.0)(typescript@5.9.3) vitest: specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) common/tools/eslint-plugin-azure-sdk: dependencies: @@ -319,6 +319,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -332,7 +335,7 @@ importers: specifier: ^6.0.1 version: 6.0.1 tshy: - specifier: ^3.0.0 + specifier: 'catalog:' version: 3.0.3 vitest: specifier: catalog:testing @@ -405,6 +408,12 @@ importers: pino-pretty: specifier: ^13.1.1 version: 13.1.2 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tsx: specifier: ^4.17.0 version: 4.20.6 @@ -460,12 +469,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -527,6 +548,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -536,6 +560,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -597,6 +630,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -606,6 +642,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -658,6 +703,15 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -746,18 +800,30 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + mkdirp: + specifier: ^3.0.1 + version: 3.0.1 playwright: specifier: catalog:testing version: 1.56.0 prettier: specifier: ^3.2.5 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -843,15 +909,30 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + mkdirp: + specifier: ^3.0.1 + version: 3.0.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -949,15 +1030,30 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + mkdirp: + specifier: ^3.0.1 + version: 3.0.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1010,6 +1106,15 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1071,6 +1176,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 csv-parse: specifier: ^6.0.0 version: 6.1.0 @@ -1083,6 +1191,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1135,9 +1252,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1193,6 +1319,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -1202,9 +1331,15 @@ importers: prettier: specifier: ^3.3.3 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 rollup: specifier: ^4.14.0 version: 4.52.4 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1245,12 +1380,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1309,12 +1456,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1370,12 +1526,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1455,6 +1620,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -1467,6 +1635,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1501,9 +1678,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1559,12 +1748,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1623,12 +1821,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1678,12 +1888,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1742,12 +1961,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1803,12 +2031,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1870,6 +2107,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -1879,6 +2119,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1937,12 +2186,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -1995,9 +2253,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2059,6 +2326,9 @@ importers: buffer: specifier: ^6.0.0 version: 6.0.3 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2068,9 +2338,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 safe-buffer: specifier: ^5.2.1 version: 5.2.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2129,12 +2408,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2187,12 +2475,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2245,12 +2542,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2309,12 +2615,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2376,6 +2691,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2385,6 +2703,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2443,9 +2770,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2498,9 +2834,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2559,12 +2904,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2626,6 +2980,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2635,6 +2992,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2693,12 +3059,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2760,12 +3135,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2821,6 +3205,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -2830,6 +3217,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2888,12 +3284,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -2952,9 +3357,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3013,12 +3427,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3074,6 +3497,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3083,6 +3509,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3141,67 +3576,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/changeanalysis/arm-changeanalysis: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3209,7 +3598,7 @@ importers: specifier: catalog:testing version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - sdk/changes/arm-changes: + sdk/changeanalysis/arm-changeanalysis: dependencies: '@azure/core-auth': specifier: ^1.9.0 @@ -3242,6 +3631,9 @@ importers: '@azure/identity': specifier: catalog:internal version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger '@types/node': specifier: 'catalog:' version: 20.19.21 @@ -3251,9 +3643,79 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/changes/arm-changes: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3318,6 +3780,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3327,6 +3792,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3388,6 +3862,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3397,6 +3874,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3464,6 +3950,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3473,6 +3962,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3549,6 +4047,9 @@ importers: chai-exclude: specifier: catalog:testing version: 3.0.1(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3558,6 +4059,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3595,9 +4105,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3653,12 +4175,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3711,9 +4245,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3766,12 +4309,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3830,12 +4382,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3903,6 +4464,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -3912,6 +4476,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -3994,6 +4567,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4006,6 +4582,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4079,6 +4664,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4088,6 +4676,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4149,6 +4746,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -4161,6 +4761,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4225,6 +4834,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4234,6 +4846,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4310,6 +4931,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4319,6 +4943,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4380,6 +5013,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4389,6 +5025,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4462,6 +5107,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4471,6 +5119,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4544,6 +5201,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4553,6 +5213,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4623,6 +5292,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4632,6 +5304,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4699,6 +5380,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4708,6 +5392,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4778,6 +5471,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4787,6 +5483,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4854,6 +5559,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4863,6 +5571,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -4933,6 +5650,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -4942,6 +5662,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5009,6 +5738,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5018,6 +5750,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5079,12 +5820,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5143,12 +5896,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5213,6 +5975,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5222,6 +5987,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5277,6 +6051,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -5286,6 +6063,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -5347,6 +6133,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -5356,6 +6145,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -5417,6 +6215,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5426,6 +6227,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5484,12 +6294,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5539,12 +6358,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5603,12 +6434,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5670,6 +6510,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -5679,6 +6522,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5737,70 +6589,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/consumption/arm-consumption: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5808,20 +6611,14 @@ importers: specifier: catalog:testing version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - sdk/containerinstance/arm-containerinstance: + sdk/consumption/arm-consumption: dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller '@azure/core-auth': specifier: ^1.9.0 version: link:../../core/core-auth '@azure/core-client': specifier: ^1.9.2 version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.4 - version: 2.7.2 '@azure/core-paging': specifier: ^1.6.2 version: link:../../core/core-paging @@ -5859,12 +6656,94 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/containerinstance/arm-containerinstance: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5923,12 +6802,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -5993,6 +6881,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6002,6 +6893,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6033,9 +6933,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6091,12 +7003,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6158,6 +7082,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6167,6 +7094,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6228,6 +7164,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6237,6 +7176,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6298,6 +7246,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -6307,6 +7258,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -6368,6 +7328,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6377,9 +7340,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 rollup-plugin-copy: specifier: ^3.5.0 version: 3.5.0 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -6408,12 +7380,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6487,6 +7468,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.3.4 version: 4.4.3 @@ -6496,6 +7480,12 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6536,12 +7526,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6594,12 +7593,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6646,12 +7654,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6689,12 +7706,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6741,12 +7767,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6778,12 +7813,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6836,12 +7880,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6888,12 +7941,21 @@ importers: concurrently: specifier: ^9.2.1 version: 9.2.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 express: specifier: ^5.1.0 version: 5.1.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6943,6 +8005,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -6955,6 +8020,12 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -6992,12 +8063,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7038,12 +8118,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7081,12 +8170,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7121,6 +8219,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7130,6 +8231,12 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7170,12 +8277,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 tshy: specifier: 'catalog:' version: 3.0.3 @@ -7240,12 +8356,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7322,6 +8447,9 @@ importers: assertion-error: specifier: ^2.0.1 version: 2.0.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7334,6 +8462,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7392,12 +8529,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7456,12 +8602,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7520,9 +8675,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7584,6 +8748,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7593,6 +8760,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7654,6 +8830,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -7663,6 +8842,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7712,12 +8900,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7776,12 +8973,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7840,9 +9046,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7901,12 +9116,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -7965,12 +9189,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8026,9 +9259,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8087,12 +9329,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8151,12 +9402,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8215,9 +9475,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8276,12 +9545,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8343,6 +9624,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8352,6 +9636,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8410,12 +9703,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8477,6 +9779,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8486,6 +9791,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8547,6 +9861,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8556,6 +9873,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8611,9 +9937,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8666,12 +10001,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8730,12 +10074,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8794,6 +10147,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8803,6 +10159,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8855,12 +10220,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8919,12 +10293,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -8986,6 +10369,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -8995,6 +10381,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9053,12 +10448,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9123,6 +10527,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9132,6 +10539,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9193,6 +10609,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9202,6 +10621,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9260,9 +10688,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9321,149 +10758,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/digitaltwins/arm-digitaltwins: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.0 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/digitaltwins/digital-twins-core: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.0.0 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - '@azure/core-tracing': - specifier: ^1.2.0 - version: link:../../core/core-tracing - '@azure/core-util': - specifier: ^1.11.0 - version: link:../../core/core-util - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/eslint-plugin-azure-sdk': - specifier: workspace:^ - version: link:../../../common/tools/eslint-plugin-azure-sdk - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@types/node': + rimraf: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - eslint: + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 9.37.0 - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9471,7 +10777,7 @@ importers: specifier: catalog:testing version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - sdk/dns/arm-dns: + sdk/digitaltwins/arm-digitaltwins: dependencies: '@azure/abort-controller': specifier: ^2.1.2 @@ -9483,7 +10789,7 @@ importers: specifier: ^1.9.2 version: link:../../core/core-client '@azure/core-lro': - specifier: ^2.5.4 + specifier: ^2.5.0 version: 2.7.2 '@azure/core-paging': specifier: ^1.6.2 @@ -9522,12 +10828,182 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/digitaltwins/digital-twins-core: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.0.0 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + '@azure/core-tracing': + specifier: ^1.2.0 + version: link:../../core/core-tracing + '@azure/core-util': + specifier: ^1.11.0 + version: link:../../core/core-util + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/eslint-plugin-azure-sdk': + specifier: workspace:^ + version: link:../../../common/tools/eslint-plugin-azure-sdk + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + eslint: + specifier: 'catalog:' + version: 9.37.0 + playwright: + specifier: catalog:testing + version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/dns/arm-dns: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9586,12 +11062,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9650,12 +11135,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9717,6 +11211,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9726,6 +11223,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9784,6 +11290,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9793,6 +11302,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9851,9 +11369,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9915,6 +11442,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -9924,6 +11454,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -9982,12 +11521,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10040,6 +11588,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10049,6 +11600,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10104,6 +11664,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10113,6 +11676,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10165,12 +11737,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10229,12 +11810,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10293,12 +11883,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10351,6 +11950,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10360,6 +11962,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10418,12 +12029,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10485,6 +12105,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10494,6 +12117,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10558,6 +12190,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -10567,6 +12202,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10598,9 +12242,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10644,12 +12300,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10711,12 +12379,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10775,12 +12452,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10887,6 +12573,9 @@ importers: copyfiles: specifier: ^2.4.1 version: 2.4.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.4.0 version: 4.4.3 @@ -10905,6 +12594,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + tsx: + specifier: 'catalog:' + version: 4.20.6 typescript: specifier: 'catalog:' version: 5.9.3 @@ -10945,9 +12646,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11024,6 +12737,9 @@ importers: chai-as-promised: specifier: catalog:testing version: 8.0.2(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.3.6 version: 4.4.3 @@ -11036,12 +12752,21 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 process: specifier: ^0.11.10 version: 0.11.10 + rimraf: + specifier: 'catalog:' + version: 6.0.1 stream: specifier: ^0.0.3 version: 0.0.3 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11112,6 +12837,9 @@ importers: chai-as-promised: specifier: catalog:testing version: 8.0.2(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.1.1 version: 4.4.3 @@ -11124,12 +12852,21 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 process: specifier: ^0.11.10 version: 0.11.10 + rimraf: + specifier: 'catalog:' + version: 6.0.1 stream: specifier: ^0.0.3 version: 0.0.3 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11161,6 +12898,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11170,6 +12910,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11228,12 +12977,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11295,6 +13053,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11307,6 +13068,12 @@ importers: prettier: specifier: ^3.2.5 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11365,6 +13132,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11377,6 +13147,12 @@ importers: prettier: specifier: ^3.2.5 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11429,9 +13205,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11484,12 +13269,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11563,6 +13357,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11578,9 +13375,15 @@ importers: prettier: specifier: ^3.3.3 version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 rollup: specifier: ^4.0.0 version: 4.52.4 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11615,9 +13418,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11673,134 +13488,161 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/graphservices/arm-graphservices: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.3 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/graphservices/arm-graphservices: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.3 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/guestconfiguration/arm-guestconfiguration: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.18.2 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/guestconfiguration/arm-guestconfiguration: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.18.2 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11859,9 +13701,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11923,6 +13774,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -11932,6 +13786,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -11990,12 +13853,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12054,12 +13926,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12118,9 +13999,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12179,12 +14069,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12246,6 +14145,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12255,6 +14157,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12316,6 +14227,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12325,6 +14239,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12386,6 +14309,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12395,6 +14321,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12456,6 +14391,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12465,6 +14403,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12526,6 +14473,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12535,6 +14485,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12593,12 +14552,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12660,6 +14628,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12669,6 +14640,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12727,12 +14707,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12791,12 +14780,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12855,12 +14856,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -12937,6 +14947,9 @@ importers: assertion-error: specifier: ^2.0.1 version: 2.0.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -12952,6 +14965,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13010,9 +15032,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13068,6 +15102,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13077,6 +15114,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13111,9 +15157,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13160,6 +15218,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13169,6 +15230,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13227,12 +15297,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13294,6 +15373,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13303,6 +15385,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13361,12 +15452,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13422,6 +15522,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13431,6 +15534,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13483,12 +15595,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13547,9 +15671,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13611,6 +15744,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13620,6 +15756,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13678,12 +15823,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13742,12 +15896,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13809,6 +15972,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -13818,6 +15984,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13876,12 +16051,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -13940,12 +16124,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14019,6 +16212,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14028,6 +16224,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14104,6 +16309,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14113,6 +16321,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14147,9 +16364,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14199,12 +16428,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14278,6 +16519,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14287,6 +16531,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14321,9 +16574,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14391,6 +16656,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14400,6 +16668,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14434,9 +16711,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14492,12 +16781,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14556,12 +16854,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14614,12 +16921,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14678,12 +16994,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14742,12 +17067,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14809,6 +17143,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -14818,6 +17155,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14876,12 +17222,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -14940,12 +17295,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15007,6 +17371,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15016,6 +17383,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15074,12 +17450,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15141,6 +17526,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15150,6 +17538,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15208,12 +17605,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15275,6 +17681,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15284,6 +17693,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15339,9 +17757,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15400,12 +17827,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15443,9 +17879,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15513,6 +17961,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -15522,6 +17973,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15571,12 +18031,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15629,9 +18101,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15684,12 +18165,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15748,12 +18238,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15806,9 +18305,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15867,12 +18375,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15931,9 +18448,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -15986,9 +18512,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16047,9 +18582,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16102,12 +18646,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16160,12 +18713,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16224,12 +18786,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16288,12 +18859,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16352,9 +18932,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16407,12 +18996,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16465,12 +19063,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16520,12 +19127,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16587,6 +19206,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16596,6 +19218,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16657,6 +19288,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16666,6 +19300,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16730,6 +19373,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16739,6 +19385,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16803,6 +19458,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16812,6 +19470,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16876,6 +19543,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -16885,6 +19555,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16943,9 +19622,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -16998,12 +19686,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17068,6 +19765,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17077,6 +19777,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17108,9 +19817,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17160,12 +19881,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17224,12 +19954,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17288,12 +20027,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17352,12 +20100,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17393,47 +20150,59 @@ importers: version: 2.8.1 devDependencies: '@azure-tools/test-credential': - specifier: ^2.0.0 + specifier: workspace:^ version: link:../../test-utils/test-credential '@azure-tools/test-recorder': - specifier: ^4.1.0 + specifier: workspace:^ version: link:../../test-utils/recorder '@azure-tools/test-utils-vitest': - specifier: ^1.0.0 - version: 1.0.0(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest '@azure/dev-tool': - specifier: ^1.0.0 + specifier: workspace:^ version: link:../../../common/tools/dev-tool '@azure/eslint-plugin-azure-sdk': - specifier: ^3.0.0 + specifier: workspace:^ version: link:../../../common/tools/eslint-plugin-azure-sdk '@azure/identity': - specifier: ^4.9.0 - version: link:../../identity/identity + specifier: catalog:internal + version: 4.11.1 '@types/node': - specifier: ^20.0.0 + specifier: 'catalog:' version: 20.19.21 '@vitest/browser': - specifier: ^3.0.9 - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) '@vitest/coverage-istanbul': - specifier: ^3.0.9 + specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: - specifier: ^16.0.0 + specifier: catalog:testing version: 16.6.1 eslint: - specifier: ^9.9.0 + specifier: 'catalog:' version: 9.37.0 playwright: - specifier: ^1.52.0 + specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: - specifier: ~5.8.2 - version: 5.8.3 + specifier: 'catalog:' + version: 5.9.3 vitest: - specifier: ^3.0.9 - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) sdk/mongodbatlas/arm-mongodbatlas: dependencies: @@ -17489,6 +20258,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17498,6 +20270,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17568,12 +20349,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17626,12 +20416,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17705,6 +20504,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17714,6 +20516,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17748,9 +20559,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17869,12 +20692,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -17954,6 +20789,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -17966,6 +20804,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18006,9 +20853,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18085,6 +20944,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18094,6 +20956,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18164,6 +21035,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18173,6 +21047,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18225,12 +21108,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18289,9 +21181,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18350,12 +21251,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18417,6 +21327,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18426,6 +21339,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18484,12 +21406,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18548,12 +21482,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18612,12 +21555,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18679,6 +21631,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -18688,6 +21643,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18746,12 +21710,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18810,9 +21783,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18871,12 +21853,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -18935,12 +21926,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19002,12 +22002,27 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 + eslint: + specifier: 'catalog:' + version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19069,6 +22084,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19078,6 +22096,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19136,9 +22163,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19200,6 +22236,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19209,6 +22248,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19258,6 +22306,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19267,6 +22318,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19325,6 +22385,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19337,6 +22400,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19398,12 +22470,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19462,9 +22543,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19526,6 +22616,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19535,6 +22628,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19593,131 +22695,158 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/paloaltonetworksngfw/arm-paloaltonetworksngfw: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.4 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/paloaltonetworksngfw/arm-paloaltonetworksngfw: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/peering/arm-peering: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/peering/arm-peering: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19779,6 +22908,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19788,6 +22920,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19849,6 +22990,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19858,6 +23002,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19919,6 +23072,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19928,6 +23084,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -19989,6 +23154,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -19998,6 +23166,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20035,9 +23212,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20087,12 +23276,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20148,12 +23349,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20206,12 +23419,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20270,12 +23492,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20328,12 +23559,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20389,6 +23629,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20398,6 +23641,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20456,9 +23708,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20517,12 +23778,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20581,12 +23851,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20645,9 +23924,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20706,12 +23994,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20773,6 +24070,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20782,6 +24082,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20843,6 +24152,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20852,6 +24164,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20910,9 +24231,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -20965,6 +24295,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -20974,6 +24307,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21029,6 +24371,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21038,6 +24383,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21096,6 +24450,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21105,6 +24462,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21166,6 +24532,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21175,6 +24544,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21230,6 +24608,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21239,6 +24620,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21297,12 +24687,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21370,6 +24769,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21379,6 +24781,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21437,12 +24848,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21501,12 +24924,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21568,12 +25000,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21635,6 +25076,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -21644,6 +25088,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21702,12 +25155,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21766,12 +25228,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21833,12 +25304,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21897,12 +25377,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -21961,12 +25450,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22025,12 +25523,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22089,12 +25596,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22147,9 +25663,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22202,12 +25727,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22266,12 +25800,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22324,12 +25867,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22388,12 +25940,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22452,12 +26013,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22513,6 +26083,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22522,6 +26095,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22580,12 +26162,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22644,12 +26235,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22708,6 +26308,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22717,6 +26320,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22787,6 +26399,9 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22796,12 +26411,21 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 process: specifier: ^0.11.10 version: 0.11.10 + rimraf: + specifier: 'catalog:' + version: 6.0.1 stream: specifier: ^0.0.3 version: 0.0.3 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22839,9 +26463,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22906,6 +26542,9 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -22915,6 +26554,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -22973,12 +26621,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23037,12 +26694,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23113,6 +26782,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -23122,6 +26794,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 type-plus: specifier: ^7.6.2 version: 7.6.2 @@ -23159,9 +26840,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23217,12 +26910,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23281,12 +26983,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23345,12 +27056,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23409,64 +27129,82 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - dotenv: - specifier: catalog:testing - version: 16.6.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 + dotenv: + specifier: catalog:testing + version: 16.6.1 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/serialconsole/arm-serialconsole: + dependencies: + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 - typescript: + rimraf: specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/serialconsole/arm-serialconsole: - dependencies: - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + version: 6.0.1 + tshy: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23519,12 +27257,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23583,12 +27330,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23710,6 +27466,9 @@ importers: chai-exclude: specifier: catalog:testing version: 3.0.1(chai@6.2.0) + cross-env: + specifier: 'catalog:' + version: 7.0.3 debug: specifier: ^4.1.1 version: 4.4.3 @@ -23728,6 +27487,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23765,9 +27533,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23823,12 +27603,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23893,6 +27682,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -23902,6 +27694,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -23963,6 +27764,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -23972,6 +27776,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24024,12 +27837,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24088,12 +27910,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24155,6 +27986,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24164,6 +27998,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24222,12 +28065,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24289,6 +28141,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24298,6 +28153,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24356,12 +28220,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24420,12 +28293,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24484,12 +28366,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24548,12 +28442,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24615,6 +28518,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24624,6 +28530,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24682,12 +28597,24 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -24746,12 +28673,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24837,6 +28773,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24846,6 +28785,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24919,6 +28867,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -24928,6 +28879,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -24962,9 +28922,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25017,12 +28989,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25105,6 +29089,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25114,6 +29101,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25145,9 +29141,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25227,6 +29235,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25236,6 +29247,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25267,9 +29287,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25307,6 +29339,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25316,6 +29351,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25389,6 +29433,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25398,6 +29445,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25462,6 +29518,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -25471,6 +29530,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25529,12 +29597,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25596,6 +29676,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -25605,6 +29688,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -25657,12 +29749,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25724,6 +29825,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -25733,6 +29837,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -25791,9 +29904,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25852,9 +29974,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -25913,73 +30044,91 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) - playwright: - specifier: catalog:testing - version: 1.56.0 - typescript: - specifier: 'catalog:' - version: 5.9.3 - vitest: - specifier: catalog:testing - version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) - - sdk/streamanalytics/arm-streamanalytics: - dependencies: - '@azure/abort-controller': - specifier: ^2.1.2 - version: link:../../core/abort-controller - '@azure/core-auth': - specifier: ^1.9.0 - version: link:../../core/core-auth - '@azure/core-client': - specifier: ^1.9.2 - version: link:../../core/core-client - '@azure/core-lro': - specifier: ^2.5.4 - version: 2.7.2 - '@azure/core-paging': - specifier: ^1.6.2 - version: link:../../core/core-paging - '@azure/core-rest-pipeline': - specifier: ^1.19.0 - version: link:../../core/core-rest-pipeline - tslib: - specifier: ^2.8.1 - version: 2.8.1 - devDependencies: - '@azure-tools/test-credential': - specifier: workspace:^ - version: link:../../test-utils/test-credential - '@azure-tools/test-recorder': - specifier: workspace:^ - version: link:../../test-utils/recorder - '@azure-tools/test-utils-vitest': - specifier: workspace:^ - version: link:../../test-utils/test-utils-vitest - '@azure/dev-tool': - specifier: workspace:^ - version: link:../../../common/tools/dev-tool - '@azure/identity': - specifier: catalog:internal - version: 4.11.1 - '@azure/logger': - specifier: ^1.1.4 - version: link:../../core/logger - '@types/node': + cross-env: + specifier: 'catalog:' + version: 7.0.3 + playwright: + specifier: catalog:testing + version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 + typescript: + specifier: 'catalog:' + version: 5.9.3 + vitest: + specifier: catalog:testing + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + + sdk/streamanalytics/arm-streamanalytics: + dependencies: + '@azure/abort-controller': + specifier: ^2.1.2 + version: link:../../core/abort-controller + '@azure/core-auth': + specifier: ^1.9.0 + version: link:../../core/core-auth + '@azure/core-client': + specifier: ^1.9.2 + version: link:../../core/core-client + '@azure/core-lro': + specifier: ^2.5.4 + version: 2.7.2 + '@azure/core-paging': + specifier: ^1.6.2 + version: link:../../core/core-paging + '@azure/core-rest-pipeline': + specifier: ^1.19.0 + version: link:../../core/core-rest-pipeline + tslib: + specifier: ^2.8.1 + version: 2.8.1 + devDependencies: + '@azure-tools/test-credential': + specifier: workspace:^ + version: link:../../test-utils/test-credential + '@azure-tools/test-recorder': + specifier: workspace:^ + version: link:../../test-utils/recorder + '@azure-tools/test-utils-vitest': + specifier: workspace:^ + version: link:../../test-utils/test-utils-vitest + '@azure/dev-tool': + specifier: workspace:^ + version: link:../../../common/tools/dev-tool + '@azure/identity': + specifier: catalog:internal + version: 4.11.1 + '@azure/logger': + specifier: ^1.1.4 + version: link:../../core/logger + '@types/node': + specifier: 'catalog:' + version: 20.19.21 + '@vitest/browser': + specifier: catalog:testing + version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) + '@vitest/coverage-istanbul': + specifier: catalog:testing + version: 3.2.4(vitest@3.2.4) + cross-env: specifier: 'catalog:' - version: 20.19.21 - '@vitest/browser': - specifier: catalog:testing - version: 3.2.4(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(playwright@1.56.0)(vite@7.1.9(@types/node@20.19.21)(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1))(vitest@3.2.4) - '@vitest/coverage-istanbul': - specifier: catalog:testing - version: 3.2.4(vitest@3.2.4) + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26038,9 +30187,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26093,12 +30251,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26157,12 +30324,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26221,12 +30397,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26282,6 +30467,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26291,6 +30479,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26346,6 +30543,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26355,6 +30555,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26416,6 +30625,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26425,6 +30637,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26480,6 +30701,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26489,6 +30713,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26541,12 +30774,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26599,6 +30844,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26608,6 +30856,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26675,6 +30932,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26684,6 +30944,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26715,9 +30984,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26776,6 +31057,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26785,6 +31069,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26837,6 +31130,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -26846,6 +31142,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26883,9 +31188,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26935,9 +31252,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -26999,6 +31325,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27008,6 +31337,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27054,9 +31392,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27100,6 +31450,9 @@ importers: concurrently: specifier: ^9.2.1 version: 9.2.1 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 @@ -27109,6 +31462,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 tslib: specifier: 'catalog:' version: 2.8.1 @@ -27155,12 +31517,24 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27210,12 +31584,24 @@ importers: '@vitest/expect': specifier: catalog:testing version: 3.2.4 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27277,6 +31663,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27286,6 +31675,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27320,9 +31718,21 @@ importers: '@types/node': specifier: 'catalog:' version: 20.19.21 + cross-env: + specifier: 'catalog:' + version: 7.0.3 eslint: specifier: 'catalog:' version: 9.37.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27378,12 +31788,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27436,12 +31855,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27509,6 +31937,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27518,6 +31949,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27573,6 +32013,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27582,6 +32025,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27643,6 +32095,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27652,6 +32107,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27707,6 +32171,9 @@ importers: autorest: specifier: 'catalog:' version: 3.7.2 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -27716,6 +32183,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27771,9 +32247,18 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27832,12 +32317,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27896,12 +32390,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -27960,12 +32463,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28036,6 +32548,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28045,6 +32560,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28106,6 +32630,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28115,6 +32642,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28167,6 +32703,9 @@ importers: cpy-cli: specifier: ^6.0.0 version: 6.0.0 + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28179,9 +32718,18 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 protobufjs-cli: specifier: ^1.1.3 version: 1.1.3(protobufjs@7.5.4) + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28225,6 +32773,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28237,6 +32788,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28298,6 +32858,9 @@ importers: '@vitest/coverage-istanbul': specifier: ^3.0.9 version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: ^16.0.0 version: 16.6.1 @@ -28307,6 +32870,15 @@ importers: playwright: specifier: ^1.52.0 version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: ~5.8.2 version: 5.8.3 @@ -28365,12 +32937,21 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 playwright: specifier: catalog:testing version: 1.56.0 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28432,6 +33013,9 @@ importers: '@vitest/coverage-istanbul': specifier: catalog:testing version: 3.2.4(vitest@3.2.4) + cross-env: + specifier: 'catalog:' + version: 7.0.3 dotenv: specifier: catalog:testing version: 16.6.1 @@ -28441,6 +33025,15 @@ importers: playwright: specifier: catalog:testing version: 1.56.0 + prettier: + specifier: 'catalog:' + version: 3.6.2 + rimraf: + specifier: 'catalog:' + version: 6.0.1 + tshy: + specifier: 'catalog:' + version: 3.0.3 typescript: specifier: 'catalog:' version: 5.9.3 @@ -28608,14 +33201,14 @@ packages: resolution: {integrity: sha512-LNtl3xZNE40vE7+SIST+GYQX5cnnI1M65fXPi26l9XCdPakuQrz54lHv+qQQt1GG5JbqLfQk75iM7A6Y9O+2dQ==} engines: {node: '>=18.0'} - '@azure/identity@4.10.1': - resolution: {integrity: sha512-YM/z6RxRtFlXUH2egAYF/FDPes+MUE6ZoknjEdaq7ebJMMNUzn9zCJ3bd2ZZZlkP0r1xKa88kolhFH/FGV7JnA==} - engines: {node: '>=18.0.0'} - '@azure/identity@4.11.1': resolution: {integrity: sha512-0ZdsLRaOyLxtCYgyuqyWqGU5XQ9gGnjxgfoNTt1pvELGkkUFrMATABZFIq8gusM7N1qbqpVtwLOhk0d/3kacLg==} engines: {node: '>=20.0.0'} + '@azure/identity@4.12.0': + resolution: {integrity: sha512-6vuh2R3Cte6SD6azNalLCjIDoryGdcvDVEV7IDRPtm5lHX5ffkDlIalaoOp5YJU08e4ipjJENel20kSMDLAcug==} + engines: {node: '>=20.0.0'} + '@azure/keyvault-common@2.0.0': resolution: {integrity: sha512-wRLVaroQtOqfg60cxkzUkGKrKMsCP6uYXAOomOIysSMyt1/YM0eUn9LqieAWM8DLcU4+07Fio2YGpPeqUbpP9w==} engines: {node: '>=18.0.0'} @@ -33653,7 +38246,7 @@ snapshots: '@azure/app-configuration-provider@2.2.0': dependencies: '@azure/app-configuration': 1.9.0 - '@azure/identity': 4.11.1 + '@azure/identity': 4.12.0 '@azure/keyvault-secrets': 4.10.0 jsonc-parser: 3.3.1 transitivePeerDependencies: @@ -33970,7 +38563,7 @@ snapshots: long: 4.0.0 undici: 5.29.0 - '@azure/identity@4.10.1': + '@azure/identity@4.11.1': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 @@ -33986,7 +38579,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@azure/identity@4.11.1': + '@azure/identity@4.12.0': dependencies: '@azure/abort-controller': 2.1.2 '@azure/core-auth': 1.10.1 @@ -36201,7 +40794,7 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.8.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.21)(@vitest/browser@3.2.4)(jsdom@16.7.0)(msw@2.7.3(@types/node@20.19.21)(typescript@5.9.3))(terser@5.39.0)(tsx@4.20.6)(yaml@2.8.1) transitivePeerDependencies: - supports-color diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 384c486fca11..88b8f540191b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -22,7 +22,6 @@ catalog: autorest: latest cross-env: ^7.0.3 eslint: ^9.33.0 - mkdirp: ^3.0.1 prettier: ^3.6.2 rimraf: ^6.0.1 tshy: ^3.0.0 diff --git a/sdk/advisor/arm-advisor/package.json b/sdk/advisor/arm-advisor/package.json index 71ab4f97ec6f..6aa19e43001b 100644 --- a/sdk/advisor/arm-advisor/package.json +++ b/sdk/advisor/arm-advisor/package.json @@ -35,8 +35,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -54,11 +58,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "echo skipped", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/advisor/arm-advisor/samples/v3/javascript/README.md b/sdk/advisor/arm-advisor/samples/v3/javascript/README.md index 07e31a718dbe..adc2fa3140c2 100644 --- a/sdk/advisor/arm-advisor/samples/v3/javascript/README.md +++ b/sdk/advisor/arm-advisor/samples/v3/javascript/README.md @@ -50,7 +50,7 @@ node configurationsCreateInResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ADVISOR_SUBSCRIPTION_ID="" node configurationsCreateInResourceGroupSample.js +cross-env ADVISOR_SUBSCRIPTION_ID="" node configurationsCreateInResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/advisor/arm-advisor/samples/v3/typescript/README.md b/sdk/advisor/arm-advisor/samples/v3/typescript/README.md index f8ca07696e8f..1eb65331f827 100644 --- a/sdk/advisor/arm-advisor/samples/v3/typescript/README.md +++ b/sdk/advisor/arm-advisor/samples/v3/typescript/README.md @@ -62,7 +62,7 @@ node dist/configurationsCreateInResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ADVISOR_SUBSCRIPTION_ID="" node dist/configurationsCreateInResourceGroupSample.js +cross-env ADVISOR_SUBSCRIPTION_ID="" node dist/configurationsCreateInResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/agricultureplatform/arm-agricultureplatform/package.json b/sdk/agricultureplatform/arm-agricultureplatform/package.json index 745e680e0a6e..f2a70b88d9f6 100644 --- a/sdk/agricultureplatform/arm-agricultureplatform/package.json +++ b/sdk/agricultureplatform/arm-agricultureplatform/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md index 5a977f31bd6e..e0f4300e48f8 100644 --- a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md +++ b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node agriServiceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node agriServiceCreateOrUpdateSample.js +cross-env node agriServiceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md index cdab9ad0aacb..48dd33abe167 100644 --- a/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md +++ b/sdk/agricultureplatform/arm-agricultureplatform/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/agriServiceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/agriServiceCreateOrUpdateSample.js +cross-env node dist/agriServiceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/package.json b/sdk/agrifood/agrifood-farming-rest/package.json index dc4c5ef25ae3..74d9d82841f0 100644 --- a/sdk/agrifood/agrifood-farming-rest/package.json +++ b/sdk/agrifood/agrifood-farming-rest/package.json @@ -53,11 +53,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -89,9 +89,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md index e62347da8458..820469b6e9c0 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md index b0440cefa7f6..bb9e205a13e9 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md index 334cf6a0ab6d..728bf9eea68f 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md b/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md index f87b26b92fbf..67fd134ebaf0 100644 --- a/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md +++ b/sdk/agrifood/agrifood-farming-rest/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/deleteParty.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js +cross-env FARMBEATS_ENDPOINT="" node dist/deleteParty.js ``` ## Next Steps diff --git a/sdk/agrifood/arm-agrifood/package.json b/sdk/agrifood/arm-agrifood/package.json index 0db13e945249..890d8a965a4e 100644 --- a/sdk/agrifood/arm-agrifood/package.json +++ b/sdk/agrifood/arm-agrifood/package.json @@ -36,6 +36,9 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md b/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md index ffd2e67bf1f3..fba523bfcebf 100644 --- a/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md +++ b/sdk/agrifood/arm-agrifood/samples/v1-beta/javascript/README.md @@ -58,7 +58,7 @@ node extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node extensionsCreateSample.js +cross-env node extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md b/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md index 76ad8e7ecbea..54c0fde12f5f 100644 --- a/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md +++ b/sdk/agrifood/arm-agrifood/samples/v1-beta/typescript/README.md @@ -70,7 +70,7 @@ node dist/extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/extensionsCreateSample.js +cross-env node dist/extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/ai/ai-agents/package.json b/sdk/ai/ai-agents/package.json index 1d4fdf3ec67a..3a86dbfcde75 100644 --- a/sdk/ai/ai-agents/package.json +++ b/sdk/ai/ai-agents/package.json @@ -61,48 +61,52 @@ "@azure-rest/core-client": "^2.1.0", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.6.0", - "@azure/core-rest-pipeline": "^1.5.0", - "@azure/core-util": "^1.9.0", - "@azure/logger": "^1.1.4", "@azure/core-lro": "^3.0.0", - "tslib": "^2.6.2", "@azure/core-paging": "^1.5.0", + "@azure/core-rest-pipeline": "^1.5.0", "@azure/core-sse": "^2.1.3", - "@azure/core-tracing": "^1.2.0" + "@azure/core-tracing": "^1.2.0", + "@azure/core-util": "^1.9.0", + "@azure/logger": "^1.1.4", + "tslib": "^2.6.2" }, "devDependencies": { + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", - "@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.7", "@azure/monitor-opentelemetry": "^1.11.1", "@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.31", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.7", "@opentelemetry/api": "^1.9.0", "@opentelemetry/instrumentation": "0.57.0", "@opentelemetry/sdk-trace-node": "^1.30.0", + "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", - "@types/node": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", - "prettier": "^3.2.5", + "mkdirp": "^3.0.1", "playwright": "catalog:testing", + "prettier": "^3.2.5", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "copy:yaml": "copy tsp-location.yaml .\\src\\generated\\tsp-location.yaml", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && dev-tool run vendored rimraf ./src/generated/test && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "generate": "rimraf ./src/generated && mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && rimraf ./src/generated/test && rimraf ./src/generated/tsp-location.yaml", "generate-samples": "dev-tool samples publish -f", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md b/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md index 51994300d8ba..693811ede65b 100644 --- a/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md +++ b/sdk/ai/ai-agents/samples/v1-beta/javascript/README.md @@ -78,7 +78,7 @@ node codeInterpreterWithStreaming.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node codeInterpreterWithStreaming.js +cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node codeInterpreterWithStreaming.js ``` ## Next Steps diff --git a/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md b/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md index 3e2ff2e31af4..ac763892fac9 100644 --- a/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md +++ b/sdk/ai/ai-agents/samples/v1-beta/typescript/README.md @@ -90,7 +90,7 @@ node dist/codeInterpreterWithStreaming.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node dist/codeInterpreterWithStreaming.js +cross-env PROJECT_ENDPOINT="" MODEL_DEPLOYMENT_NAME="" node dist/codeInterpreterWithStreaming.js ``` ## Next Steps diff --git a/sdk/ai/ai-inference-rest/package.json b/sdk/ai/ai-inference-rest/package.json index 8a20e3e8a7e3..fff86fcdbda1 100644 --- a/sdk/ai/ai-inference-rest/package.json +++ b/sdk/ai/ai-inference-rest/package.json @@ -107,9 +107,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "mkdirp": "^3.0.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -117,12 +122,12 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "customize": "dev-tool customization apply -s ./generated -c ./src && npm run format", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && cp tsp-location.yaml ./src/generated && tsp-client update -o ./src/generated && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "generate": "rimraf ./src/generated && mkdirp ./src/generated && cp tsp-location.yaml ./src/generated && tsp-client update -o ./src/generated && rimraf ./src/generated/tsp-location.yaml", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", diff --git a/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md b/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md index 5379033a7be7..ed23f19b9bae 100644 --- a/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md +++ b/sdk/ai/ai-inference-rest/samples/v1-beta/javascript/README.md @@ -58,7 +58,7 @@ node audioDataChatCompletion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" KEY="" MODEL_NAME="" node audioDataChatCompletion.js +cross-env ENDPOINT="" KEY="" MODEL_NAME="" node audioDataChatCompletion.js ``` ## Next Steps diff --git a/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md b/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md index 2b8ba671c863..e7b08bf45529 100644 --- a/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md +++ b/sdk/ai/ai-inference-rest/samples/v1-beta/typescript/README.md @@ -70,7 +70,7 @@ node dist/audioDataChatCompletion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" KEY="" MODEL_NAME="" node dist/audioDataChatCompletion.js +cross-env ENDPOINT="" KEY="" MODEL_NAME="" node dist/audioDataChatCompletion.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/package.json b/sdk/ai/ai-projects/package.json index 0bd649b55d1e..caf9ace524f4 100644 --- a/sdk/ai/ai-projects/package.json +++ b/sdk/ai/ai-projects/package.json @@ -58,8 +58,9 @@ ] }, "dependencies": { - "@azure/ai-agents": "1.1.0", + "@azure-rest/core-client": "^2.1.0", "@azure/abort-controller": "^2.1.2", + "@azure/ai-agents": "1.1.0", "@azure/core-auth": "^1.6.0", "@azure/core-lro": "^3.0.0", "@azure/core-paging": "^1.5.0", @@ -69,42 +70,46 @@ "@azure/core-util": "^1.9.0", "@azure/logger": "^1.1.4", "@azure/storage-blob": "^12.26.0", - "@azure-rest/core-client": "^2.1.0", "openai": "^5.9.0", "tslib": "^2.6.2" }, "devDependencies": { + "@azure-rest/ai-inference": "^1.0.0-beta.6", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@azure/monitor-opentelemetry": "^1.14.0", "@azure/opentelemetry-instrumentation-azure-sdk": "1.0.0-beta.7", - "@azure-rest/ai-inference": "^1.0.0-beta.6", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@opentelemetry/api": "^1.9.0", "@opentelemetry/instrumentation": "^0.57.0", "@opentelemetry/sdk-trace-node": "^2.0.0", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "mkdirp": "^3.0.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "copy:yaml": "copy tsp-location.yaml .\\src\\generated\\tsp-location.yaml", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "generate": "dev-tool run vendored rimraf ./src/generated && dev-tool run vendored mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && dev-tool run vendored rimraf ./src/generated/test && dev-tool run vendored rimraf ./src/generated/tsp-location.yaml", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "generate": "rimraf ./src/generated && mkdirp ./src/generated && npm run copy:yaml && npm run tsp:update && rimraf ./src/generated/test && rimraf ./src/generated/tsp-location.yaml", "generate-samples": "dev-tool samples publish -f", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md b/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md index 018ded01827e..96ac396ed4d7 100644 --- a/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md +++ b/sdk/ai/ai-projects/samples/v1-beta/javascript/README.md @@ -58,7 +58,7 @@ node agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md b/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md index 996bba3ebe0c..fde24082588c 100644 --- a/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md +++ b/sdk/ai/ai-projects/samples/v1-beta/typescript/README.md @@ -70,7 +70,7 @@ node dist/agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/samples/v1/javascript/README.md b/sdk/ai/ai-projects/samples/v1/javascript/README.md index 42d1dca11973..dfbf18004e0a 100644 --- a/sdk/ai/ai-projects/samples/v1/javascript/README.md +++ b/sdk/ai/ai-projects/samples/v1/javascript/README.md @@ -53,7 +53,7 @@ node agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/ai/ai-projects/samples/v1/typescript/README.md b/sdk/ai/ai-projects/samples/v1/typescript/README.md index 841dba9edde5..0f30b06c9c08 100644 --- a/sdk/ai/ai-projects/samples/v1/typescript/README.md +++ b/sdk/ai/ai-projects/samples/v1/typescript/README.md @@ -65,7 +65,7 @@ node dist/agents\agentsBasics.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js +cross-env AZURE_AI_PROJECT_ENDPOINT_STRING="" node dist/agents\agentsBasics.js ``` ## Next Steps diff --git a/sdk/analysisservices/arm-analysisservices/package.json b/sdk/analysisservices/arm-analysisservices/package.json index 704eb32a1f10..0d506606095c 100644 --- a/sdk/analysisservices/arm-analysisservices/package.json +++ b/sdk/analysisservices/arm-analysisservices/package.json @@ -36,6 +36,9 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md b/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md index 0c334a6e3cdb..2912db4324ed 100644 --- a/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md +++ b/sdk/analysisservices/arm-analysisservices/samples/v4/javascript/README.md @@ -51,7 +51,7 @@ node serversCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node serversCheckNameAvailabilitySample.js +cross-env node serversCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md b/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md index 341c1478882e..3112bc534132 100644 --- a/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md +++ b/sdk/analysisservices/arm-analysisservices/samples/v4/typescript/README.md @@ -63,7 +63,7 @@ node dist/serversCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/serversCheckNameAvailabilitySample.js +cross-env node dist/serversCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/anomalydetector/ai-anomaly-detector-rest/package.json b/sdk/anomalydetector/ai-anomaly-detector-rest/package.json index 0180e8cdc540..70fa79858699 100644 --- a/sdk/anomalydetector/ai-anomaly-detector-rest/package.json +++ b/sdk/anomalydetector/ai-anomaly-detector-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,10 +69,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "csv-parse": "^6.0.0", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md index 3edbd0178c7b..62dcebfb4ef4 100644 --- a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md +++ b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/javascript/README.md @@ -40,7 +40,7 @@ node sample_detect_change_point.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node sample_detect_change_point.js +cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node sample_detect_change_point.js ``` ## Next Steps diff --git a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md index 3efc4a9929c4..7166c0fe5375 100644 --- a/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md +++ b/sdk/anomalydetector/ai-anomaly-detector-rest/samples/v1-beta/typescript/README.md @@ -52,7 +52,7 @@ node dist/sample_detect_change_point.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node dist/sample_detect_change_point.js +cross-env ANOMALY_DETECTOR_API_KEY="" ANOMALY_DETECTOR_ENDPOINT="" node dist/sample_detect_change_point.js ``` ## Next Steps diff --git a/sdk/apicenter/arm-apicenter/package.json b/sdk/apicenter/arm-apicenter/package.json index b60301369c9b..898dd0451e1f 100644 --- a/sdk/apicenter/arm-apicenter/package.json +++ b/sdk/apicenter/arm-apicenter/package.json @@ -36,7 +36,10 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md b/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md index 9fab4efb1f19..ec72e07cff02 100644 --- a/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md +++ b/sdk/apicenter/arm-apicenter/samples/v1/javascript/README.md @@ -81,7 +81,7 @@ node apiDefinitionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node apiDefinitionsCreateOrUpdateSample.js +cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node apiDefinitionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md b/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md index 15b461ff0352..e139291f9ffa 100644 --- a/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md +++ b/sdk/apicenter/arm-apicenter/samples/v1/typescript/README.md @@ -93,7 +93,7 @@ node dist/apiDefinitionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node dist/apiDefinitionsCreateOrUpdateSample.js +cross-env APICENTER_SUBSCRIPTION_ID="" APICENTER_RESOURCE_GROUP="" node dist/apiDefinitionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json b/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json index c67ff3cc3d56..7ac0a97b9c86 100644 --- a/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json +++ b/sdk/apimanagement/api-management-custom-widgets-scaffolder/package.json @@ -33,10 +33,10 @@ "build": "npm run clean && dev-tool run build-package && npm run bundle:bin && dev-tool run extract-api", "build:samples": "echo Skipped.", "bundle:bin": "rollup -c rollup.config.bin.mjs 2>&1", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "extract-api": "tsc -p . && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test --ignore-pattern templates", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern templates", "pack": "pnpm pack 2>&1", @@ -54,10 +54,13 @@ "@types/yargs": "^17.0.32", "@types/yargs-parser": "^21.0.3", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "magic-string": "^0.30.8", "prettier": "^3.3.3", + "rimraf": "catalog:", "rollup": "^4.14.0", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/apimanagement/api-management-custom-widgets-tools/package.json b/sdk/apimanagement/api-management-custom-widgets-tools/package.json index be980819011e..14c31efa738d 100644 --- a/sdk/apimanagement/api-management-custom-widgets-tools/package.json +++ b/sdk/apimanagement/api-management-custom-widgets-tools/package.json @@ -29,10 +29,10 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "extract-api": "tsc -p . && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -47,8 +47,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/apimanagement/arm-apimanagement/package.json b/sdk/apimanagement/arm-apimanagement/package.json index 8f2699233b6a..9a126346d1fc 100644 --- a/sdk/apimanagement/arm-apimanagement/package.json +++ b/sdk/apimanagement/arm-apimanagement/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md b/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md index bf88a01ccea1..c749f5ba2a4f 100644 --- a/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md +++ b/sdk/apimanagement/arm-apimanagement/samples/v10/javascript/README.md @@ -649,7 +649,7 @@ node allPoliciesListByServiceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node allPoliciesListByServiceSample.js +cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node allPoliciesListByServiceSample.js ``` ## Next Steps diff --git a/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md b/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md index 29abff66ab79..0dfba4aba66c 100644 --- a/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md +++ b/sdk/apimanagement/arm-apimanagement/samples/v10/typescript/README.md @@ -661,7 +661,7 @@ node dist/allPoliciesListByServiceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node dist/allPoliciesListByServiceSample.js +cross-env APIMANAGEMENT_SUBSCRIPTION_ID="" APIMANAGEMENT_RESOURCE_GROUP="" node dist/allPoliciesListByServiceSample.js ``` ## Next Steps diff --git a/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json b/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json index d9a185d61def..d03b5a14ba67 100644 --- a/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json +++ b/sdk/appcomplianceautomation/arm-appcomplianceautomation/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md index 82080e6da93d..b64f1f07b8e5 100644 --- a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md +++ b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/javascript/README.md @@ -70,7 +70,7 @@ node evidenceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node evidenceCreateOrUpdateSample.js +cross-env node evidenceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md index 964e7105ffc9..5e1e58d2bc9b 100644 --- a/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md +++ b/sdk/appcomplianceautomation/arm-appcomplianceautomation/samples/v1/typescript/README.md @@ -82,7 +82,7 @@ node dist/evidenceCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/evidenceCreateOrUpdateSample.js +cross-env node dist/evidenceCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration-perf-tests/package.json b/sdk/appconfiguration/app-configuration-perf-tests/package.json index d8ee5447963b..34677ef9bbc1 100644 --- a/sdk/appconfiguration/app-configuration-perf-tests/package.json +++ b/sdk/appconfiguration/app-configuration-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/appconfiguration/app-configuration/package.json b/sdk/appconfiguration/app-configuration/package.json index 65ff51d38a2c..2f0da0567e14 100644 --- a/sdk/appconfiguration/app-configuration/package.json +++ b/sdk/appconfiguration/app-configuration/package.json @@ -28,11 +28,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/swagger.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix", @@ -79,20 +79,24 @@ "devDependencies": { "@azure-tools/test-credential": "workspace:^", "@azure-tools/test-recorder": "workspace:^", + "@azure/app-configuration-provider": "^2.2.0", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/eventgrid": "^5.0.0", "@azure/identity": "catalog:internal", "@azure/keyvault-secrets": "^4.2.0", - "@azure/app-configuration-provider": "^2.2.0", "@microsoft/feature-management": "^2.2.0", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md b/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md index 2690c1fc3c6e..02dc84642608 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1-beta/javascript/README.md @@ -59,7 +59,7 @@ node helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIG_CONNECTION_STRING="" node helloworld.js +cross-env APPCONFIG_CONNECTION_STRING="" node helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md b/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md index 5675b3c308d6..f92644647c38 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1-beta/typescript/README.md @@ -71,7 +71,7 @@ node dist/helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIG_CONNECTION_STRING="" node dist/helloworld.js +cross-env APPCONFIG_CONNECTION_STRING="" node dist/helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md b/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md index f54a01343cad..2653d31a253f 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1/javascript/README.md @@ -60,7 +60,7 @@ node helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZ_CONFIG_ENDPOINT="" node helloworld.js +cross-env AZ_CONFIG_ENDPOINT="" node helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md b/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md index 4175deea9b90..069d696380c6 100644 --- a/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md +++ b/sdk/appconfiguration/app-configuration/samples/v1/typescript/README.md @@ -72,7 +72,7 @@ node dist/helloworld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZ_CONFIG_ENDPOINT="" node dist/helloworld.js +cross-env AZ_CONFIG_ENDPOINT="" node dist/helloworld.js ``` ## Next Steps diff --git a/sdk/appconfiguration/arm-appconfiguration/package.json b/sdk/appconfiguration/arm-appconfiguration/package.json index d5547c172e6a..1cb1a2706bb6 100644 --- a/sdk/appconfiguration/arm-appconfiguration/package.json +++ b/sdk/appconfiguration/arm-appconfiguration/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md b/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md index 5f57f3e39d29..c04da7c852d1 100644 --- a/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md +++ b/sdk/appconfiguration/arm-appconfiguration/samples/v5/javascript/README.md @@ -65,7 +65,7 @@ node configurationStoresCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node configurationStoresCreateSample.js +cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node configurationStoresCreateSample.js ``` ## Next Steps diff --git a/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md b/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md index 6c4095e274b6..f577d62751ab 100644 --- a/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md +++ b/sdk/appconfiguration/arm-appconfiguration/samples/v5/typescript/README.md @@ -77,7 +77,7 @@ node dist/configurationStoresCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node dist/configurationStoresCreateSample.js +cross-env APPCONFIGURATION_SUBSCRIPTION_ID="" APPCONFIGURATION_RESOURCE_GROUP="" node dist/configurationStoresCreateSample.js ``` ## Next Steps diff --git a/sdk/appcontainers/arm-appcontainers/package.json b/sdk/appcontainers/arm-appcontainers/package.json index 721a37cb21de..2ba9a00cfc7b 100644 --- a/sdk/appcontainers/arm-appcontainers/package.json +++ b/sdk/appcontainers/arm-appcontainers/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -39,8 +39,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,21 +59,21 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "prepack": "npm run build", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", + "prepack": "npm run build", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", + "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "integration-test": "npm run integration-test:node && npm run integration-test:browser" + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md index 1d259ca62a0b..1ff9fe7603da 100644 --- a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md +++ b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/javascript/README.md @@ -216,7 +216,7 @@ node appResiliencyCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node appResiliencyCreateOrUpdateSample.js +cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node appResiliencyCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md index 21bf291214a2..3f44b4c036a6 100644 --- a/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md +++ b/sdk/appcontainers/arm-appcontainers/samples/v3-beta/typescript/README.md @@ -228,7 +228,7 @@ node dist/appResiliencyCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node dist/appResiliencyCreateOrUpdateSample.js +cross-env APPCONTAINERS_SUBSCRIPTION_ID="" APPCONTAINERS_RESOURCE_GROUP="" node dist/appResiliencyCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/applicationinsights/arm-appinsights/package.json b/sdk/applicationinsights/arm-appinsights/package.json index 9a14a6445959..476fba28edba 100644 --- a/sdk/applicationinsights/arm-appinsights/package.json +++ b/sdk/applicationinsights/arm-appinsights/package.json @@ -34,8 +34,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md index c390f1a115e6..305594dc964b 100644 --- a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md +++ b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/javascript/README.md @@ -113,7 +113,7 @@ node analyticsItemsDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node analyticsItemsDeleteSample.js +cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node analyticsItemsDeleteSample.js ``` ## Next Steps diff --git a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md index 649128ab0dca..4d9472c9d7c3 100644 --- a/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md +++ b/sdk/applicationinsights/arm-appinsights/samples/v5-beta/typescript/README.md @@ -125,7 +125,7 @@ node dist/analyticsItemsDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node dist/analyticsItemsDeleteSample.js +cross-env APPLICATIONINSIGHTS_SUBSCRIPTION_ID="" APPLICATIONINSIGHTS_RESOURCE_GROUP="" node dist/analyticsItemsDeleteSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json index 9872043bf50e..4bd591abd0b2 100644 --- a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json +++ b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index a28e4aafa2c1..4b177748107e 100644 --- a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -66,7 +66,7 @@ node appServicePlansCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServicePlansCreateOrUpdateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServicePlansCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 2effc92e7192..fde48cc555a3 100644 --- a/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/appservice/arm-appservice-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -78,7 +78,7 @@ node dist/appServicePlansCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServicePlansCreateOrUpdateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServicePlansCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-rest/package.json b/sdk/appservice/arm-appservice-rest/package.json index bacc57ef0a0a..966532d35e2c 100644 --- a/sdk/appservice/arm-appservice-rest/package.json +++ b/sdk/appservice/arm-appservice-rest/package.json @@ -42,11 +42,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -78,9 +78,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md b/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md index b5f4aeb950f2..f3b0ef2c62b8 100644 --- a/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md +++ b/sdk/appservice/arm-appservice-rest/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTION_ID="" node appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js +cross-env SUBSCRIPTION_ID="" node appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md b/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md index 73eced6786c3..24e3674a73d1 100644 --- a/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md +++ b/sdk/appservice/arm-appservice-rest/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTION_ID="" node dist/appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js +cross-env SUBSCRIPTION_ID="" node dist/appServiceEnvironmentsGetInboundNetworkDependenciesEndpointsSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice/package.json b/sdk/appservice/arm-appservice/package.json index 5a7f296ca056..b186ca965607 100644 --- a/sdk/appservice/arm-appservice/package.json +++ b/sdk/appservice/arm-appservice/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/appservice/arm-appservice/samples/v17/javascript/README.md b/sdk/appservice/arm-appservice/samples/v17/javascript/README.md index 7c9803ca9a3f..caaf0b147a10 100644 --- a/sdk/appservice/arm-appservice/samples/v17/javascript/README.md +++ b/sdk/appservice/arm-appservice/samples/v17/javascript/README.md @@ -383,7 +383,7 @@ node appServiceCertificateOrdersCreateOrUpdateCertificateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServiceCertificateOrdersCreateOrUpdateCertificateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node appServiceCertificateOrdersCreateOrUpdateCertificateSample.js ``` ## Next Steps diff --git a/sdk/appservice/arm-appservice/samples/v17/typescript/README.md b/sdk/appservice/arm-appservice/samples/v17/typescript/README.md index c9d371675635..d6fe838ffb8a 100644 --- a/sdk/appservice/arm-appservice/samples/v17/typescript/README.md +++ b/sdk/appservice/arm-appservice/samples/v17/typescript/README.md @@ -395,7 +395,7 @@ node dist/appServiceCertificateOrdersCreateOrUpdateCertificateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServiceCertificateOrdersCreateOrUpdateCertificateSample.js +cross-env APPSERVICE_SUBSCRIPTION_ID="" APPSERVICE_RESOURCE_GROUP="" node dist/appServiceCertificateOrdersCreateOrUpdateCertificateSample.js ``` ## Next Steps diff --git a/sdk/astro/arm-astro/package.json b/sdk/astro/arm-astro/package.json index 500b1a95dde8..66d4a0b6ed7f 100644 --- a/sdk/astro/arm-astro/package.json +++ b/sdk/astro/arm-astro/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md b/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md index 6fae26fb5cd2..ec889bd254c7 100644 --- a/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md +++ b/sdk/astro/arm-astro/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ASTRO_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env ASTRO_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md b/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md index 28cc738a80af..fdad6e2f16f1 100644 --- a/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md +++ b/sdk/astro/arm-astro/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ASTRO_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env ASTRO_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/attestation/arm-attestation/package.json b/sdk/attestation/arm-attestation/package.json index be784c200723..8c3471e77abb 100644 --- a/sdk/attestation/arm-attestation/package.json +++ b/sdk/attestation/arm-attestation/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/attestation/arm-attestation/samples/v2/javascript/README.md b/sdk/attestation/arm-attestation/samples/v2/javascript/README.md index a658917bdb4a..e73a480c3b0b 100644 --- a/sdk/attestation/arm-attestation/samples/v2/javascript/README.md +++ b/sdk/attestation/arm-attestation/samples/v2/javascript/README.md @@ -49,7 +49,7 @@ node attestationProvidersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node attestationProvidersCreateSample.js +cross-env node attestationProvidersCreateSample.js ``` ## Next Steps diff --git a/sdk/attestation/arm-attestation/samples/v2/typescript/README.md b/sdk/attestation/arm-attestation/samples/v2/typescript/README.md index 45dc89a8c68a..1102332da8a7 100644 --- a/sdk/attestation/arm-attestation/samples/v2/typescript/README.md +++ b/sdk/attestation/arm-attestation/samples/v2/typescript/README.md @@ -61,7 +61,7 @@ node dist/attestationProvidersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/attestationProvidersCreateSample.js +cross-env node dist/attestationProvidersCreateSample.js ``` ## Next Steps diff --git a/sdk/attestation/attestation/package.json b/sdk/attestation/attestation/package.json index 4e13b0a85af7..72b435856f06 100644 --- a/sdk/attestation/attestation/package.json +++ b/sdk/attestation/attestation/package.json @@ -23,11 +23,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:nodebrowser": "dev-tool run build-test", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -82,10 +82,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "buffer": "^6.0.0", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "safe-buffer": "^5.2.1", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json index c49230e32b22..696dbb6c46a0 100644 --- a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json +++ b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md index 5086a26c3657..c3c75f7233b5 100644 --- a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md +++ b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/javascript/README.md @@ -56,7 +56,7 @@ node globalAdministratorElevateAccessSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node globalAdministratorElevateAccessSample.js +cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node globalAdministratorElevateAccessSample.js ``` ## Next Steps diff --git a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md index 0748c568529f..33d1d403ecfa 100644 --- a/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md +++ b/sdk/authorization/arm-authorization-profile-2020-09-01-hybrid/samples/v3/typescript/README.md @@ -68,7 +68,7 @@ node dist/globalAdministratorElevateAccessSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node dist/globalAdministratorElevateAccessSample.js +cross-env AUTHORIZATION_SUBSCRIPTION_ID="" node dist/globalAdministratorElevateAccessSample.js ``` ## Next Steps diff --git a/sdk/authorization/arm-authorization/package.json b/sdk/authorization/arm-authorization/package.json index 46f45825bc5e..307121465ac1 100644 --- a/sdk/authorization/arm-authorization/package.json +++ b/sdk/authorization/arm-authorization/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md b/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md index af81da7c7fb7..edeac3b89b14 100644 --- a/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md +++ b/sdk/authorization/arm-authorization/samples/v10-beta/javascript/README.md @@ -135,7 +135,7 @@ node accessReviewInstanceAcceptRecommendationsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node accessReviewInstanceAcceptRecommendationsSample.js +cross-env node accessReviewInstanceAcceptRecommendationsSample.js ``` ## Next Steps diff --git a/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md b/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md index 6067ea9f13e2..e0101539fa7d 100644 --- a/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md +++ b/sdk/authorization/arm-authorization/samples/v10-beta/typescript/README.md @@ -147,7 +147,7 @@ node dist/accessReviewInstanceAcceptRecommendationsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/accessReviewInstanceAcceptRecommendationsSample.js +cross-env node dist/accessReviewInstanceAcceptRecommendationsSample.js ``` ## Next Steps diff --git a/sdk/automanage/arm-automanage/package.json b/sdk/automanage/arm-automanage/package.json index 5fefcb373c2a..464747bc16fe 100644 --- a/sdk/automanage/arm-automanage/package.json +++ b/sdk/automanage/arm-automanage/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/automanage/arm-automanage/samples/v1/javascript/README.md b/sdk/automanage/arm-automanage/samples/v1/javascript/README.md index 84e8f2bbd738..4cc53974dcd9 100644 --- a/sdk/automanage/arm-automanage/samples/v1/javascript/README.md +++ b/sdk/automanage/arm-automanage/samples/v1/javascript/README.md @@ -73,7 +73,7 @@ node bestPracticesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node bestPracticesGetSample.js +cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node bestPracticesGetSample.js ``` ## Next Steps diff --git a/sdk/automanage/arm-automanage/samples/v1/typescript/README.md b/sdk/automanage/arm-automanage/samples/v1/typescript/README.md index debe99654480..9bfcec7a7559 100644 --- a/sdk/automanage/arm-automanage/samples/v1/typescript/README.md +++ b/sdk/automanage/arm-automanage/samples/v1/typescript/README.md @@ -85,7 +85,7 @@ node dist/bestPracticesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node dist/bestPracticesGetSample.js +cross-env AUTOMANAGE_SUBSCRIPTION_ID="" node dist/bestPracticesGetSample.js ``` ## Next Steps diff --git a/sdk/automation/arm-automation/package.json b/sdk/automation/arm-automation/package.json index f25ce5eb5778..77a0527b1a2e 100644 --- a/sdk/automation/arm-automation/package.json +++ b/sdk/automation/arm-automation/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md b/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md index af65bfc3c2e1..35dcaff31e32 100644 --- a/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md +++ b/sdk/automation/arm-automation/samples/v11-beta/javascript/README.md @@ -192,7 +192,7 @@ node activityGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node activityGetSample.js +cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node activityGetSample.js ``` ## Next Steps diff --git a/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md b/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md index 73e32c7af39d..9285cb5c954d 100644 --- a/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md +++ b/sdk/automation/arm-automation/samples/v11-beta/typescript/README.md @@ -204,7 +204,7 @@ node dist/activityGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node dist/activityGetSample.js +cross-env AUTOMATION_SUBSCRIPTION_ID="" AUTOMATION_RESOURCE_GROUP="" node dist/activityGetSample.js ``` ## Next Steps diff --git a/sdk/avs/arm-avs/package.json b/sdk/avs/arm-avs/package.json index ef2dc02ebb59..4470f51dd828 100644 --- a/sdk/avs/arm-avs/package.json +++ b/sdk/avs/arm-avs/package.json @@ -99,20 +99,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/avs/arm-avs/samples/v7/javascript/README.md b/sdk/avs/arm-avs/samples/v7/javascript/README.md index d7fc274c70d4..70f71b7f75a7 100644 --- a/sdk/avs/arm-avs/samples/v7/javascript/README.md +++ b/sdk/avs/arm-avs/samples/v7/javascript/README.md @@ -148,7 +148,7 @@ node addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node addonsCreateOrUpdateSample.js +cross-env node addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/avs/arm-avs/samples/v7/typescript/README.md b/sdk/avs/arm-avs/samples/v7/typescript/README.md index 5e17fa4e2ad2..1d7f46d37178 100644 --- a/sdk/avs/arm-avs/samples/v7/typescript/README.md +++ b/sdk/avs/arm-avs/samples/v7/typescript/README.md @@ -160,7 +160,7 @@ node dist/addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/addonsCreateOrUpdateSample.js +cross-env node dist/addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json b/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json index 86e92cd9f922..ffee8b2eac4e 100644 --- a/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json +++ b/sdk/azureadexternalidentities/arm-azureadexternalidentities/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md index 2dfde43775cc..fc3320355ddb 100644 --- a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md +++ b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node b2CTenantsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node b2CTenantsCheckNameAvailabilitySample.js +cross-env node b2CTenantsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md index d75ccc558134..5d7468b3cf70 100644 --- a/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md +++ b/sdk/azureadexternalidentities/arm-azureadexternalidentities/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/b2CTenantsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/b2CTenantsCheckNameAvailabilitySample.js +cross-env node dist/b2CTenantsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/azurestack/arm-azurestack/package.json b/sdk/azurestack/arm-azurestack/package.json index 2784f79c1ad1..22237e583fd4 100644 --- a/sdk/azurestack/arm-azurestack/package.json +++ b/sdk/azurestack/arm-azurestack/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md b/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md index 3789b9e1c76f..97e3e92dfdab 100644 --- a/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md +++ b/sdk/azurestack/arm-azurestack/samples/v3-beta/javascript/README.md @@ -63,7 +63,7 @@ node cloudManifestFileGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node cloudManifestFileGetSample.js +cross-env node cloudManifestFileGetSample.js ``` ## Next Steps diff --git a/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md b/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md index 731fecb2add7..3181685e0b74 100644 --- a/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md +++ b/sdk/azurestack/arm-azurestack/samples/v3-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/cloudManifestFileGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/cloudManifestFileGetSample.js +cross-env node dist/cloudManifestFileGetSample.js ``` ## Next Steps diff --git a/sdk/azurestackhci/arm-azurestackhci/package.json b/sdk/azurestackhci/arm-azurestackhci/package.json index 672eb9c25450..daad6702f93c 100644 --- a/sdk/azurestackhci/arm-azurestackhci/package.json +++ b/sdk/azurestackhci/arm-azurestackhci/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md index cd6ddce88350..41af0cfedefe 100644 --- a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md +++ b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/javascript/README.md @@ -96,7 +96,7 @@ node arcSettingsConsentAndInstallDefaultExtensionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node arcSettingsConsentAndInstallDefaultExtensionsSample.js +cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node arcSettingsConsentAndInstallDefaultExtensionsSample.js ``` ## Next Steps diff --git a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md index c85e5c6b47eb..7786710542c4 100644 --- a/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md +++ b/sdk/azurestackhci/arm-azurestackhci/samples/v4-beta/typescript/README.md @@ -108,7 +108,7 @@ node dist/arcSettingsConsentAndInstallDefaultExtensionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node dist/arcSettingsConsentAndInstallDefaultExtensionsSample.js +cross-env AZURESTACKHCI_SUBSCRIPTION_ID="" AZURESTACKHCI_RESOURCE_GROUP="" node dist/arcSettingsConsentAndInstallDefaultExtensionsSample.js ``` ## Next Steps diff --git a/sdk/azurestackhcivm/arm-azurestackhcivm/package.json b/sdk/azurestackhcivm/arm-azurestackhcivm/package.json index d6ffb1ffe4d1..0895b9590504 100644 --- a/sdk/azurestackhcivm/arm-azurestackhcivm/package.json +++ b/sdk/azurestackhcivm/arm-azurestackhcivm/package.json @@ -72,12 +72,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -89,29 +89,33 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md index c0f52c12339e..49efb97016ef 100644 --- a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md +++ b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/javascript/README.md @@ -100,7 +100,7 @@ node attestationStatusesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node attestationStatusesGetSample.js +cross-env node attestationStatusesGetSample.js ``` ## Next Steps diff --git a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md index 4cce3085b275..01284a96fd75 100644 --- a/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md +++ b/sdk/azurestackhcivm/arm-azurestackhcivm/samples/v1-beta/typescript/README.md @@ -112,7 +112,7 @@ node dist/attestationStatusesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/attestationStatusesGetSample.js +cross-env node dist/attestationStatusesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json index 6ec28ae374bc..5b935a787151 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md index 98e51f6ad842..3db2889881c2 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/javascript/README.md @@ -50,7 +50,7 @@ node azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md index 4db2bc1162a9..576616f70f51 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1-beta/typescript/README.md @@ -62,7 +62,7 @@ node dist/azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md index 55972ec0bb61..537aa934d8bd 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/javascript/README.md @@ -41,7 +41,7 @@ node azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md index cf2223715d1d..c77aa67fecac 100644 --- a/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md +++ b/sdk/baremetalinfrastructure/arm-baremetalinfrastructure/samples/v1/typescript/README.md @@ -53,7 +53,7 @@ node dist/azureBareMetalInstancesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js +cross-env BAREMETALINFRASTRUCTURE_SUBSCRIPTION_ID="" BAREMETALINFRASTRUCTURE_RESOURCE_GROUP="" node dist/azureBareMetalInstancesGetSample.js ``` ## Next Steps diff --git a/sdk/batch/arm-batch/package.json b/sdk/batch/arm-batch/package.json index 9a45eabf59ad..469575e88d37 100644 --- a/sdk/batch/arm-batch/package.json +++ b/sdk/batch/arm-batch/package.json @@ -39,8 +39,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/batch/arm-batch/samples/v10/javascript/README.md b/sdk/batch/arm-batch/samples/v10/javascript/README.md index 4c7c67de2045..19079dde5356 100644 --- a/sdk/batch/arm-batch/samples/v10/javascript/README.md +++ b/sdk/batch/arm-batch/samples/v10/javascript/README.md @@ -84,7 +84,7 @@ node applicationCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node applicationCreateSample.js +cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node applicationCreateSample.js ``` ## Next Steps diff --git a/sdk/batch/arm-batch/samples/v10/typescript/README.md b/sdk/batch/arm-batch/samples/v10/typescript/README.md index 695b79ad363f..9bc16d7b2a46 100644 --- a/sdk/batch/arm-batch/samples/v10/typescript/README.md +++ b/sdk/batch/arm-batch/samples/v10/typescript/README.md @@ -96,7 +96,7 @@ node dist/applicationCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node dist/applicationCreateSample.js +cross-env BATCH_SUBSCRIPTION_ID="" BATCH_RESOURCE_GROUP="" node dist/applicationCreateSample.js ``` ## Next Steps diff --git a/sdk/batch/batch-rest/package.json b/sdk/batch/batch-rest/package.json index 92774eddc375..450bf43d938d 100644 --- a/sdk/batch/batch-rest/package.json +++ b/sdk/batch/batch-rest/package.json @@ -59,8 +59,8 @@ "@azure/core-auth": "^1.6.0", "@azure/core-rest-pipeline": "^1.5.0", "@azure/logger": "^1.0.0", - "tslib": "^2.6.2", - "moment": "~2.30.1" + "moment": "~2.30.1", + "tslib": "^2.6.2" }, "devDependencies": { "@azure-tools/test-credential": "workspace:^", @@ -72,21 +72,25 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "moment": "^2.30.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && npm run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md b/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md index 10603d1c2152..fbd63575bdd8 100644 --- a/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md +++ b/sdk/batch/batch-rest/samples/v1-beta/javascript/README.md @@ -37,7 +37,7 @@ node quick-start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_ACCOUNT_ENDPOINT="" node quick-start.js +cross-env BATCH_ACCOUNT_ENDPOINT="" node quick-start.js ``` ## Next Steps diff --git a/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md b/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md index dab491c516a6..d2ece55c87ae 100644 --- a/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md +++ b/sdk/batch/batch-rest/samples/v1-beta/typescript/README.md @@ -49,7 +49,7 @@ node dist/quick-start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BATCH_ACCOUNT_ENDPOINT="" node dist/quick-start.js +cross-env BATCH_ACCOUNT_ENDPOINT="" node dist/quick-start.js ``` ## Next Steps diff --git a/sdk/billing/arm-billing/package.json b/sdk/billing/arm-billing/package.json index 5c3e444b226d..5714c2aa5156 100644 --- a/sdk/billing/arm-billing/package.json +++ b/sdk/billing/arm-billing/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/billing/arm-billing/samples/v5/javascript/README.md b/sdk/billing/arm-billing/samples/v5/javascript/README.md index d6683f5a6e2a..6d068d8a955e 100644 --- a/sdk/billing/arm-billing/samples/v5/javascript/README.md +++ b/sdk/billing/arm-billing/samples/v5/javascript/README.md @@ -224,7 +224,7 @@ node addressValidateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node addressValidateSample.js +cross-env node addressValidateSample.js ``` ## Next Steps diff --git a/sdk/billing/arm-billing/samples/v5/typescript/README.md b/sdk/billing/arm-billing/samples/v5/typescript/README.md index 0b398979a324..9e589c61d908 100644 --- a/sdk/billing/arm-billing/samples/v5/typescript/README.md +++ b/sdk/billing/arm-billing/samples/v5/typescript/README.md @@ -236,7 +236,7 @@ node dist/addressValidateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/addressValidateSample.js +cross-env node dist/addressValidateSample.js ``` ## Next Steps diff --git a/sdk/billingbenefits/arm-billingbenefits/package.json b/sdk/billingbenefits/arm-billingbenefits/package.json index d0f8e48658dd..0e72b1bf396e 100644 --- a/sdk/billingbenefits/arm-billingbenefits/package.json +++ b/sdk/billingbenefits/arm-billingbenefits/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md b/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md index 9d75d25cdbb7..1b5480ae0627 100644 --- a/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md +++ b/sdk/billingbenefits/arm-billingbenefits/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md b/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md index 2466a1375967..bb9dc5c909f1 100644 --- a/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md +++ b/sdk/billingbenefits/arm-billingbenefits/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/botservice/arm-botservice/package.json b/sdk/botservice/arm-botservice/package.json index ce2d3f66b585..6736c8e4cebd 100644 --- a/sdk/botservice/arm-botservice/package.json +++ b/sdk/botservice/arm-botservice/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/botservice/arm-botservice/samples/v4/javascript/README.md b/sdk/botservice/arm-botservice/samples/v4/javascript/README.md index 5c9b67560235..59bb38c5b5d2 100644 --- a/sdk/botservice/arm-botservice/samples/v4/javascript/README.md +++ b/sdk/botservice/arm-botservice/samples/v4/javascript/README.md @@ -67,7 +67,7 @@ node botConnectionCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node botConnectionCreateSample.js +cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node botConnectionCreateSample.js ``` ## Next Steps diff --git a/sdk/botservice/arm-botservice/samples/v4/typescript/README.md b/sdk/botservice/arm-botservice/samples/v4/typescript/README.md index 36954050a68b..7b4ddd92188b 100644 --- a/sdk/botservice/arm-botservice/samples/v4/typescript/README.md +++ b/sdk/botservice/arm-botservice/samples/v4/typescript/README.md @@ -79,7 +79,7 @@ node dist/botConnectionCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node dist/botConnectionCreateSample.js +cross-env BOTSERVICE_SUBSCRIPTION_ID="" BOTSERVICE_RESOURCE_GROUP="" node dist/botConnectionCreateSample.js ``` ## Next Steps diff --git a/sdk/carbonoptimization/arm-carbonoptimization/package.json b/sdk/carbonoptimization/arm-carbonoptimization/package.json index b82bad0c25c8..41f354ccc69a 100644 --- a/sdk/carbonoptimization/arm-carbonoptimization/package.json +++ b/sdk/carbonoptimization/arm-carbonoptimization/package.json @@ -62,10 +62,10 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/core-auth": "^1.9.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -77,22 +77,26 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md index 3ad7aecf8021..2f25e51da379 100644 --- a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md +++ b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/javascript/README.md @@ -39,7 +39,7 @@ node carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js +cross-env node carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js ``` ## Next Steps diff --git a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md index f915cce3d4c8..a9acce8f710c 100644 --- a/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md +++ b/sdk/carbonoptimization/arm-carbonoptimization/samples/v1/typescript/README.md @@ -51,7 +51,7 @@ node dist/carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js +cross-env node dist/carbonServiceQueryCarbonEmissionDataAvailableDateRangeSample.js ``` ## Next Steps diff --git a/sdk/cdn/arm-cdn/package.json b/sdk/cdn/arm-cdn/package.json index e4758ea2a056..7440ed06a581 100644 --- a/sdk/cdn/arm-cdn/package.json +++ b/sdk/cdn/arm-cdn/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/README.md b/sdk/cdn/arm-cdn/samples/v9/javascript/README.md index e7836c474d20..11dd375f957d 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/README.md +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/README.md @@ -148,7 +148,7 @@ node afdCustomDomainsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node afdCustomDomainsCreateSample.js +cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node afdCustomDomainsCreateSample.js ``` ## Next Steps diff --git a/sdk/cdn/arm-cdn/samples/v9/typescript/README.md b/sdk/cdn/arm-cdn/samples/v9/typescript/README.md index 5b25e14df150..bd20b9aa3f3c 100644 --- a/sdk/cdn/arm-cdn/samples/v9/typescript/README.md +++ b/sdk/cdn/arm-cdn/samples/v9/typescript/README.md @@ -160,7 +160,7 @@ node dist/afdCustomDomainsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node dist/afdCustomDomainsCreateSample.js +cross-env CDN_SUBSCRIPTION_ID="" CDN_RESOURCE_GROUP="" node dist/afdCustomDomainsCreateSample.js ``` ## Next Steps diff --git a/sdk/changeanalysis/arm-changeanalysis/package.json b/sdk/changeanalysis/arm-changeanalysis/package.json index 80ace87032cc..472a21fd2dd9 100644 --- a/sdk/changeanalysis/arm-changeanalysis/package.json +++ b/sdk/changeanalysis/arm-changeanalysis/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md b/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md index 1d76fa7f812a..4f9fdf5a031e 100644 --- a/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md +++ b/sdk/changeanalysis/arm-changeanalysis/samples/v2/javascript/README.md @@ -40,7 +40,7 @@ node changesListChangesByResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node changesListChangesByResourceGroupSample.js +cross-env node changesListChangesByResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md b/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md index d29dbb707537..32d4d2ef099c 100644 --- a/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md +++ b/sdk/changeanalysis/arm-changeanalysis/samples/v2/typescript/README.md @@ -52,7 +52,7 @@ node dist/changesListChangesByResourceGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/changesListChangesByResourceGroupSample.js +cross-env node dist/changesListChangesByResourceGroupSample.js ``` ## Next Steps diff --git a/sdk/changes/arm-changes/package.json b/sdk/changes/arm-changes/package.json index 9e37071bb050..43ab53848ca2 100644 --- a/sdk/changes/arm-changes/package.json +++ b/sdk/changes/arm-changes/package.json @@ -35,7 +35,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/changes/arm-changes/samples/v1/javascript/README.md b/sdk/changes/arm-changes/samples/v1/javascript/README.md index 9e91b4c43a5c..4757bc82b23d 100644 --- a/sdk/changes/arm-changes/samples/v1/javascript/README.md +++ b/sdk/changes/arm-changes/samples/v1/javascript/README.md @@ -38,7 +38,7 @@ node changesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node changesGetSample.js +cross-env node changesGetSample.js ``` ## Next Steps diff --git a/sdk/changes/arm-changes/samples/v1/typescript/README.md b/sdk/changes/arm-changes/samples/v1/typescript/README.md index ce9712749104..3be4be8f34f5 100644 --- a/sdk/changes/arm-changes/samples/v1/typescript/README.md +++ b/sdk/changes/arm-changes/samples/v1/typescript/README.md @@ -50,7 +50,7 @@ node dist/changesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/changesGetSample.js +cross-env node dist/changesGetSample.js ``` ## Next Steps diff --git a/sdk/chaos/arm-chaos/package.json b/sdk/chaos/arm-chaos/package.json index 25ea7624d057..03466c74b97e 100644 --- a/sdk/chaos/arm-chaos/package.json +++ b/sdk/chaos/arm-chaos/package.json @@ -80,27 +80,31 @@ "@azure-tools/test-credential": "workspace:^", "@azure-tools/test-recorder": "workspace:^", "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/arm-cosmosdb": "16.0.0-beta.6", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", - "@azure/arm-cosmosdb": "16.0.0-beta.6", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/chaos/arm-chaos/samples/v2/javascript/README.md b/sdk/chaos/arm-chaos/samples/v2/javascript/README.md index c0dfa7498a5e..13ec4fa7203e 100644 --- a/sdk/chaos/arm-chaos/samples/v2/javascript/README.md +++ b/sdk/chaos/arm-chaos/samples/v2/javascript/README.md @@ -61,7 +61,7 @@ node capabilitiesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node capabilitiesCreateOrUpdateSample.js +cross-env node capabilitiesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/chaos/arm-chaos/samples/v2/typescript/README.md b/sdk/chaos/arm-chaos/samples/v2/typescript/README.md index 815f04b866e3..fdb6b5a91a0b 100644 --- a/sdk/chaos/arm-chaos/samples/v2/typescript/README.md +++ b/sdk/chaos/arm-chaos/samples/v2/typescript/README.md @@ -73,7 +73,7 @@ node dist/capabilitiesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/capabilitiesCreateOrUpdateSample.js +cross-env node dist/capabilitiesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cloudhealth/arm-cloudhealth/package.json b/sdk/cloudhealth/arm-cloudhealth/package.json index 2d007ce25bde..4d5f46a931fb 100644 --- a/sdk/cloudhealth/arm-cloudhealth/package.json +++ b/sdk/cloudhealth/arm-cloudhealth/package.json @@ -85,20 +85,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md index 80695b1de8a0..ec6f4dcb5443 100644 --- a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md +++ b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/javascript/README.md @@ -63,7 +63,7 @@ node authenticationSettingsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node authenticationSettingsCreateOrUpdateSample.js +cross-env node authenticationSettingsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md index 767f53a35abe..79ccb8f43196 100644 --- a/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md +++ b/sdk/cloudhealth/arm-cloudhealth/samples/v1-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/authenticationSettingsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/authenticationSettingsCreateOrUpdateSample.js +cross-env node dist/authenticationSettingsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-conversations/package.json b/sdk/cognitivelanguage/ai-language-conversations/package.json index e7f63652a243..fcc18c937f0e 100644 --- a/sdk/cognitivelanguage/ai-language-conversations/package.json +++ b/sdk/cognitivelanguage/ai-language-conversations/package.json @@ -41,9 +41,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,11 +64,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", diff --git a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md index cd09c337c7b4..0d35886a42a7 100644 --- a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md +++ b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/javascript/README.md @@ -56,7 +56,7 @@ node analyzeConversationApp.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node analyzeConversationApp.js +cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node analyzeConversationApp.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md index f4b68a2eabc3..92f806f5b7ce 100644 --- a/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md +++ b/sdk/cognitivelanguage/ai-language-conversations/samples/v1-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/analyzeConversationApp.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node dist/analyzeConversationApp.js +cross-env LANGUAGE_ENDPOINT="" AZURE_CONVERSATIONS_PROJECT_NAME="" AZURE_CONVERSATIONS_DEPLOYMENT_NAME="" node dist/analyzeConversationApp.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json b/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json index c85157120bf1..1de324e4215d 100644 --- a/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json +++ b/sdk/cognitivelanguage/ai-language-text-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/cognitivelanguage/ai-language-text/package.json b/sdk/cognitivelanguage/ai-language-text/package.json index 2451003177c9..7f4cd5ffcd94 100644 --- a/sdk/cognitivelanguage/ai-language-text/package.json +++ b/sdk/cognitivelanguage/ai-language-text/package.json @@ -64,11 +64,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -105,9 +105,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "chai-exclude": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "unzipper": "~0.12.3", "vitest": "catalog:testing" diff --git a/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md b/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md index 5470c90f19b5..b9727fa8cf4a 100644 --- a/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md +++ b/sdk/cognitivelanguage/ai-language-text/samples/v1/javascript/README.md @@ -67,7 +67,7 @@ node entityLinking.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" node entityLinking.js +cross-env LANGUAGE_ENDPOINT="" node entityLinking.js ``` ## Next Steps diff --git a/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md b/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md index cb48caa5fcaa..2e44899eca7a 100644 --- a/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md +++ b/sdk/cognitivelanguage/ai-language-text/samples/v1/typescript/README.md @@ -79,7 +79,7 @@ node dist/entityLinking.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LANGUAGE_ENDPOINT="" node dist/entityLinking.js +cross-env LANGUAGE_ENDPOINT="" node dist/entityLinking.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/package.json b/sdk/cognitiveservices/arm-cognitiveservices/package.json index a66fdffed74b..a680078ef711 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/package.json +++ b/sdk/cognitiveservices/arm-cognitiveservices/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,19 +59,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md index 7ea28e480907..1fcbd4ef7449 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/javascript/README.md @@ -143,7 +143,7 @@ node accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md index 8c4a906a1d8d..beae4d6aa084 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v7/typescript/README.md @@ -155,7 +155,7 @@ node dist/accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md index 80d0ad54fa34..1c17db5e8e86 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/javascript/README.md @@ -143,7 +143,7 @@ node accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md index 3613312b1a81..e100b77da029 100644 --- a/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md +++ b/sdk/cognitiveservices/arm-cognitiveservices/samples/v8/typescript/README.md @@ -155,7 +155,7 @@ node dist/accountCapabilityHostsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js +cross-env COGNITIVESERVICES_SUBSCRIPTION_ID="" COGNITIVESERVICES_RESOURCE_GROUP="" node dist/accountCapabilityHostsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json index a6d89feedcfa..7a00eecb5a4a 100644 --- a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json +++ b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 9999fa80b026..45eb19188761 100644 --- a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -37,7 +37,7 @@ node rateCardGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMERCE_SUBSCRIPTION_ID="" node rateCardGetSample.js +cross-env COMMERCE_SUBSCRIPTION_ID="" node rateCardGetSample.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 0eb5d0b19d13..8c8d37c793e8 100644 --- a/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/commerce/arm-commerce-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -49,7 +49,7 @@ node dist/rateCardGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMERCE_SUBSCRIPTION_ID="" node dist/rateCardGetSample.js +cross-env COMMERCE_SUBSCRIPTION_ID="" node dist/rateCardGetSample.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce/package.json b/sdk/commerce/arm-commerce/package.json index ab883bf416d8..5ef2654f9594 100644 --- a/sdk/commerce/arm-commerce/package.json +++ b/sdk/commerce/arm-commerce/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md b/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md index aef88d5f596a..d47085b21ddd 100644 --- a/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md +++ b/sdk/commerce/arm-commerce/samples/v4-beta/javascript/README.md @@ -38,7 +38,7 @@ node getRateCard.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node getRateCard.js +cross-env node getRateCard.js ``` ## Next Steps diff --git a/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md b/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md index 73c906279289..ab0813dfec91 100644 --- a/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md +++ b/sdk/commerce/arm-commerce/samples/v4-beta/typescript/README.md @@ -50,7 +50,7 @@ node dist/getRateCard.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/getRateCard.js +cross-env node dist/getRateCard.js ``` ## Next Steps diff --git a/sdk/communication/arm-communication/package.json b/sdk/communication/arm-communication/package.json index a3d815e154ce..bf3048721492 100644 --- a/sdk/communication/arm-communication/package.json +++ b/sdk/communication/arm-communication/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/communication/arm-communication/samples/v4/javascript/README.md b/sdk/communication/arm-communication/samples/v4/javascript/README.md index d4676a2892b4..21ea1211923f 100644 --- a/sdk/communication/arm-communication/samples/v4/javascript/README.md +++ b/sdk/communication/arm-communication/samples/v4/javascript/README.md @@ -65,7 +65,7 @@ node communicationServicesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SUBSCRIPTION_ID="" node communicationServicesCheckNameAvailabilitySample.js +cross-env COMMUNICATION_SUBSCRIPTION_ID="" node communicationServicesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/communication/arm-communication/samples/v4/typescript/README.md b/sdk/communication/arm-communication/samples/v4/typescript/README.md index 34d6a823061f..02728284b4de 100644 --- a/sdk/communication/arm-communication/samples/v4/typescript/README.md +++ b/sdk/communication/arm-communication/samples/v4/typescript/README.md @@ -77,7 +77,7 @@ node dist/communicationServicesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SUBSCRIPTION_ID="" node dist/communicationServicesCheckNameAvailabilitySample.js +cross-env COMMUNICATION_SUBSCRIPTION_ID="" node dist/communicationServicesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/communication/communication-alpha-ids/package.json b/sdk/communication/communication-alpha-ids/package.json index 24e88bb0f3b1..04cc891acf83 100644 --- a/sdk/communication/communication-alpha-ids/package.json +++ b/sdk/communication/communication-alpha-ids/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript --v3 ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -68,9 +68,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-call-automation/package.json b/sdk/communication/communication-call-automation/package.json index 6e9a024ed2a8..8c429cb111d3 100644 --- a/sdk/communication/communication-call-automation/package.json +++ b/sdk/communication/communication-call-automation/package.json @@ -11,11 +11,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -87,10 +87,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "inherits": "^2.0.3", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-chat/package.json b/sdk/communication/communication-chat/package.json index a0039e0a1f11..42ba50134fa9 100644 --- a/sdk/communication/communication-chat/package.json +++ b/sdk/communication/communication-chat/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -72,9 +72,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-chat/samples/v1/javascript/README.md b/sdk/communication/communication-chat/samples/v1/javascript/README.md index 64a9d01d159f..6732f99b7f40 100644 --- a/sdk/communication/communication-chat/samples/v1/javascript/README.md +++ b/sdk/communication/communication-chat/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node messageOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node messageOperations.js +cross-env COMMUNICATION_CONNECTION_STRING="" node messageOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-chat/samples/v1/typescript/README.md b/sdk/communication/communication-chat/samples/v1/typescript/README.md index 096cba16c230..78a070929d75 100644 --- a/sdk/communication/communication-chat/samples/v1/typescript/README.md +++ b/sdk/communication/communication-chat/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/messageOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node dist/messageOperations.js +cross-env COMMUNICATION_CONNECTION_STRING="" node dist/messageOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index b3ad057c68cf..44b1d27645e7 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -68,10 +68,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "mockdate": "^3.0.5", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-email/package.json b/sdk/communication/communication-email/package.json index 885baa5ef0be..b79143391a45 100644 --- a/sdk/communication/communication-email/package.json +++ b/sdk/communication/communication-email/package.json @@ -11,11 +11,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -58,9 +58,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-email/samples/v1-beta/javascript/README.md b/sdk/communication/communication-email/samples/v1-beta/javascript/README.md index 123437df9079..82f1e7792060 100644 --- a/sdk/communication/communication-email/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-email/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node sendEmailMultipleRecipients.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node sendEmailMultipleRecipients.js +cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node sendEmailMultipleRecipients.js ``` ## Next Steps diff --git a/sdk/communication/communication-email/samples/v1-beta/typescript/README.md b/sdk/communication/communication-email/samples/v1-beta/typescript/README.md index f1227470bc7b..f22caef119e9 100644 --- a/sdk/communication/communication-email/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-email/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/sendEmailMultipleRecipients.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node dist/sendEmailMultipleRecipients.js +cross-env COMMUNICATION_ENDPOINT="" SENDER_ADDRESS="" RECIPIENT_ADDRESS="" SECOND_RECIPIENT_ADDRESS="" node dist/sendEmailMultipleRecipients.js ``` ## Next Steps diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index f4649ee675a8..b58719cf4857 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -9,13 +9,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:js-samples": "dev-tool samples run dist-samples/javascript", "execute:samples": "dev-tool samples run samples-dev", "execute:ts-samples": "dev-tool samples run dist-samples/typescript/dist/dist-samples/typescript/src/", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -106,9 +106,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-identity/samples/v1/javascript/README.md b/sdk/communication/communication-identity/samples/v1/javascript/README.md index 0bc6f09bcaf8..1b2c7bdce974 100644 --- a/sdk/communication/communication-identity/samples/v1/javascript/README.md +++ b/sdk/communication/communication-identity/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node createUserAndToken.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node createUserAndToken.js +cross-env COMMUNICATION_CONNECTION_STRING="" node createUserAndToken.js ``` ## Next Steps diff --git a/sdk/communication/communication-identity/samples/v1/typescript/README.md b/sdk/communication/communication-identity/samples/v1/typescript/README.md index 01e02499a8ad..aabf0ee336da 100644 --- a/sdk/communication/communication-identity/samples/v1/typescript/README.md +++ b/sdk/communication/communication-identity/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/createUserAndToken.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node dist/createUserAndToken.js +cross-env COMMUNICATION_CONNECTION_STRING="" node dist/createUserAndToken.js ``` ## Next Steps diff --git a/sdk/communication/communication-job-router-rest/package.json b/sdk/communication/communication-job-router-rest/package.json index 39a3fe9a0eb6..4ac3d7db8e0e 100644 --- a/sdk/communication/communication-job-router-rest/package.json +++ b/sdk/communication/communication-job-router-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md b/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md index c5b7d8dbc04e..4dc73bb5eba5 100644 --- a/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-job-router-rest/samples/v1-beta/javascript/README.md @@ -78,7 +78,7 @@ node ClassificationPolicy_Create.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node ClassificationPolicy_Create.js +cross-env COMMUNICATION_CONNECTION_STRING="" node ClassificationPolicy_Create.js ``` ## Next Steps diff --git a/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md b/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md index 74c1cd8315b0..dd100b602fd2 100644 --- a/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-job-router-rest/samples/v1-beta/typescript/README.md @@ -90,7 +90,7 @@ node dist/ClassificationPolicy_Create.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_CONNECTION_STRING="" node dist/ClassificationPolicy_Create.js +cross-env COMMUNICATION_CONNECTION_STRING="" node dist/ClassificationPolicy_Create.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/package.json b/sdk/communication/communication-messages-rest/package.json index 3c663cdc5749..783118305829 100644 --- a/sdk/communication/communication-messages-rest/package.json +++ b/sdk/communication/communication-messages-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -73,9 +73,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md b/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md index ab28fb0a0cc4..a65ef0158d39 100644 --- a/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v1/javascript/README.md @@ -42,7 +42,7 @@ node DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md b/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md index 89279a0c5930..9f60cb8a3f65 100644 --- a/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ node dist/DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md b/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md index 7ae92e7a85bd..42ba13730943 100644 --- a/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2-beta/javascript/README.md @@ -63,7 +63,7 @@ node DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md b/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md index e5c872bec7aa..8c01632731f9 100644 --- a/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md b/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md index d7bc6477441a..a2db9f3473b3 100644 --- a/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2/javascript/README.md @@ -55,7 +55,7 @@ node DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md b/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md index 04c044af67c4..d0e168e8726e 100644 --- a/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md +++ b/sdk/communication/communication-messages-rest/samples/v2/typescript/README.md @@ -67,7 +67,7 @@ node dist/DownloadMedia.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js +cross-env ACS_ACCESS_KEY="" ACS_URL="" node dist/DownloadMedia.js ``` ## Next Steps diff --git a/sdk/communication/communication-phone-numbers/package.json b/sdk/communication/communication-phone-numbers/package.json index b0734e7be39b..abebbb498d0e 100644 --- a/sdk/communication/communication-phone-numbers/package.json +++ b/sdk/communication/communication-phone-numbers/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:clean": "pnpm install && pnpm build", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -71,9 +71,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md b/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md index 18f8c3c620e2..533380ee2231 100644 --- a/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md +++ b/sdk/communication/communication-phone-numbers/samples/v1/javascript/README.md @@ -55,7 +55,7 @@ node getPurchasedPhoneNumber.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node getPurchasedPhoneNumber.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node getPurchasedPhoneNumber.js ``` ## Next Steps diff --git a/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md b/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md index 2799ea4636c4..ca3484be8c94 100644 --- a/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md +++ b/sdk/communication/communication-phone-numbers/samples/v1/typescript/README.md @@ -67,7 +67,7 @@ node dist/getPurchasedPhoneNumber.ts Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node dist/getPurchasedPhoneNumber.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" PHONE_NUMBER_TO_GET="" AZURE_PHONE_NUMBER="" node dist/getPurchasedPhoneNumber.js ``` ## Next Steps diff --git a/sdk/communication/communication-recipient-verification/package.json b/sdk/communication/communication-recipient-verification/package.json index 898a0172c7a7..bb7db4bf1228 100644 --- a/sdk/communication/communication-recipient-verification/package.json +++ b/sdk/communication/communication-recipient-verification/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md b/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md index 80942dbda6e8..8beb068fa652 100644 --- a/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-recipient-verification/samples/v1-beta/javascript/README.md @@ -53,7 +53,7 @@ node deleteVerification.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node deleteVerification.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node deleteVerification.js ``` ## Next Steps diff --git a/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md b/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md index b5a1198610c1..9c23ae1af9cf 100644 --- a/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-recipient-verification/samples/v1-beta/typescript/README.md @@ -65,7 +65,7 @@ node dist/deleteVerification.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node dist/deleteVerification.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" VERIFICATION_ID="" node dist/deleteVerification.js ``` ## Next Steps diff --git a/sdk/communication/communication-rooms/package.json b/sdk/communication/communication-rooms/package.json index 38432f8a4e27..f346b57aaa1c 100644 --- a/sdk/communication/communication-rooms/package.json +++ b/sdk/communication/communication-rooms/package.json @@ -44,9 +44,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -63,14 +67,14 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript --disable-async-iterators ./swagger/README.md", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", "test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser", diff --git a/sdk/communication/communication-rooms/samples/v1/javascript/README.md b/sdk/communication/communication-rooms/samples/v1/javascript/README.md index 624282b5208e..890e8004cc23 100644 --- a/sdk/communication/communication-rooms/samples/v1/javascript/README.md +++ b/sdk/communication/communication-rooms/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node participantOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node participantOperations.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node participantOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-rooms/samples/v1/typescript/README.md b/sdk/communication/communication-rooms/samples/v1/typescript/README.md index c540e85e14e3..b837b4d200c4 100644 --- a/sdk/communication/communication-rooms/samples/v1/typescript/README.md +++ b/sdk/communication/communication-rooms/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/participantOperations.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/participantOperations.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/participantOperations.js ``` ## Next Steps diff --git a/sdk/communication/communication-short-codes/package.json b/sdk/communication/communication-short-codes/package.json index eb1cd76ab563..8c03de0b2035 100644 --- a/sdk/communication/communication-short-codes/package.json +++ b/sdk/communication/communication-short-codes/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-short-codes/samples/v1/javascript/README.md b/sdk/communication/communication-short-codes/samples/v1/javascript/README.md index ea75dbaf9251..d9b80f83f052 100644 --- a/sdk/communication/communication-short-codes/samples/v1/javascript/README.md +++ b/sdk/communication/communication-short-codes/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node createAndDeleteProgramBrief.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node createAndDeleteProgramBrief.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node createAndDeleteProgramBrief.js ``` ## Next Steps diff --git a/sdk/communication/communication-short-codes/samples/v1/typescript/README.md b/sdk/communication/communication-short-codes/samples/v1/typescript/README.md index 17d0201d7297..1c2ceab73121 100644 --- a/sdk/communication/communication-short-codes/samples/v1/typescript/README.md +++ b/sdk/communication/communication-short-codes/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/createAndDeleteProgramBrief.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/createAndDeleteProgramBrief.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/createAndDeleteProgramBrief.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/package.json b/sdk/communication/communication-sms/package.json index cfd7d3f6a543..393c9588f07f 100644 --- a/sdk/communication/communication-sms/package.json +++ b/sdk/communication/communication-sms/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md b/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md index edc03bdaeed2..01f813feb37d 100644 --- a/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-sms/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md b/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md index 8572a8479e2b..7ccf357add5e 100644 --- a/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-sms/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node dist/sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" node dist/sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/samples/v1/javascript/README.md b/sdk/communication/communication-sms/samples/v1/javascript/README.md index 74827fda681d..4433b5ed3a24 100644 --- a/sdk/communication/communication-sms/samples/v1/javascript/README.md +++ b/sdk/communication/communication-sms/samples/v1/javascript/README.md @@ -55,7 +55,7 @@ node sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" FROM_PHONE_NUMBER="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" node sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" FROM_PHONE_NUMBER="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" node sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-sms/samples/v1/typescript/README.md b/sdk/communication/communication-sms/samples/v1/typescript/README.md index e4a2d007829e..552c22f08b69 100644 --- a/sdk/communication/communication-sms/samples/v1/typescript/README.md +++ b/sdk/communication/communication-sms/samples/v1/typescript/README.md @@ -66,7 +66,7 @@ node dist/sendSms.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" node dist/sendSms.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" TO_PHONE_NUMBERS="" TO_PHONE_NUMBERS="" AZURE_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" FROM_PHONE_NUMBER="" AZURE_PHONE_NUMBER="" node dist/sendSms.js ``` ## Next Steps diff --git a/sdk/communication/communication-tiering/package.json b/sdk/communication/communication-tiering/package.json index 5a8c4d7c76dd..fc996a1ef9ab 100644 --- a/sdk/communication/communication-tiering/package.json +++ b/sdk/communication/communication-tiering/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md b/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md index be1912eae8cc..2d0490ac6a8f 100644 --- a/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md +++ b/sdk/communication/communication-tiering/samples/v1-beta/javascript/README.md @@ -50,7 +50,7 @@ node getAcquiredNumberLimits.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node getAcquiredNumberLimits.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node getAcquiredNumberLimits.js ``` ## Next Steps diff --git a/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md b/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md index 601cb05765d4..963ebee3c3ae 100644 --- a/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md +++ b/sdk/communication/communication-tiering/samples/v1-beta/typescript/README.md @@ -62,7 +62,7 @@ node dist/getAcquiredNumberLimits.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/getAcquiredNumberLimits.js +cross-env COMMUNICATION_SAMPLES_CONNECTION_STRING="" node dist/getAcquiredNumberLimits.js ``` ## Next Steps diff --git a/sdk/communication/communication-toll-free-verification/package.json b/sdk/communication/communication-toll-free-verification/package.json index f3b4b7549c3d..9c0448f5dc62 100644 --- a/sdk/communication/communication-toll-free-verification/package.json +++ b/sdk/communication/communication-toll-free-verification/package.json @@ -10,11 +10,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:autorest": "autorest --typescript --v3 ./swagger/README.md", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -68,9 +68,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json index 0ea1d74b0ce2..88a2cf104b0a 100644 --- a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json +++ b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 9508a6c97d74..188e33b2e25c 100644 --- a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -96,7 +96,7 @@ node availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCreateOrUpdateSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index d9b3b06cd296..aaa69c46bf4f 100644 --- a/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/compute/arm-compute-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -108,7 +108,7 @@ node dist/availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCreateOrUpdateSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute-rest/package.json b/sdk/compute/arm-compute-rest/package.json index 054e2d668e38..4531ef80f463 100644 --- a/sdk/compute/arm-compute-rest/package.json +++ b/sdk/compute/arm-compute-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md b/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md index 4ad263b1e44b..722e5e3cc0b0 100644 --- a/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md +++ b/sdk/compute/arm-compute-rest/samples/v1-beta/javascript/README.md @@ -315,7 +315,7 @@ node availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node availabilitySetsCreateOrUpdateSample.js +cross-env node availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md b/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md index 37f62d913657..db495bfb665e 100644 --- a/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md +++ b/sdk/compute/arm-compute-rest/samples/v1-beta/typescript/README.md @@ -327,7 +327,7 @@ node dist/availabilitySetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/availabilitySetsCreateOrUpdateSample.js +cross-env node dist/availabilitySetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute/package.json b/sdk/compute/arm-compute/package.json index ddb489848893..1d4496e4c152 100644 --- a/sdk/compute/arm-compute/package.json +++ b/sdk/compute/arm-compute/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,20 +30,24 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/arm-network": "^32.2.0", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", - "vitest": "catalog:testing", - "@azure/arm-network": "^32.2.0" + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", "bugs": { @@ -56,19 +60,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/compute/arm-compute/samples/v23/javascript/README.md b/sdk/compute/arm-compute/samples/v23/javascript/README.md index 9af4e0fd0a30..94c437bde55d 100644 --- a/sdk/compute/arm-compute/samples/v23/javascript/README.md +++ b/sdk/compute/arm-compute/samples/v23/javascript/README.md @@ -340,7 +340,7 @@ node availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-compute/samples/v23/typescript/README.md b/sdk/compute/arm-compute/samples/v23/typescript/README.md index 45892c35a8c1..b1c6cd03d7d7 100644 --- a/sdk/compute/arm-compute/samples/v23/typescript/README.md +++ b/sdk/compute/arm-compute/samples/v23/typescript/README.md @@ -352,7 +352,7 @@ node dist/availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js +cross-env COMPUTE_SUBSCRIPTION_ID="" COMPUTE_RESOURCE_GROUP="" node dist/availabilitySetsCancelMigrationToVirtualMachineScaleSetSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-computerecommender/package.json b/sdk/compute/arm-computerecommender/package.json index de89a1c295b3..30e5c0fdf23b 100644 --- a/sdk/compute/arm-computerecommender/package.json +++ b/sdk/compute/arm-computerecommender/package.json @@ -62,10 +62,10 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/core-auth": "^1.9.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -77,30 +77,34 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^4.9.0", "@types/node": "^20.0.0", - "eslint": "^9.9.0", "@vitest/browser": "^3.0.9", "@vitest/coverage-istanbul": "^3.0.9", + "cross-env": "catalog:", "dotenv": "^16.0.0", + "eslint": "^9.9.0", "playwright": "^1.52.0", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "~5.8.2", "vitest": "^3.0.9" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md b/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md index 34ba362cdbbb..508b52dd0366 100644 --- a/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md +++ b/sdk/compute/arm-computerecommender/samples/v1/javascript/README.md @@ -39,7 +39,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md b/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md index f590a2ebf1c0..288949ca681d 100644 --- a/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md +++ b/sdk/compute/arm-computerecommender/samples/v1/typescript/README.md @@ -51,7 +51,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/computefleet/arm-computefleet/package.json b/sdk/computefleet/arm-computefleet/package.json index d6b7e1dc7ea2..7646f55bd648 100644 --- a/sdk/computefleet/arm-computefleet/package.json +++ b/sdk/computefleet/arm-computefleet/package.json @@ -62,12 +62,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -79,30 +79,34 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^4.9.0", "@types/node": "^20.0.0", - "eslint": "^9.9.0", "@vitest/browser": "^3.0.9", "@vitest/coverage-istanbul": "^3.0.9", + "cross-env": "catalog:", "dotenv": "^16.0.0", + "eslint": "^9.9.0", "playwright": "^1.52.0", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "~5.8.2", "vitest": "^3.0.9" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md b/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md index f93cf4351521..bcf2a2f5f0cd 100644 --- a/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md +++ b/sdk/computefleet/arm-computefleet/samples/v2-beta/javascript/README.md @@ -46,7 +46,7 @@ node fleetsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fleetsCancelSample.js +cross-env node fleetsCancelSample.js ``` ## Next Steps diff --git a/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md b/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md index be55a191a96c..aa2cb96c3509 100644 --- a/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md +++ b/sdk/computefleet/arm-computefleet/samples/v2-beta/typescript/README.md @@ -58,7 +58,7 @@ node dist/fleetsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fleetsCancelSample.js +cross-env node dist/fleetsCancelSample.js ``` ## Next Steps diff --git a/sdk/computeschedule/arm-computeschedule/package.json b/sdk/computeschedule/arm-computeschedule/package.json index d967eab3fcf9..fbf985763d4e 100644 --- a/sdk/computeschedule/arm-computeschedule/package.json +++ b/sdk/computeschedule/arm-computeschedule/package.json @@ -65,12 +65,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -82,11 +82,15 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -94,12 +98,12 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "lint": "echo skipped", "lint:fix": "echo skipped", "pack": "pnpm pack 2>&1", - "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", diff --git a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md index b1445d83b08e..672bb53059e7 100644 --- a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md +++ b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/javascript/README.md @@ -69,7 +69,7 @@ node occurrenceExtensionListOccurrenceByVmsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node occurrenceExtensionListOccurrenceByVmsSample.js +cross-env node occurrenceExtensionListOccurrenceByVmsSample.js ``` ## Next Steps diff --git a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md index 6c9d6c6246a8..96f0496c3f00 100644 --- a/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md +++ b/sdk/computeschedule/arm-computeschedule/samples/v1-beta/typescript/README.md @@ -81,7 +81,7 @@ node dist/occurrenceExtensionListOccurrenceByVmsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/occurrenceExtensionListOccurrenceByVmsSample.js +cross-env node dist/occurrenceExtensionListOccurrenceByVmsSample.js ``` ## Next Steps diff --git a/sdk/confidentialledger/arm-confidentialledger/package.json b/sdk/confidentialledger/arm-confidentialledger/package.json index 26be5a3162ad..5d44424394e5 100644 --- a/sdk/confidentialledger/arm-confidentialledger/package.json +++ b/sdk/confidentialledger/arm-confidentialledger/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md index 65a2401a2057..c6018021664f 100644 --- a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md +++ b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/javascript/README.md @@ -54,7 +54,7 @@ node checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node checkNameAvailabilitySample.js +cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md index 9b876cf2f1f0..1aafac0cd712 100644 --- a/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md +++ b/sdk/confidentialledger/arm-confidentialledger/samples/v1-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node dist/checkNameAvailabilitySample.js +cross-env CONFIDENTIALLEDGER_SUBSCRIPTION_ID="" node dist/checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/confidentialledger/confidential-ledger-rest/package.json b/sdk/confidentialledger/confidential-ledger-rest/package.json index 4a3949c000a0..ba4bfffc58be 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/package.json +++ b/sdk/confidentialledger/confidential-ledger-rest/package.json @@ -51,11 +51,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -83,8 +83,12 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md index 03bc9db59cd9..59af2be63f0f 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md +++ b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/javascript/README.md @@ -40,7 +40,7 @@ node getEnclaveQuotesCert.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node getEnclaveQuotesCert.js +cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node getEnclaveQuotesCert.js ``` ## Next Steps diff --git a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md index dcd58d4b5b84..bedecbb59644 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md +++ b/sdk/confidentialledger/confidential-ledger-rest/samples/v1-beta/typescript/README.md @@ -52,7 +52,7 @@ node dist/getEnclaveQuotesCert.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node dist/getEnclaveQuotesCert.js +cross-env USER_CERT="" USER_CERT_KEY="" ENDPOINT="" LEDGER_ID="" node dist/getEnclaveQuotesCert.js ``` ## Next Steps diff --git a/sdk/confluent/arm-confluent/package.json b/sdk/confluent/arm-confluent/package.json index fd56b0cca885..a233563fe616 100644 --- a/sdk/confluent/arm-confluent/package.json +++ b/sdk/confluent/arm-confluent/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/confluent/arm-confluent/samples/v3/javascript/README.md b/sdk/confluent/arm-confluent/samples/v3/javascript/README.md index aea192b3080c..d9ed99d4431a 100644 --- a/sdk/confluent/arm-confluent/samples/v3/javascript/README.md +++ b/sdk/confluent/arm-confluent/samples/v3/javascript/README.md @@ -67,7 +67,7 @@ node accessCreateRoleBindingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node accessCreateRoleBindingSample.js +cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node accessCreateRoleBindingSample.js ``` ## Next Steps diff --git a/sdk/confluent/arm-confluent/samples/v3/typescript/README.md b/sdk/confluent/arm-confluent/samples/v3/typescript/README.md index 8263462b22f1..52b5aa64c863 100644 --- a/sdk/confluent/arm-confluent/samples/v3/typescript/README.md +++ b/sdk/confluent/arm-confluent/samples/v3/typescript/README.md @@ -79,7 +79,7 @@ node dist/accessCreateRoleBindingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node dist/accessCreateRoleBindingSample.js +cross-env CONFLUENT_SUBSCRIPTION_ID="" CONFLUENT_RESOURCE_GROUP="" node dist/accessCreateRoleBindingSample.js ``` ## Next Steps diff --git a/sdk/connectedcache/arm-connectedcache/package.json b/sdk/connectedcache/arm-connectedcache/package.json index 0e63b68bacb3..a6ec2c8f4eae 100644 --- a/sdk/connectedcache/arm-connectedcache/package.json +++ b/sdk/connectedcache/arm-connectedcache/package.json @@ -76,20 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md index 1c6b752133a1..d2b623e241ee 100644 --- a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md +++ b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/javascript/README.md @@ -74,7 +74,7 @@ node cacheNodesOperationsCreateorUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node cacheNodesOperationsCreateorUpdateSample.js +cross-env node cacheNodesOperationsCreateorUpdateSample.js ``` ## Next Steps diff --git a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md index 6bd83f34fbbb..957ec1776052 100644 --- a/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md +++ b/sdk/connectedcache/arm-connectedcache/samples/v1-beta/typescript/README.md @@ -86,7 +86,7 @@ node dist/cacheNodesOperationsCreateorUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/cacheNodesOperationsCreateorUpdateSample.js +cross-env node dist/cacheNodesOperationsCreateorUpdateSample.js ``` ## Next Steps diff --git a/sdk/connectedvmware/arm-connectedvmware/package.json b/sdk/connectedvmware/arm-connectedvmware/package.json index a6971da217ef..e0d253b82215 100644 --- a/sdk/connectedvmware/arm-connectedvmware/package.json +++ b/sdk/connectedvmware/arm-connectedvmware/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md b/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md index c47378559e24..cac83dae3589 100644 --- a/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md +++ b/sdk/connectedvmware/arm-connectedvmware/samples/v1/javascript/README.md @@ -97,7 +97,7 @@ node clustersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node clustersCreateSample.js +cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node clustersCreateSample.js ``` ## Next Steps diff --git a/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md b/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md index ec9ba763aa05..b8845e3d0d6a 100644 --- a/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md +++ b/sdk/connectedvmware/arm-connectedvmware/samples/v1/typescript/README.md @@ -109,7 +109,7 @@ node dist/clustersCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node dist/clustersCreateSample.js +cross-env CONNECTEDVMWARE_SUBSCRIPTION_ID="" CONNECTEDVMWARE_RESOURCE_GROUP="" node dist/clustersCreateSample.js ``` ## Next Steps diff --git a/sdk/consumption/arm-consumption/package.json b/sdk/consumption/arm-consumption/package.json index f9dee621e264..28d02e1ff8c2 100644 --- a/sdk/consumption/arm-consumption/package.json +++ b/sdk/consumption/arm-consumption/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/consumption/arm-consumption/samples/v9/javascript/README.md b/sdk/consumption/arm-consumption/samples/v9/javascript/README.md index 04600130793d..4e6e3486c193 100644 --- a/sdk/consumption/arm-consumption/samples/v9/javascript/README.md +++ b/sdk/consumption/arm-consumption/samples/v9/javascript/README.md @@ -65,7 +65,7 @@ node aggregatedCostGetByManagementGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONSUMPTION_SUBSCRIPTION_ID="" node aggregatedCostGetByManagementGroupSample.js +cross-env CONSUMPTION_SUBSCRIPTION_ID="" node aggregatedCostGetByManagementGroupSample.js ``` ## Next Steps diff --git a/sdk/consumption/arm-consumption/samples/v9/typescript/README.md b/sdk/consumption/arm-consumption/samples/v9/typescript/README.md index fd962831c585..cd76f4af8bc7 100644 --- a/sdk/consumption/arm-consumption/samples/v9/typescript/README.md +++ b/sdk/consumption/arm-consumption/samples/v9/typescript/README.md @@ -77,7 +77,7 @@ node dist/aggregatedCostGetByManagementGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONSUMPTION_SUBSCRIPTION_ID="" node dist/aggregatedCostGetByManagementGroupSample.js +cross-env CONSUMPTION_SUBSCRIPTION_ID="" node dist/aggregatedCostGetByManagementGroupSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/package.json b/sdk/containerinstance/arm-containerinstance/package.json index a54d1a982fee..f9e5ef09baf9 100644 --- a/sdk/containerinstance/arm-containerinstance/package.json +++ b/sdk/containerinstance/arm-containerinstance/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md index 411a02db3462..a4406aa80a30 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/javascript/README.md @@ -61,7 +61,7 @@ node containerGroupProfileGetByRevisionNumberSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupProfileGetByRevisionNumberSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupProfileGetByRevisionNumberSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md index 35c011306617..94e82a67f17c 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9-beta/typescript/README.md @@ -73,7 +73,7 @@ node dist/containerGroupProfileGetByRevisionNumberSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupProfileGetByRevisionNumberSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupProfileGetByRevisionNumberSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md index 76b56a56ca16..9a3d683a0d64 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9/javascript/README.md @@ -53,7 +53,7 @@ node containerGroupsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupsCreateOrUpdateSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node containerGroupsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md b/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md index 18fc5aa4de79..2f53d4ce186f 100644 --- a/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md +++ b/sdk/containerinstance/arm-containerinstance/samples/v9/typescript/README.md @@ -65,7 +65,7 @@ node dist/containerGroupsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupsCreateOrUpdateSample.js +cross-env CONTAINERINSTANCE_SUBSCRIPTION_ID="" CONTAINERINSTANCE_RESOURCE_GROUP="" node dist/containerGroupsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerregistry/arm-containerregistry/package.json b/sdk/containerregistry/arm-containerregistry/package.json index 08d616f4efc8..148a38e8d15a 100644 --- a/sdk/containerregistry/arm-containerregistry/package.json +++ b/sdk/containerregistry/arm-containerregistry/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md index e9d6f350883c..45bb04f35274 100644 --- a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md +++ b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/javascript/README.md @@ -140,7 +140,7 @@ node agentPoolsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node agentPoolsCreateSample.js +cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node agentPoolsCreateSample.js ``` ## Next Steps diff --git a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md index 94f902f5dde3..8520df01bcec 100644 --- a/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md +++ b/sdk/containerregistry/arm-containerregistry/samples/v11-beta/typescript/README.md @@ -152,7 +152,7 @@ node dist/agentPoolsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node dist/agentPoolsCreateSample.js +cross-env CONTAINERREGISTRY_SUBSCRIPTION_ID="" CONTAINERREGISTRY_RESOURCE_GROUP="" node dist/agentPoolsCreateSample.js ``` ## Next Steps diff --git a/sdk/containerregistry/container-registry-perf-tests/package.json b/sdk/containerregistry/container-registry-perf-tests/package.json index 820bb60b1fa3..0f434d130bef 100644 --- a/sdk/containerregistry/container-registry-perf-tests/package.json +++ b/sdk/containerregistry/container-registry-perf-tests/package.json @@ -52,17 +52,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/containerregistry/container-registry/package.json b/sdk/containerregistry/container-registry/package.json index 9fd92b469fa0..e6e7ea9fd054 100644 --- a/sdk/containerregistry/container-registry/package.json +++ b/sdk/containerregistry/container-registry/package.json @@ -26,11 +26,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -83,9 +83,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/containerregistry/container-registry/samples/v1/javascript/README.md b/sdk/containerregistry/container-registry/samples/v1/javascript/README.md index 1a5320bba069..2334a06a7bfb 100644 --- a/sdk/containerregistry/container-registry/samples/v1/javascript/README.md +++ b/sdk/containerregistry/container-registry/samples/v1/javascript/README.md @@ -60,7 +60,7 @@ node containerRegistryClient.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINER_REGISTRY_ENDPOINT="" node containerRegistryClient.js +cross-env CONTAINER_REGISTRY_ENDPOINT="" node containerRegistryClient.js ``` ## Next Steps diff --git a/sdk/containerregistry/container-registry/samples/v1/typescript/README.md b/sdk/containerregistry/container-registry/samples/v1/typescript/README.md index 98b81912410f..966adb9b2942 100644 --- a/sdk/containerregistry/container-registry/samples/v1/typescript/README.md +++ b/sdk/containerregistry/container-registry/samples/v1/typescript/README.md @@ -72,7 +72,7 @@ node dist/containerRegistryClient.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINER_REGISTRY_ENDPOINT="" node dist/containerRegistryClient.js +cross-env CONTAINER_REGISTRY_ENDPOINT="" node dist/containerRegistryClient.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice-rest/package.json b/sdk/containerservice/arm-containerservice-rest/package.json index 76ffbb669d41..1041216920c3 100644 --- a/sdk/containerservice/arm-containerservice-rest/package.json +++ b/sdk/containerservice/arm-containerservice-rest/package.json @@ -42,11 +42,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -78,9 +78,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md index a50f72c87932..54e5ef3cfa92 100644 --- a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/javascript/README.md @@ -57,7 +57,7 @@ node managedClustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node managedClustersCreateOrUpdateSample.js +cross-env node managedClustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md index c5914ac96ff9..017486d14c15 100644 --- a/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservice-rest/samples/v1-beta/typescript/README.md @@ -69,7 +69,7 @@ node dist/managedClustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/managedClustersCreateOrUpdateSample.js +cross-env node dist/managedClustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice/package.json b/sdk/containerservice/arm-containerservice/package.json index 943e643bf1cb..341d8076ffcc 100644 --- a/sdk/containerservice/arm-containerservice/package.json +++ b/sdk/containerservice/arm-containerservice/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,19 +59,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md b/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md index f089f6cf0185..9d29361f6f7f 100644 --- a/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservice/samples/v23-beta/javascript/README.md @@ -130,7 +130,7 @@ node agentPoolsAbortLatestOperationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node agentPoolsAbortLatestOperationSample.js +cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node agentPoolsAbortLatestOperationSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md b/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md index b69b18198caa..8697690c727d 100644 --- a/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservice/samples/v23-beta/typescript/README.md @@ -142,7 +142,7 @@ node dist/agentPoolsAbortLatestOperationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node dist/agentPoolsAbortLatestOperationSample.js +cross-env CONTAINERSERVICE_SUBSCRIPTION_ID="" CONTAINERSERVICE_RESOURCE_GROUP="" node dist/agentPoolsAbortLatestOperationSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicefleet/package.json b/sdk/containerservice/arm-containerservicefleet/package.json index 5c8d9b787304..f36933ce228b 100644 --- a/sdk/containerservice/arm-containerservicefleet/package.json +++ b/sdk/containerservice/arm-containerservicefleet/package.json @@ -68,12 +68,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -87,20 +87,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md index 9cde4f3b9483..00c2573d4775 100644 --- a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/javascript/README.md @@ -68,7 +68,7 @@ node autoUpgradeProfileOperationsGenerateUpdateRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node autoUpgradeProfileOperationsGenerateUpdateRunSample.js +cross-env node autoUpgradeProfileOperationsGenerateUpdateRunSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md index e7df80cec501..54bee66f3edc 100644 --- a/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservicefleet/samples/v2-beta/typescript/README.md @@ -80,7 +80,7 @@ node dist/autoUpgradeProfileOperationsGenerateUpdateRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/autoUpgradeProfileOperationsGenerateUpdateRunSample.js +cross-env node dist/autoUpgradeProfileOperationsGenerateUpdateRunSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicesafeguards/package.json b/sdk/containerservice/arm-containerservicesafeguards/package.json index 2526bcaf2bad..86fe2ec11cfa 100644 --- a/sdk/containerservice/arm-containerservicesafeguards/package.json +++ b/sdk/containerservice/arm-containerservicesafeguards/package.json @@ -62,12 +62,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -79,30 +79,34 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^4.9.0", "@types/node": "^20.0.0", - "eslint": "^9.9.0", "@vitest/browser": "^3.0.9", "@vitest/coverage-istanbul": "^3.0.9", + "cross-env": "catalog:", "dotenv": "^16.0.0", + "eslint": "^9.9.0", "playwright": "^1.52.0", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "~5.8.2", "vitest": "^3.0.9" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md index 03707c674367..e5334600aeba 100644 --- a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md +++ b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/javascript/README.md @@ -41,7 +41,7 @@ node deploymentSafeguardsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node deploymentSafeguardsCreateSample.js +cross-env node deploymentSafeguardsCreateSample.js ``` ## Next Steps diff --git a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md index 1c73f78bf34e..e65d6aae969f 100644 --- a/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md +++ b/sdk/containerservice/arm-containerservicesafeguards/samples/v1-beta/typescript/README.md @@ -53,7 +53,7 @@ node dist/deploymentSafeguardsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/deploymentSafeguardsCreateSample.js +cross-env node dist/deploymentSafeguardsCreateSample.js ``` ## Next Steps diff --git a/sdk/contentsafety/ai-content-safety-rest/package.json b/sdk/contentsafety/ai-content-safety-rest/package.json index 6016d13361d1..fa1fbd63e052 100644 --- a/sdk/contentsafety/ai-content-safety-rest/package.json +++ b/sdk/contentsafety/ai-content-safety-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,10 +69,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "rollup-plugin-copy": "^3.5.0", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md b/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md index 198bf70ff927..277aaf615a37 100644 --- a/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md +++ b/sdk/contentsafety/ai-content-safety-rest/samples/v1/javascript/README.md @@ -39,7 +39,7 @@ node sampleAnalyzeImage.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node sampleAnalyzeImage.js +cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node sampleAnalyzeImage.js ``` ## Next Steps diff --git a/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md b/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md index cf453ab0437b..a1775a3b74d8 100644 --- a/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md +++ b/sdk/contentsafety/ai-content-safety-rest/samples/v1/typescript/README.md @@ -51,7 +51,7 @@ node dist/sampleAnalyzeImage.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node dist/sampleAnalyzeImage.js +cross-env CONTENT_SAFETY_ENDPOINT="" CONTENT_SAFETY_API_KEY="" node dist/sampleAnalyzeImage.js ``` ## Next Steps diff --git a/sdk/core/abort-controller/package.json b/sdk/core/abort-controller/package.json index f9230d58e107..2c48e6297f29 100644 --- a/sdk/core/abort-controller/package.json +++ b/sdk/core/abort-controller/package.json @@ -82,8 +82,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-amqp/package.json b/sdk/core/core-amqp/package.json index bc62fd5b4579..12d8fa5b1594 100644 --- a/sdk/core/core-amqp/package.json +++ b/sdk/core/core-amqp/package.json @@ -90,9 +90,12 @@ "@types/ws": "^8.5.10", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "debug": "^4.3.4", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing", diff --git a/sdk/core/core-auth/package.json b/sdk/core/core-auth/package.json index 2145e7594d50..62152a80fd72 100644 --- a/sdk/core/core-auth/package.json +++ b/sdk/core/core-auth/package.json @@ -78,8 +78,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-client-rest/package.json b/sdk/core/core-client-rest/package.json index c61f06397dfa..80bea24a2933 100644 --- a/sdk/core/core-client-rest/package.json +++ b/sdk/core/core-client-rest/package.json @@ -81,8 +81,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-client/package.json b/sdk/core/core-client/package.json index a0844e081ce6..d12ff9496b4e 100644 --- a/sdk/core/core-client/package.json +++ b/sdk/core/core-client/package.json @@ -83,8 +83,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-http-compat/package.json b/sdk/core/core-http-compat/package.json index 2b9fc2074d32..5e7586520606 100644 --- a/sdk/core/core-http-compat/package.json +++ b/sdk/core/core-http-compat/package.json @@ -78,8 +78,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-lro/package.json b/sdk/core/core-lro/package.json index 3cb64f663ecf..d95c342ad753 100644 --- a/sdk/core/core-lro/package.json +++ b/sdk/core/core-lro/package.json @@ -97,8 +97,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-lro/samples/v3/javascript/README.md b/sdk/core/core-lro/samples/v3/javascript/README.md index 805889610d71..a180d7b70005 100644 --- a/sdk/core/core-lro/samples/v3/javascript/README.md +++ b/sdk/core/core-lro/samples/v3/javascript/README.md @@ -37,7 +37,7 @@ node customPoller.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node customPoller.js +cross-env node customPoller.js ``` ## Next Steps diff --git a/sdk/core/core-lro/samples/v3/typescript/README.md b/sdk/core/core-lro/samples/v3/typescript/README.md index ded6a8424fe0..05ab1c8eb6cb 100644 --- a/sdk/core/core-lro/samples/v3/typescript/README.md +++ b/sdk/core/core-lro/samples/v3/typescript/README.md @@ -49,7 +49,7 @@ node dist/customPoller.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/customPoller.js +cross-env node dist/customPoller.js ``` ## Next Steps diff --git a/sdk/core/core-paging/package.json b/sdk/core/core-paging/package.json index 6ef52800b698..e880cf423f73 100644 --- a/sdk/core/core-paging/package.json +++ b/sdk/core/core-paging/package.json @@ -82,8 +82,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-paging/samples/v1/javascript/README.md b/sdk/core/core-paging/samples/v1/javascript/README.md index b27ee1b53533..86611aa77855 100644 --- a/sdk/core/core-paging/samples/v1/javascript/README.md +++ b/sdk/core/core-paging/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node getPagedAsyncIteratorSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node getPagedAsyncIteratorSample.js +cross-env node getPagedAsyncIteratorSample.js ``` ## Next Steps diff --git a/sdk/core/core-paging/samples/v1/typescript/README.md b/sdk/core/core-paging/samples/v1/typescript/README.md index 6a55818255d7..7d380790f681 100644 --- a/sdk/core/core-paging/samples/v1/typescript/README.md +++ b/sdk/core/core-paging/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/getPagedAsyncIteratorSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/getPagedAsyncIteratorSample.js +cross-env node dist/getPagedAsyncIteratorSample.js ``` ## Next Steps diff --git a/sdk/core/core-rest-pipeline-perf-tests/package.json b/sdk/core/core-rest-pipeline-perf-tests/package.json index 75f2223267a7..7c00f5fce453 100644 --- a/sdk/core/core-rest-pipeline-perf-tests/package.json +++ b/sdk/core/core-rest-pipeline-perf-tests/package.json @@ -56,8 +56,11 @@ "@types/express": "^5.0.3", "@types/node": "catalog:", "concurrently": "^9.2.1", + "cross-env": "catalog:", "eslint": "catalog:", "express": "^5.1.0", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:" }, diff --git a/sdk/core/core-rest-pipeline/package.json b/sdk/core/core-rest-pipeline/package.json index cf464ebc27a1..a69eef8d60ec 100644 --- a/sdk/core/core-rest-pipeline/package.json +++ b/sdk/core/core-rest-pipeline/package.json @@ -100,8 +100,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md b/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md index c2020d69427f..f380780a1366 100644 --- a/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md +++ b/sdk/core/core-rest-pipeline/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node node-sample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node node-sample.js +cross-env node node-sample.js ``` ## Next Steps diff --git a/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md b/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md index ebb1b676e571..cea2971ad222 100644 --- a/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md +++ b/sdk/core/core-rest-pipeline/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/node-sample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/node-sample.js +cross-env node dist/node-sample.js ``` ## Next Steps diff --git a/sdk/core/core-sse/package.json b/sdk/core/core-sse/package.json index 84b613524025..e9c9b8e845ee 100644 --- a/sdk/core/core-sse/package.json +++ b/sdk/core/core-sse/package.json @@ -85,10 +85,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "express": "^5.1.0", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "tsx": "catalog:", "typescript": "catalog:", diff --git a/sdk/core/core-sse/samples/v1/javascript/README.md b/sdk/core/core-sse/samples/v1/javascript/README.md index 2fcf9eb15bf2..a87be38bdc63 100644 --- a/sdk/core/core-sse/samples/v1/javascript/README.md +++ b/sdk/core/core-sse/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node iterateSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node iterateSseStream.js +cross-env node iterateSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-sse/samples/v1/typescript/README.md b/sdk/core/core-sse/samples/v1/typescript/README.md index 9f9a508a17ff..2fa547dfa279 100644 --- a/sdk/core/core-sse/samples/v1/typescript/README.md +++ b/sdk/core/core-sse/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/iterateSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/iterateSseStream.js +cross-env node dist/iterateSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-sse/samples/v2/javascript/README.md b/sdk/core/core-sse/samples/v2/javascript/README.md index c37abc54928a..ef1fa570a185 100644 --- a/sdk/core/core-sse/samples/v2/javascript/README.md +++ b/sdk/core/core-sse/samples/v2/javascript/README.md @@ -37,7 +37,7 @@ node createSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node createSseStream.js +cross-env node createSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-sse/samples/v2/typescript/README.md b/sdk/core/core-sse/samples/v2/typescript/README.md index b8afae3c55a6..f06dbc372ffe 100644 --- a/sdk/core/core-sse/samples/v2/typescript/README.md +++ b/sdk/core/core-sse/samples/v2/typescript/README.md @@ -49,7 +49,7 @@ node dist/createSseStream.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/createSseStream.js +cross-env node dist/createSseStream.js ``` ## Next Steps diff --git a/sdk/core/core-tracing/package.json b/sdk/core/core-tracing/package.json index 2a22d7eb698f..12511c458458 100644 --- a/sdk/core/core-tracing/package.json +++ b/sdk/core/core-tracing/package.json @@ -77,8 +77,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-tracing/samples/v1/javascript/README.md b/sdk/core/core-tracing/samples/v1/javascript/README.md index 3b99a61eeb1f..f7cef88c1324 100644 --- a/sdk/core/core-tracing/samples/v1/javascript/README.md +++ b/sdk/core/core-tracing/samples/v1/javascript/README.md @@ -37,7 +37,7 @@ node basicTracing.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node basicTracing.js +cross-env node basicTracing.js ``` ## Next Steps diff --git a/sdk/core/core-tracing/samples/v1/typescript/README.md b/sdk/core/core-tracing/samples/v1/typescript/README.md index 6d34e4db05d4..6a1417dc34cf 100644 --- a/sdk/core/core-tracing/samples/v1/typescript/README.md +++ b/sdk/core/core-tracing/samples/v1/typescript/README.md @@ -49,7 +49,7 @@ node dist/basicTracing.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env node dist/basicTracing.js +cross-env node dist/basicTracing.js ``` ## Next Steps diff --git a/sdk/core/core-util/package.json b/sdk/core/core-util/package.json index b7b74bef1ded..f62cb9135f14 100644 --- a/sdk/core/core-util/package.json +++ b/sdk/core/core-util/package.json @@ -79,8 +79,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/core-xml/package.json b/sdk/core/core-xml/package.json index f20d951cb782..a9f4f4afbef7 100644 --- a/sdk/core/core-xml/package.json +++ b/sdk/core/core-xml/package.json @@ -78,8 +78,11 @@ "@types/trusted-types": "^2.0.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/logger/package.json b/sdk/core/logger/package.json index 419730c4189a..70b7e715ad21 100644 --- a/sdk/core/logger/package.json +++ b/sdk/core/logger/package.json @@ -83,9 +83,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" diff --git a/sdk/core/ts-http-runtime/package.json b/sdk/core/ts-http-runtime/package.json index 994b75b13be6..87ea934e6988 100644 --- a/sdk/core/ts-http-runtime/package.json +++ b/sdk/core/ts-http-runtime/package.json @@ -150,8 +150,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", "tshy": "catalog:", "tsx": "catalog:", "typescript": "catalog:", diff --git a/sdk/cosmosdb/arm-cosmosdb/package.json b/sdk/cosmosdb/arm-cosmosdb/package.json index 2c4853228450..fdfd29c7564b 100644 --- a/sdk/cosmosdb/arm-cosmosdb/package.json +++ b/sdk/cosmosdb/arm-cosmosdb/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md b/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md index da751f2d77fd..ed6381326cf0 100644 --- a/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md +++ b/sdk/cosmosdb/arm-cosmosdb/samples/v16/javascript/README.md @@ -226,7 +226,7 @@ node cassandraClustersCreateUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node cassandraClustersCreateUpdateSample.js +cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node cassandraClustersCreateUpdateSample.js ``` ## Next Steps diff --git a/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md b/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md index df974b32eb9a..7db321af91e6 100644 --- a/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md +++ b/sdk/cosmosdb/arm-cosmosdb/samples/v16/typescript/README.md @@ -238,7 +238,7 @@ node dist/cassandraClustersCreateUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node dist/cassandraClustersCreateUpdateSample.js +cross-env COSMOSDB_SUBSCRIPTION_ID="" COSMOSDB_RESOURCE_GROUP="" node dist/cassandraClustersCreateUpdateSample.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/package.json b/sdk/cosmosdb/cosmos/package.json index 0939dea48152..1aa837e3d6ce 100644 --- a/sdk/cosmosdb/cosmos/package.json +++ b/sdk/cosmosdb/cosmos/package.json @@ -41,19 +41,19 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm temp types *.tgz *.html *.log *.tsbuildinfo test/**/*.{js,js.map,d.ts}", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm temp types *.tgz *.html *.log *.tsbuildinfo test/**/*.{js,js.map,d.ts}", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "npm run build && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", "test:browser": "echo skipped", "test:node": "npm run test:node:unit", - "test:node:integration": "dev-tool run vendored cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.int.config.ts", - "test:node:unit": "dev-tool run vendored cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.unit.config.ts", + "test:node:integration": "cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.int.config.ts", + "test:node:unit": "cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.unit.config.ts", "update-snippets": "dev-tool run update-snippets" }, "repository": "github:Azure/azure-sdk-for-js", @@ -89,10 +89,14 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "assertion-error": "^2.0.1", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md b/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md index 84e9d3acd308..f9b4c3c36017 100644 --- a/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v3/javascript/README.md @@ -59,7 +59,7 @@ node EntraAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node EntraAuth.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node EntraAuth.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md b/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md index 1700e62e07ec..d541837971f0 100644 --- a/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v3/typescript/README.md @@ -71,7 +71,7 @@ node dist/EntraAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node dist/EntraAuth.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_CONTAINER="" node dist/EntraAuth.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md b/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md index 416457eab3d3..59a27213efcd 100644 --- a/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v4/javascript/README.md @@ -68,7 +68,7 @@ node AlterQueryThroughput.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node AlterQueryThroughput.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node AlterQueryThroughput.js ``` ## Next Steps diff --git a/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md b/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md index 8a5a79c40090..26f8afc65fd6 100644 --- a/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md +++ b/sdk/cosmosdb/cosmos/samples/v4/typescript/README.md @@ -80,7 +80,7 @@ node dist/AlterQueryThroughput.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node dist/AlterQueryThroughput.js +cross-env COSMOS_KEY="" COSMOS_ENDPOINT="" COSMOS_DATABASE="" COSMOS_CONTAINER="" node dist/AlterQueryThroughput.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json index ad9b9068cfcb..f1aef809ff4a 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md index 452e0df4eee8..c26ff6b12c63 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/javascript/README.md @@ -71,7 +71,7 @@ node clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md index a6e44ddef933..d5586d82d3f2 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1-beta/typescript/README.md @@ -83,7 +83,7 @@ node dist/clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md index 4aa84ee65820..43291c5508c4 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/javascript/README.md @@ -71,7 +71,7 @@ node clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md index 8414289a2ee3..b84bcd221788 100644 --- a/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md +++ b/sdk/cosmosforpostgresql/arm-cosmosdbforpostgresql/samples/v1/typescript/README.md @@ -83,7 +83,7 @@ node dist/clustersCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js +cross-env COSMOSFORPOSTGRESQL_SUBSCRIPTION_ID="" node dist/clustersCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/cost-management/arm-costmanagement/package.json b/sdk/cost-management/arm-costmanagement/package.json index edc815d9be9c..944f980048b5 100644 --- a/sdk/cost-management/arm-costmanagement/package.json +++ b/sdk/cost-management/arm-costmanagement/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md b/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md index 9af45820ba96..1da6540a6006 100644 --- a/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md +++ b/sdk/cost-management/arm-costmanagement/samples/v1-beta/javascript/README.md @@ -87,7 +87,7 @@ node alertsDismissSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node alertsDismissSample.js +cross-env node alertsDismissSample.js ``` ## Next Steps diff --git a/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md b/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md index 0bf66fb0c96c..27c70735a36e 100644 --- a/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md +++ b/sdk/cost-management/arm-costmanagement/samples/v1-beta/typescript/README.md @@ -99,7 +99,7 @@ node dist/alertsDismissSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/alertsDismissSample.js +cross-env node dist/alertsDismissSample.js ``` ## Next Steps diff --git a/sdk/customer-insights/arm-customerinsights/package.json b/sdk/customer-insights/arm-customerinsights/package.json index c072351e4db4..5d7dc9faf597 100644 --- a/sdk/customer-insights/arm-customerinsights/package.json +++ b/sdk/customer-insights/arm-customerinsights/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md b/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md index 4cb616cddc4f..156d01241700 100644 --- a/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md +++ b/sdk/customer-insights/arm-customerinsights/samples/v4/javascript/README.md @@ -102,7 +102,7 @@ node authorizationPoliciesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node authorizationPoliciesCreateOrUpdateSample.js +cross-env node authorizationPoliciesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md b/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md index 5265658dd3a0..91b5b152c340 100644 --- a/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md +++ b/sdk/customer-insights/arm-customerinsights/samples/v4/typescript/README.md @@ -114,7 +114,7 @@ node dist/authorizationPoliciesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/authorizationPoliciesCreateOrUpdateSample.js +cross-env node dist/authorizationPoliciesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dashboard/arm-dashboard/package.json b/sdk/dashboard/arm-dashboard/package.json index 3ab28c5f724d..8034f7e8a9aa 100644 --- a/sdk/dashboard/arm-dashboard/package.json +++ b/sdk/dashboard/arm-dashboard/package.json @@ -67,12 +67,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -84,29 +84,33 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md b/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md index 794a1e93003a..e865dd04c064 100644 --- a/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md +++ b/sdk/dashboard/arm-dashboard/samples/v2-beta/javascript/README.md @@ -68,7 +68,7 @@ node grafanaCheckEnterpriseDetailsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node grafanaCheckEnterpriseDetailsSample.js +cross-env node grafanaCheckEnterpriseDetailsSample.js ``` ## Next Steps diff --git a/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md b/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md index c451dfcff431..d2503f9b63bc 100644 --- a/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md +++ b/sdk/dashboard/arm-dashboard/samples/v2-beta/typescript/README.md @@ -80,7 +80,7 @@ node dist/grafanaCheckEnterpriseDetailsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/grafanaCheckEnterpriseDetailsSample.js +cross-env node dist/grafanaCheckEnterpriseDetailsSample.js ``` ## Next Steps diff --git a/sdk/databasewatcher/arm-databasewatcher/package.json b/sdk/databasewatcher/arm-databasewatcher/package.json index bf6e8d430d57..bef437e2eac1 100644 --- a/sdk/databasewatcher/arm-databasewatcher/package.json +++ b/sdk/databasewatcher/arm-databasewatcher/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md index d8e1ebe8c54f..f312ff3e5bdc 100644 --- a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md +++ b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/javascript/README.md @@ -60,7 +60,7 @@ node alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js +cross-env node alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md index cea66969f4dc..61cad366057e 100644 --- a/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md +++ b/sdk/databasewatcher/arm-databasewatcher/samples/v1-beta/typescript/README.md @@ -72,7 +72,7 @@ node dist/alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js +cross-env node dist/alertRuleResourcesAlertRuleResourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databoundaries/arm-databoundaries/package.json b/sdk/databoundaries/arm-databoundaries/package.json index 5722a9abed05..916742bd5982 100644 --- a/sdk/databoundaries/arm-databoundaries/package.json +++ b/sdk/databoundaries/arm-databoundaries/package.json @@ -35,8 +35,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -55,7 +58,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md index 5e76ff2a9fca..dfc1f40761dc 100644 --- a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md +++ b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/javascript/README.md @@ -39,7 +39,7 @@ node dataBoundariesGetScopeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dataBoundariesGetScopeSample.js +cross-env node dataBoundariesGetScopeSample.js ``` ## Next Steps diff --git a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md index ce3a4fe3fbb4..3f68a1655480 100644 --- a/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md +++ b/sdk/databoundaries/arm-databoundaries/samples/v1-beta/typescript/README.md @@ -51,7 +51,7 @@ node dist/dataBoundariesGetScopeSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/dataBoundariesGetScopeSample.js +cross-env node dist/dataBoundariesGetScopeSample.js ``` ## Next Steps diff --git a/sdk/databox/arm-databox/package.json b/sdk/databox/arm-databox/package.json index 8c830023d3f6..aedccdad83e5 100644 --- a/sdk/databox/arm-databox/package.json +++ b/sdk/databox/arm-databox/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databox/arm-databox/samples/v5/javascript/README.md b/sdk/databox/arm-databox/samples/v5/javascript/README.md index 1555919d33c1..63dbf7adea17 100644 --- a/sdk/databox/arm-databox/samples/v5/javascript/README.md +++ b/sdk/databox/arm-databox/samples/v5/javascript/README.md @@ -54,7 +54,7 @@ node jobsBookShipmentPickUpSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node jobsBookShipmentPickUpSample.js +cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node jobsBookShipmentPickUpSample.js ``` ## Next Steps diff --git a/sdk/databox/arm-databox/samples/v5/typescript/README.md b/sdk/databox/arm-databox/samples/v5/typescript/README.md index c1163fad3707..43b2c61ceab2 100644 --- a/sdk/databox/arm-databox/samples/v5/typescript/README.md +++ b/sdk/databox/arm-databox/samples/v5/typescript/README.md @@ -66,7 +66,7 @@ node dist/jobsBookShipmentPickUpSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node dist/jobsBookShipmentPickUpSample.js +cross-env DATABOX_SUBSCRIPTION_ID="" DATABOX_RESOURCE_GROUP="" node dist/jobsBookShipmentPickUpSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json index e227a34b1b4c..1f49252319ca 100644 --- a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json +++ b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 15a07a4ef55c..8f3afec3e045 100644 --- a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -95,7 +95,7 @@ node alertsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node alertsGetSample.js +cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node alertsGetSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index f0ea15ea93eb..cc26b2e5fbc2 100644 --- a/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/databoxedge/arm-databoxedge-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -107,7 +107,7 @@ node dist/alertsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node dist/alertsGetSample.js +cross-env DATABOXEDGE_SUBSCRIPTION_ID="" DATABOXEDGE_RESOURCE_GROUP="" node dist/alertsGetSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge/package.json b/sdk/databoxedge/arm-databoxedge/package.json index 746569fc3727..561f4d6e8a57 100644 --- a/sdk/databoxedge/arm-databoxedge/package.json +++ b/sdk/databoxedge/arm-databoxedge/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md b/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md index c47e5351bbeb..6c1cfac7832d 100644 --- a/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md +++ b/sdk/databoxedge/arm-databoxedge/samples/v2/javascript/README.md @@ -111,7 +111,7 @@ node addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node addonsCreateOrUpdateSample.js +cross-env node addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md b/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md index bd844fe33d3c..9c5806d51b25 100644 --- a/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md +++ b/sdk/databoxedge/arm-databoxedge/samples/v2/typescript/README.md @@ -123,7 +123,7 @@ node dist/addonsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/addonsCreateOrUpdateSample.js +cross-env node dist/addonsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databricks/arm-databricks/package.json b/sdk/databricks/arm-databricks/package.json index c777b66ff255..2cef8448963f 100644 --- a/sdk/databricks/arm-databricks/package.json +++ b/sdk/databricks/arm-databricks/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/databricks/arm-databricks/samples/v3/javascript/README.md b/sdk/databricks/arm-databricks/samples/v3/javascript/README.md index 1670ae434207..cab765571ba2 100644 --- a/sdk/databricks/arm-databricks/samples/v3/javascript/README.md +++ b/sdk/databricks/arm-databricks/samples/v3/javascript/README.md @@ -60,7 +60,7 @@ node accessConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node accessConnectorsCreateOrUpdateSample.js +cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node accessConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/databricks/arm-databricks/samples/v3/typescript/README.md b/sdk/databricks/arm-databricks/samples/v3/typescript/README.md index f09acd9db1dd..fd9f9ca76b99 100644 --- a/sdk/databricks/arm-databricks/samples/v3/typescript/README.md +++ b/sdk/databricks/arm-databricks/samples/v3/typescript/README.md @@ -72,7 +72,7 @@ node dist/accessConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node dist/accessConnectorsCreateOrUpdateSample.js +cross-env DATABRICKS_SUBSCRIPTION_ID="" DATABRICKS_RESOURCE_GROUP="" node dist/accessConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/datacatalog/arm-datacatalog/package.json b/sdk/datacatalog/arm-datacatalog/package.json index 6e205683b87c..97e19d275f59 100644 --- a/sdk/datacatalog/arm-datacatalog/package.json +++ b/sdk/datacatalog/arm-datacatalog/package.json @@ -37,7 +37,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md b/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md index f402aec1441e..c2e730a489b7 100644 --- a/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md +++ b/sdk/datacatalog/arm-datacatalog/samples/v4/javascript/README.md @@ -42,7 +42,7 @@ node adcCatalogsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node adcCatalogsCreateOrUpdateSample.js +cross-env node adcCatalogsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md b/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md index 02adbdf88582..49396884fb76 100644 --- a/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md +++ b/sdk/datacatalog/arm-datacatalog/samples/v4/typescript/README.md @@ -54,7 +54,7 @@ node dist/adcCatalogsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/adcCatalogsCreateOrUpdateSample.js +cross-env node dist/adcCatalogsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/datadog/arm-datadog/package.json b/sdk/datadog/arm-datadog/package.json index 9948f1a71e09..9f26945cef5a 100644 --- a/sdk/datadog/arm-datadog/package.json +++ b/sdk/datadog/arm-datadog/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/README.md b/sdk/datadog/arm-datadog/samples/v3/javascript/README.md index 077879157bd1..ba39aea5eba6 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/README.md +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/README.md @@ -65,7 +65,7 @@ node creationSupportedGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATADOG_SUBSCRIPTION_ID="" node creationSupportedGetSample.js +cross-env DATADOG_SUBSCRIPTION_ID="" node creationSupportedGetSample.js ``` ## Next Steps diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/README.md b/sdk/datadog/arm-datadog/samples/v3/typescript/README.md index b9bd5542812c..453b5f4a085e 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/README.md +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/README.md @@ -77,7 +77,7 @@ node dist/creationSupportedGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATADOG_SUBSCRIPTION_ID="" node dist/creationSupportedGetSample.js +cross-env DATADOG_SUBSCRIPTION_ID="" node dist/creationSupportedGetSample.js ``` ## Next Steps diff --git a/sdk/datafactory/arm-datafactory/package.json b/sdk/datafactory/arm-datafactory/package.json index bb79af0b6ab0..9a3e2b25cb0a 100644 --- a/sdk/datafactory/arm-datafactory/package.json +++ b/sdk/datafactory/arm-datafactory/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md b/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md index cf83bbe14ba1..470143e0fd0a 100644 --- a/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md +++ b/sdk/datafactory/arm-datafactory/samples/v19/javascript/README.md @@ -138,7 +138,7 @@ node activityRunsQueryByPipelineRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node activityRunsQueryByPipelineRunSample.js +cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node activityRunsQueryByPipelineRunSample.js ``` ## Next Steps diff --git a/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md b/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md index 8a49f86a40ea..3f7dd1df26bb 100644 --- a/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md +++ b/sdk/datafactory/arm-datafactory/samples/v19/typescript/README.md @@ -150,7 +150,7 @@ node dist/activityRunsQueryByPipelineRunSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node dist/activityRunsQueryByPipelineRunSample.js +cross-env DATAFACTORY_SUBSCRIPTION_ID="" DATAFACTORY_RESOURCE_GROUP="" node dist/activityRunsQueryByPipelineRunSample.js ``` ## Next Steps diff --git a/sdk/datalake-analytics/arm-datalake-analytics/package.json b/sdk/datalake-analytics/arm-datalake-analytics/package.json index 04f2f3c39e19..c497786782d9 100644 --- a/sdk/datalake-analytics/arm-datalake-analytics/package.json +++ b/sdk/datalake-analytics/arm-datalake-analytics/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md index 233b69b9a5af..8ed7a06cf657 100644 --- a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md +++ b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/javascript/README.md @@ -67,7 +67,7 @@ node accountsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node accountsCheckNameAvailabilitySample.js +cross-env node accountsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md index 505b28280175..07c5dc80b7d6 100644 --- a/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md +++ b/sdk/datalake-analytics/arm-datalake-analytics/samples/v2-beta/typescript/README.md @@ -79,7 +79,7 @@ node dist/accountsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/accountsCheckNameAvailabilitySample.js +cross-env node dist/accountsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/datamigration/arm-datamigration/package.json b/sdk/datamigration/arm-datamigration/package.json index f5b1ca7640ae..a76d9a6464af 100644 --- a/sdk/datamigration/arm-datamigration/package.json +++ b/sdk/datamigration/arm-datamigration/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,19 +59,19 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", - "test:node:esm": "dev-tool run test:vitest --esm" + "test:node": "dev-tool run test:vitest", + "test:node:esm": "dev-tool run test:vitest --esm", + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md b/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md index dca53d8e10cd..99a1d31af939 100644 --- a/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md +++ b/sdk/datamigration/arm-datamigration/samples/v3/javascript/README.md @@ -163,7 +163,7 @@ node createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js +cross-env node createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js ``` ## Next Steps diff --git a/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md b/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md index c9ba56cd61dc..a007d207e4cb 100644 --- a/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md +++ b/sdk/datamigration/arm-datamigration/samples/v3/typescript/README.md @@ -175,7 +175,7 @@ node dist/createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js +cross-env node dist/createOrUpdateDatabaseMigrationResourceWithMaximumParameters.js ``` ## Next Steps diff --git a/sdk/dataprotection/arm-dataprotection/package.json b/sdk/dataprotection/arm-dataprotection/package.json index 78e9c1942cd4..895c97982c11 100644 --- a/sdk/dataprotection/arm-dataprotection/package.json +++ b/sdk/dataprotection/arm-dataprotection/package.json @@ -82,12 +82,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -101,28 +101,32 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md b/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md index 05160a5f8e23..5704e12f50ff 100644 --- a/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md +++ b/sdk/dataprotection/arm-dataprotection/samples/v4/javascript/README.md @@ -109,7 +109,7 @@ node backupInstancesAdhocBackupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node backupInstancesAdhocBackupSample.js +cross-env node backupInstancesAdhocBackupSample.js ``` ## Next Steps diff --git a/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md b/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md index 0e4cc2ca8b58..1e763424984b 100644 --- a/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md +++ b/sdk/dataprotection/arm-dataprotection/samples/v4/typescript/README.md @@ -121,7 +121,7 @@ node dist/backupInstancesAdhocBackupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/backupInstancesAdhocBackupSample.js +cross-env node dist/backupInstancesAdhocBackupSample.js ``` ## Next Steps diff --git a/sdk/defendereasm/arm-defendereasm/package.json b/sdk/defendereasm/arm-defendereasm/package.json index 209c9c70bda7..6d5307e8ca25 100644 --- a/sdk/defendereasm/arm-defendereasm/package.json +++ b/sdk/defendereasm/arm-defendereasm/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md index e8b5dd726869..afc671c3c1e2 100644 --- a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md +++ b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/javascript/README.md @@ -49,7 +49,7 @@ node labelsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node labelsCreateAndUpdateSample.js +cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node labelsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md index 7e58ef75303b..4cdeeb319f9d 100644 --- a/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md +++ b/sdk/defendereasm/arm-defendereasm/samples/v1-beta/typescript/README.md @@ -61,7 +61,7 @@ node dist/labelsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node dist/labelsCreateAndUpdateSample.js +cross-env DEFENDEREASM_SUBSCRIPTION_ID="" DEFENDEREASM_RESOURCE_GROUP="" node dist/labelsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/dell/arm-dell-storage/package.json b/sdk/dell/arm-dell-storage/package.json index ab998637a4fa..56e1ec0e6634 100644 --- a/sdk/dell/arm-dell-storage/package.json +++ b/sdk/dell/arm-dell-storage/package.json @@ -80,9 +80,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -90,11 +94,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "integration-test": "npm run integration-test:node && npm run integration-test:browser", "integration-test:browser": "echo skipped", diff --git a/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md b/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md index cb116a0d3c48..5e168ecb2987 100644 --- a/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md +++ b/sdk/dell/arm-dell-storage/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fileSystemsCreateOrUpdateSample.js +cross-env node fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md b/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md index eeb73407d7ae..11937603a879 100644 --- a/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md +++ b/sdk/dell/arm-dell-storage/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fileSystemsCreateOrUpdateSample.js +cross-env node dist/fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dependencymap/arm-dependencymap/package.json b/sdk/dependencymap/arm-dependencymap/package.json index 872f529761fc..065cb0aa34f5 100644 --- a/sdk/dependencymap/arm-dependencymap/package.json +++ b/sdk/dependencymap/arm-dependencymap/package.json @@ -81,20 +81,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md index 7f51a126a845..17d59267c59a 100644 --- a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md +++ b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node discoverySourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node discoverySourcesCreateOrUpdateSample.js +cross-env node discoverySourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md index ee03f5437637..8c0d716463a4 100644 --- a/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md +++ b/sdk/dependencymap/arm-dependencymap/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/discoverySourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/discoverySourcesCreateOrUpdateSample.js +cross-env node dist/discoverySourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deploymentmanager/arm-deploymentmanager/package.json b/sdk/deploymentmanager/arm-deploymentmanager/package.json index 2cf4b74d3a71..c25d80c112f4 100644 --- a/sdk/deploymentmanager/arm-deploymentmanager/package.json +++ b/sdk/deploymentmanager/arm-deploymentmanager/package.json @@ -37,7 +37,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md index 0846756dde47..3de58b2199bc 100644 --- a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md +++ b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/javascript/README.md @@ -63,7 +63,7 @@ node artifactSourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node artifactSourcesCreateOrUpdateSample.js +cross-env node artifactSourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md index 8470d408e055..393fe4af98fa 100644 --- a/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md +++ b/sdk/deploymentmanager/arm-deploymentmanager/samples/v4-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/artifactSourcesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/artifactSourcesCreateOrUpdateSample.js +cross-env node dist/artifactSourcesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/desktopvirtualization/arm-desktopvirtualization/package.json b/sdk/desktopvirtualization/arm-desktopvirtualization/package.json index 616ce24d6aa1..d5457db7ff8f 100644 --- a/sdk/desktopvirtualization/arm-desktopvirtualization/package.json +++ b/sdk/desktopvirtualization/arm-desktopvirtualization/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md index f05094c373d1..ee569559c1a0 100644 --- a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md +++ b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/javascript/README.md @@ -116,7 +116,7 @@ node appAttachPackageCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node appAttachPackageCreateOrUpdateSample.js +cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node appAttachPackageCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md index 41605908c38c..d9e4e3c39e8d 100644 --- a/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md +++ b/sdk/desktopvirtualization/arm-desktopvirtualization/samples/v1/typescript/README.md @@ -128,7 +128,7 @@ node dist/appAttachPackageCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node dist/appAttachPackageCreateOrUpdateSample.js +cross-env DESKTOPVIRTUALIZATION_SUBSCRIPTION_ID="" DESKTOPVIRTUALIZATION_RESOURCE_GROUP="" node dist/appAttachPackageCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/devcenter/arm-devcenter/package.json b/sdk/devcenter/arm-devcenter/package.json index 49d455eadb3c..32b9379b8b58 100644 --- a/sdk/devcenter/arm-devcenter/package.json +++ b/sdk/devcenter/arm-devcenter/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md b/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md index 398d891f6750..303384c758fa 100644 --- a/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md +++ b/sdk/devcenter/arm-devcenter/samples/v1/javascript/README.md @@ -131,7 +131,7 @@ node attachedNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node attachedNetworksCreateOrUpdateSample.js +cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node attachedNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md b/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md index aff1f35285ae..00781c2e492b 100644 --- a/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md +++ b/sdk/devcenter/arm-devcenter/samples/v1/typescript/README.md @@ -143,7 +143,7 @@ node dist/attachedNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node dist/attachedNetworksCreateOrUpdateSample.js +cross-env DEVCENTER_SUBSCRIPTION_ID="" DEVCENTER_RESOURCE_GROUP="" node dist/attachedNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/package.json b/sdk/devcenter/developer-devcenter-rest/package.json index 0eae1f9d8f59..ac2b8aca209b 100644 --- a/sdk/devcenter/developer-devcenter-rest/package.json +++ b/sdk/devcenter/developer-devcenter-rest/package.json @@ -76,20 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md index 4f0ceddc9578..67e3dc2f5a76 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/javascript/README.md @@ -38,7 +38,7 @@ node sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md index d4dac36e7e63..fa02a3f7e0e6 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1-beta/typescript/README.md @@ -50,7 +50,7 @@ node dist/sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md index f53668f0928d..d5e630a4aa08 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md b/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md index e0565e1d287a..53cc0bd792d5 100644 --- a/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md +++ b/sdk/devcenter/developer-devcenter-rest/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/sampleCreateDevBox.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js +cross-env DEVCENTER_ENDPOINT="" node dist/sampleCreateDevBox.js ``` ## Next Steps diff --git a/sdk/devhub/arm-devhub/package.json b/sdk/devhub/arm-devhub/package.json index 4ef09966c2e6..a775342219fa 100644 --- a/sdk/devhub/arm-devhub/package.json +++ b/sdk/devhub/arm-devhub/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md b/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md index bb1d5909b445..6e06745f106b 100644 --- a/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md +++ b/sdk/devhub/arm-devhub/samples/v1-beta/javascript/README.md @@ -47,7 +47,7 @@ node generatePreviewArtifactsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVHUB_SUBSCRIPTION_ID="" node generatePreviewArtifactsSample.js +cross-env DEVHUB_SUBSCRIPTION_ID="" node generatePreviewArtifactsSample.js ``` ## Next Steps diff --git a/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md b/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md index 3208b8a892c0..284bc67ed4c3 100644 --- a/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md +++ b/sdk/devhub/arm-devhub/samples/v1-beta/typescript/README.md @@ -59,7 +59,7 @@ node dist/generatePreviewArtifactsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVHUB_SUBSCRIPTION_ID="" node dist/generatePreviewArtifactsSample.js +cross-env DEVHUB_SUBSCRIPTION_ID="" node dist/generatePreviewArtifactsSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json index f2e874bdee8f..681151fbb74a 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md index 42087d459393..fb6d544d3a53 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/javascript/README.md @@ -60,7 +60,7 @@ node dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md index a4cf89f8549e..f8a8a0061d18 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v5/typescript/README.md @@ -72,7 +72,7 @@ node dist/dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md index afbded6cda2b..8eadc9a0bf78 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/javascript/README.md @@ -60,7 +60,7 @@ node dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md index fddb496bf264..8656f9e6d4d0 100644 --- a/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md +++ b/sdk/deviceprovisioningservices/arm-deviceprovisioningservices/samples/v6-beta/typescript/README.md @@ -72,7 +72,7 @@ node dist/dpsCertificateCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js +cross-env DEVICEPROVISIONINGSERVICES_SUBSCRIPTION_ID="" DEVICEPROVISIONINGSERVICES_RESOURCE_GROUP="" node dist/dpsCertificateCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/deviceregistry/arm-deviceregistry/package.json b/sdk/deviceregistry/arm-deviceregistry/package.json index 3226a99ae883..37d52f9bebcc 100644 --- a/sdk/deviceregistry/arm-deviceregistry/package.json +++ b/sdk/deviceregistry/arm-deviceregistry/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md b/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md index 6b186a0637ad..f2072adcd21f 100644 --- a/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md +++ b/sdk/deviceregistry/arm-deviceregistry/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js +cross-env node assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md b/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md index 1d3a70310b12..a058eb40617c 100644 --- a/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md +++ b/sdk/deviceregistry/arm-deviceregistry/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js +cross-env node dist/assetEndpointProfilesAssetEndpointProfilesCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/deviceupdate/arm-deviceupdate/package.json b/sdk/deviceupdate/arm-deviceupdate/package.json index b6a69c1634aa..7884d678fd41 100644 --- a/sdk/deviceupdate/arm-deviceupdate/package.json +++ b/sdk/deviceupdate/arm-deviceupdate/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md b/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md index 3e1956cf778b..6ca7c94e4826 100644 --- a/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md +++ b/sdk/deviceupdate/arm-deviceupdate/samples/v1/javascript/README.md @@ -63,7 +63,7 @@ node accountsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node accountsCreateSample.js +cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node accountsCreateSample.js ``` ## Next Steps diff --git a/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md b/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md index bc77ab157ef2..cff463acf85d 100644 --- a/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md +++ b/sdk/deviceupdate/arm-deviceupdate/samples/v1/typescript/README.md @@ -75,7 +75,7 @@ node dist/accountsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node dist/accountsCreateSample.js +cross-env DEVICEUPDATE_SUBSCRIPTION_ID="" DEVICEUPDATE_RESOURCE_GROUP="" node dist/accountsCreateSample.js ``` ## Next Steps diff --git a/sdk/deviceupdate/iot-device-update-rest/package.json b/sdk/deviceupdate/iot-device-update-rest/package.json index b4b7d9da9bfe..b2f7ef3a0feb 100644 --- a/sdk/deviceupdate/iot-device-update-rest/package.json +++ b/sdk/deviceupdate/iot-device-update-rest/package.json @@ -54,11 +54,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -91,9 +91,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md b/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md index 0aa2f4407a55..89261d1de124 100644 --- a/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md +++ b/sdk/deviceupdate/iot-device-update-rest/samples/v1/javascript/README.md @@ -44,7 +44,7 @@ node deleteUpdate.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node deleteUpdate.js +cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node deleteUpdate.js ``` ## Next Steps diff --git a/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md b/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md index 6c0d88e1bd7e..2b604ff46bc0 100644 --- a/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md +++ b/sdk/deviceupdate/iot-device-update-rest/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ node dist/deleteUpdate.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node dist/deleteUpdate.js +cross-env ENDPOINT="" INSTANCE_ID="" DEVICEUPDATE_UPDATE_PROVIDER="" DEVICEUPDATE_UPDATE_NAME="" DEVICEUPDATE_UPDATE_VERSION="" node dist/deleteUpdate.js ``` ## Next Steps diff --git a/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json b/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json index 4e88baa900ad..f3ec4f5e8288 100644 --- a/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json +++ b/sdk/devopsinfrastructure/arm-devopsinfrastructure/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md index 93d4c6341d4d..97bb421fac3e 100644 --- a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md +++ b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node imageVersionsListByImageSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node imageVersionsListByImageSample.js +cross-env node imageVersionsListByImageSample.js ``` ## Next Steps diff --git a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md index 2741d8657fe8..57f554f0e32c 100644 --- a/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md +++ b/sdk/devopsinfrastructure/arm-devopsinfrastructure/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/imageVersionsListByImageSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/imageVersionsListByImageSample.js +cross-env node dist/imageVersionsListByImageSample.js ``` ## Next Steps diff --git a/sdk/devspaces/arm-devspaces/package.json b/sdk/devspaces/arm-devspaces/package.json index c81bf2421602..6d5885f58ef1 100644 --- a/sdk/devspaces/arm-devspaces/package.json +++ b/sdk/devspaces/arm-devspaces/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md b/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md index 38ae61d501d0..98a16d938e30 100644 --- a/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md +++ b/sdk/devspaces/arm-devspaces/samples/v2/javascript/README.md @@ -44,7 +44,7 @@ node containerHostMappingsGetContainerHostMappingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node containerHostMappingsGetContainerHostMappingSample.js +cross-env node containerHostMappingsGetContainerHostMappingSample.js ``` ## Next Steps diff --git a/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md b/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md index 52e466df7e2c..de3360cccba2 100644 --- a/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md +++ b/sdk/devspaces/arm-devspaces/samples/v2/typescript/README.md @@ -56,7 +56,7 @@ node dist/containerHostMappingsGetContainerHostMappingSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/containerHostMappingsGetContainerHostMappingSample.js +cross-env node dist/containerHostMappingsGetContainerHostMappingSample.js ``` ## Next Steps diff --git a/sdk/devtestlabs/arm-devtestlabs/package.json b/sdk/devtestlabs/arm-devtestlabs/package.json index 79d3b409149e..cfc3706d8689 100644 --- a/sdk/devtestlabs/arm-devtestlabs/package.json +++ b/sdk/devtestlabs/arm-devtestlabs/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md b/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md index 52678c4b4d76..e7b6e3be4a8f 100644 --- a/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md +++ b/sdk/devtestlabs/arm-devtestlabs/samples/v4/javascript/README.md @@ -168,7 +168,7 @@ node armTemplatesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node armTemplatesGetSample.js +cross-env node armTemplatesGetSample.js ``` ## Next Steps diff --git a/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md b/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md index 8354bb2fdc72..4f8fce16c3ec 100644 --- a/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md +++ b/sdk/devtestlabs/arm-devtestlabs/samples/v4/typescript/README.md @@ -180,7 +180,7 @@ node dist/armTemplatesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/armTemplatesGetSample.js +cross-env node dist/armTemplatesGetSample.js ``` ## Next Steps diff --git a/sdk/digitaltwins/arm-digitaltwins/package.json b/sdk/digitaltwins/arm-digitaltwins/package.json index 3856c6be048b..73fda8d125d1 100644 --- a/sdk/digitaltwins/arm-digitaltwins/package.json +++ b/sdk/digitaltwins/arm-digitaltwins/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md b/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md index 4230767024d7..d1ee67b3f508 100644 --- a/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md +++ b/sdk/digitaltwins/arm-digitaltwins/samples/v3/javascript/README.md @@ -58,7 +58,7 @@ node digitalTwinsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node digitalTwinsCheckNameAvailabilitySample.js +cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node digitalTwinsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md b/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md index dd6a2981f6c4..ab65732273fe 100644 --- a/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md +++ b/sdk/digitaltwins/arm-digitaltwins/samples/v3/typescript/README.md @@ -70,7 +70,7 @@ node dist/digitalTwinsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node dist/digitalTwinsCheckNameAvailabilitySample.js +cross-env DIGITALTWINS_SUBSCRIPTION_ID="" node dist/digitalTwinsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/package.json b/sdk/digitaltwins/digital-twins-core/package.json index c7ab2ca2134b..c037a7915c40 100644 --- a/sdk/digitaltwins/digital-twins-core/package.json +++ b/sdk/digitaltwins/digital-twins-core/package.json @@ -14,12 +14,12 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm dist-browser test-dist test-browser types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm dist-browser test-dist test-browser types *.tgz *.log", "execute:js-samples": "node ../../../common/scripts/run-samples.js samples/javascript/", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -71,9 +71,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md index 3fe132618373..2ccf3a55306b 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v1/javascript/README.md @@ -66,7 +66,7 @@ node dt_component_lifecycle.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md index 836bc65faa33..971824adbcdd 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v1/typescript/README.md @@ -78,7 +78,7 @@ node dist/dt_component_lifecycle.ts Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md index 906e3f61ba9a..208696c6a7fa 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v2/javascript/README.md @@ -66,7 +66,7 @@ node dt_component_lifecycle.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md b/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md index 032457e64059..7995feb54412 100644 --- a/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md +++ b/sdk/digitaltwins/digital-twins-core/samples/v2/typescript/README.md @@ -78,7 +78,7 @@ node dist/dt_component_lifecycle.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js +cross-env AZURE_DIGITALTWINS_URL="" node dist/dt_component_lifecycle.js ``` ## Next Steps diff --git a/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json b/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json index f435938beb11..f55299b7d05e 100644 --- a/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json +++ b/sdk/dns/arm-dns-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dns/arm-dns/package.json b/sdk/dns/arm-dns/package.json index fc1ffa3fb5d2..e4cff0261276 100644 --- a/sdk/dns/arm-dns/package.json +++ b/sdk/dns/arm-dns/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md b/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md index 5543007a2a83..afce92bbbfca 100644 --- a/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md +++ b/sdk/dns/arm-dns/samples/v5-beta/javascript/README.md @@ -54,7 +54,7 @@ node dnsResourceReferenceGetByTargetResourcesSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNS_SUBSCRIPTION_ID="" node dnsResourceReferenceGetByTargetResourcesSample.js +cross-env DNS_SUBSCRIPTION_ID="" node dnsResourceReferenceGetByTargetResourcesSample.js ``` ## Next Steps diff --git a/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md b/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md index e8a469600542..138619ef4832 100644 --- a/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md +++ b/sdk/dns/arm-dns/samples/v5-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/dnsResourceReferenceGetByTargetResourcesSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNS_SUBSCRIPTION_ID="" node dist/dnsResourceReferenceGetByTargetResourcesSample.js +cross-env DNS_SUBSCRIPTION_ID="" node dist/dnsResourceReferenceGetByTargetResourcesSample.js ``` ## Next Steps diff --git a/sdk/dnsresolver/arm-dnsresolver/package.json b/sdk/dnsresolver/arm-dnsresolver/package.json index beae1e3f4278..ebed1d32c377 100644 --- a/sdk/dnsresolver/arm-dnsresolver/package.json +++ b/sdk/dnsresolver/arm-dnsresolver/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md b/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md index 969124935c5f..d58b602bbb2f 100644 --- a/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md +++ b/sdk/dnsresolver/arm-dnsresolver/samples/v1/javascript/README.md @@ -94,7 +94,7 @@ node dnsForwardingRulesetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dnsForwardingRulesetsCreateOrUpdateSample.js +cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dnsForwardingRulesetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md b/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md index 4ae4e4e32fcb..25cd038dc17d 100644 --- a/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md +++ b/sdk/dnsresolver/arm-dnsresolver/samples/v1/typescript/README.md @@ -106,7 +106,7 @@ node dist/dnsForwardingRulesetsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dist/dnsForwardingRulesetsCreateOrUpdateSample.js +cross-env DNSRESOLVER_SUBSCRIPTION_ID="" DNSRESOLVER_RESOURCE_GROUP="" node dist/dnsForwardingRulesetsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/documentintelligence/ai-document-intelligence-rest/package.json b/sdk/documentintelligence/ai-document-intelligence-rest/package.json index bcbadd6e3905..c317d311d202 100644 --- a/sdk/documentintelligence/ai-document-intelligence-rest/package.json +++ b/sdk/documentintelligence/ai-document-intelligence-rest/package.json @@ -74,21 +74,25 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz", - "execute:samples": "echo skipped", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz", "customize": "dev-tool customization apply-v2 -s ./generated -c ./src && npm run format", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "execute:samples": "echo skipped", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md index 93a453b1b501..c692937b42f9 100644 --- a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md +++ b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js +cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js ``` ## Next Steps diff --git a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md index 2c02c20eeb64..b6883944f335 100644 --- a/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md +++ b/sdk/documentintelligence/ai-document-intelligence-rest/samples/v1/typescript/README.md @@ -65,7 +65,7 @@ node dist/composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js +cross-env DOCUMENT_INTELLIGENCE_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/package.json b/sdk/documenttranslator/ai-document-translator-rest/package.json index bf8369c70f40..8bf73486ad9e 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/package.json +++ b/sdk/documenttranslator/ai-document-translator-rest/package.json @@ -57,11 +57,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -93,9 +93,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md index 0e678140fdc1..f1d404aa7631 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node listFormats.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md index 1ae77187e7e7..92f45a447ca2 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/listFormats.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md index 8bcf868e93d2..6ba775475eb5 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node listFormats.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node listFormats.js ``` ## Next Steps diff --git a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md index 8b4a43543e29..b8c6e967ab39 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md +++ b/sdk/documenttranslator/ai-document-translator-rest/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/listFormats.ts Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js +cross-env ENDPOINT="" DOCUMENT_TRANSLATOR_API_KEY="" node dist/listFormats.js ``` ## Next Steps diff --git a/sdk/domainservices/arm-domainservices/package.json b/sdk/domainservices/arm-domainservices/package.json index 73f937c1e0d7..16da0da799d3 100644 --- a/sdk/domainservices/arm-domainservices/package.json +++ b/sdk/domainservices/arm-domainservices/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md b/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md index cf82f5f5d692..4907eb9dc9dc 100644 --- a/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md +++ b/sdk/domainservices/arm-domainservices/samples/v4/javascript/README.md @@ -49,7 +49,7 @@ node domainServiceOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node domainServiceOperationsListSample.js +cross-env node domainServiceOperationsListSample.js ``` ## Next Steps diff --git a/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md b/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md index 9a83dea5b3e1..16a9b505cb8c 100644 --- a/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md +++ b/sdk/domainservices/arm-domainservices/samples/v4/typescript/README.md @@ -61,7 +61,7 @@ node dist/domainServiceOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/domainServiceOperationsListSample.js +cross-env node dist/domainServiceOperationsListSample.js ``` ## Next Steps diff --git a/sdk/durabletask/arm-durabletask/package.json b/sdk/durabletask/arm-durabletask/package.json index d6a1c81df06a..7ef093beea2a 100644 --- a/sdk/durabletask/arm-durabletask/package.json +++ b/sdk/durabletask/arm-durabletask/package.json @@ -64,12 +64,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -83,28 +83,32 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md b/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md index aee43a5462fd..516768642d36 100644 --- a/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md +++ b/sdk/durabletask/arm-durabletask/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md b/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md index 1b9ec96d0410..037efe1e9af9 100644 --- a/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md +++ b/sdk/durabletask/arm-durabletask/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/dynatrace/arm-dynatrace/package.json b/sdk/dynatrace/arm-dynatrace/package.json index f0a9a297ddc6..6913388fa6b7 100644 --- a/sdk/dynatrace/arm-dynatrace/package.json +++ b/sdk/dynatrace/arm-dynatrace/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md b/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md index c72e109c5fc2..9ad27024e14b 100644 --- a/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md +++ b/sdk/dynatrace/arm-dynatrace/samples/v2/javascript/README.md @@ -58,7 +58,7 @@ node monitorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node monitorsCreateOrUpdateSample.js +cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node monitorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md b/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md index 395ff15adbb0..675205eab795 100644 --- a/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md +++ b/sdk/dynatrace/arm-dynatrace/samples/v2/typescript/README.md @@ -70,7 +70,7 @@ node dist/monitorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node dist/monitorsCreateOrUpdateSample.js +cross-env DYNATRACE_SUBSCRIPTION_ID="" DYNATRACE_RESOURCE_GROUP="" node dist/monitorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/easm/defender-easm-rest/package.json b/sdk/easm/defender-easm-rest/package.json index 584370bb1d76..c7ffd4adffa4 100644 --- a/sdk/easm/defender-easm-rest/package.json +++ b/sdk/easm/defender-easm-rest/package.json @@ -73,20 +73,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md b/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md index b045517749d4..393a1e30a404 100644 --- a/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md +++ b/sdk/easm/defender-easm-rest/samples/v1-beta/javascript/README.md @@ -40,7 +40,7 @@ node discoTemplateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node discoTemplateSample.js +cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node discoTemplateSample.js ``` ## Next Steps diff --git a/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md b/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md index 8984b7116f56..6d6356e69d4c 100644 --- a/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md +++ b/sdk/easm/defender-easm-rest/samples/v1-beta/typescript/README.md @@ -52,7 +52,7 @@ node dist/discoTemplateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node dist/discoTemplateSample.js +cross-env SUBSCRIPTIONID="" RESOURCEGROUPNAME="" WORKSPACENAME="" REGION="" PARTIAL_NAME="" node dist/discoTemplateSample.js ``` ## Next Steps diff --git a/sdk/edgezones/arm-edgezones/package.json b/sdk/edgezones/arm-edgezones/package.json index 7b00f208f793..b1cd080973c4 100644 --- a/sdk/edgezones/arm-edgezones/package.json +++ b/sdk/edgezones/arm-edgezones/package.json @@ -74,20 +74,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/education/arm-education/package.json b/sdk/education/arm-education/package.json index c6910f46eceb..2b3b521d1bc2 100644 --- a/sdk/education/arm-education/package.json +++ b/sdk/education/arm-education/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/education/arm-education/samples/v1-beta/javascript/README.md b/sdk/education/arm-education/samples/v1-beta/javascript/README.md index be6a11090331..69d4b2965227 100644 --- a/sdk/education/arm-education/samples/v1-beta/javascript/README.md +++ b/sdk/education/arm-education/samples/v1-beta/javascript/README.md @@ -57,7 +57,7 @@ node grantsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node grantsGetSample.js +cross-env node grantsGetSample.js ``` ## Next Steps diff --git a/sdk/education/arm-education/samples/v1-beta/typescript/README.md b/sdk/education/arm-education/samples/v1-beta/typescript/README.md index 03b1c148d071..38f0340061cd 100644 --- a/sdk/education/arm-education/samples/v1-beta/typescript/README.md +++ b/sdk/education/arm-education/samples/v1-beta/typescript/README.md @@ -69,7 +69,7 @@ node dist/grantsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/grantsGetSample.js +cross-env node dist/grantsGetSample.js ``` ## Next Steps diff --git a/sdk/elastic/arm-elastic/package.json b/sdk/elastic/arm-elastic/package.json index ba14f69b4fbb..1b5e78790d90 100644 --- a/sdk/elastic/arm-elastic/package.json +++ b/sdk/elastic/arm-elastic/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/elastic/arm-elastic/samples/v1/javascript/README.md b/sdk/elastic/arm-elastic/samples/v1/javascript/README.md index 0783e0517499..5f902b4cea96 100644 --- a/sdk/elastic/arm-elastic/samples/v1/javascript/README.md +++ b/sdk/elastic/arm-elastic/samples/v1/javascript/README.md @@ -73,7 +73,7 @@ node allTrafficFiltersListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node allTrafficFiltersListSample.js +cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node allTrafficFiltersListSample.js ``` ## Next Steps diff --git a/sdk/elastic/arm-elastic/samples/v1/typescript/README.md b/sdk/elastic/arm-elastic/samples/v1/typescript/README.md index f611f0ad97b7..084ba9836e8d 100644 --- a/sdk/elastic/arm-elastic/samples/v1/typescript/README.md +++ b/sdk/elastic/arm-elastic/samples/v1/typescript/README.md @@ -85,7 +85,7 @@ node dist/allTrafficFiltersListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node dist/allTrafficFiltersListSample.js +cross-env ELASTIC_SUBSCRIPTION_ID="" ELASTIC_RESOURCE_GROUP="" node dist/allTrafficFiltersListSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/package.json b/sdk/elasticsans/arm-elasticsan/package.json index 2f14fac185a6..d9bb4cc998e7 100644 --- a/sdk/elasticsans/arm-elasticsan/package.json +++ b/sdk/elasticsans/arm-elasticsan/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md index 6996867fff9c..72eaf9a1c996 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/javascript/README.md @@ -66,7 +66,7 @@ node elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md index c395ce04b271..92dabf64d69e 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1-beta/typescript/README.md @@ -78,7 +78,7 @@ node dist/elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md index faf01ff0ac90..a94e72857bea 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1/javascript/README.md @@ -63,7 +63,7 @@ node elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md b/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md index 97cf5d96a57f..0cf2f6317983 100644 --- a/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md +++ b/sdk/elasticsans/arm-elasticsan/samples/v1/typescript/README.md @@ -75,7 +75,7 @@ node dist/elasticSansCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js +cross-env ELASTICSANS_SUBSCRIPTION_ID="" ELASTICSANS_RESOURCE_GROUP="" node dist/elasticSansCreateSample.js ``` ## Next Steps diff --git a/sdk/entra/functions-authentication-events/package.json b/sdk/entra/functions-authentication-events/package.json index 2ec659952033..186e3e120e69 100644 --- a/sdk/entra/functions-authentication-events/package.json +++ b/sdk/entra/functions-authentication-events/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -62,9 +62,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/arm-eventgrid/package.json b/sdk/eventgrid/arm-eventgrid/package.json index 7f0f6f6ed0de..93a2b2190f61 100644 --- a/sdk/eventgrid/arm-eventgrid/package.json +++ b/sdk/eventgrid/arm-eventgrid/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md index 41e4822a846b..0d3c02b83455 100644 --- a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md +++ b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/javascript/README.md @@ -216,7 +216,7 @@ node caCertificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node caCertificatesCreateOrUpdateSample.js +cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node caCertificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md index 51b1cc887818..cb19266a72e2 100644 --- a/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md +++ b/sdk/eventgrid/arm-eventgrid/samples/v15-beta/typescript/README.md @@ -228,7 +228,7 @@ node dist/caCertificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node dist/caCertificatesCreateOrUpdateSample.js +cross-env EVENTGRID_SUBSCRIPTION_ID="" EVENTGRID_RESOURCE_GROUP="" node dist/caCertificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/package.json b/sdk/eventgrid/eventgrid-namespaces/package.json index 8872e844f747..f71771dcc6ea 100644 --- a/sdk/eventgrid/eventgrid-namespaces/package.json +++ b/sdk/eventgrid/eventgrid-namespaces/package.json @@ -44,11 +44,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "dev-tool samples publish -f", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -80,9 +80,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md index 3b6208cd47fd..f7ce61a035a0 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md index afebfb783e91..679ebf4241d6 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md index 8340fa44138b..5b52ed925c21 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md b/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md index 8fa8643beaa9..4613b5664022 100644 --- a/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md +++ b/sdk/eventgrid/eventgrid-namespaces/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/namespaceActivities.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js +cross-env EVENT_GRID_NAMESPACES_ENDPOINT="" EVENT_GRID_NAMESPACES_KEY="" EVENT_SUBSCRIPTION_NAME="" TOPIC_NAME="" node dist/namespaceActivities.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid-perf-tests/package.json b/sdk/eventgrid/eventgrid-perf-tests/package.json index a6bafa4be2a5..40b4e114a085 100644 --- a/sdk/eventgrid/eventgrid-perf-tests/package.json +++ b/sdk/eventgrid/eventgrid-perf-tests/package.json @@ -60,17 +60,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/eventgrid/eventgrid-systemevents/package.json b/sdk/eventgrid/eventgrid-systemevents/package.json index 6993921931f1..f4cc77f0e288 100644 --- a/sdk/eventgrid/eventgrid-systemevents/package.json +++ b/sdk/eventgrid/eventgrid-systemevents/package.json @@ -32,11 +32,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -62,8 +62,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/eventgrid/package.json b/sdk/eventgrid/eventgrid/package.json index 41ff6e749b2c..7616ffa0fc49 100644 --- a/sdk/eventgrid/eventgrid/package.json +++ b/sdk/eventgrid/eventgrid/package.json @@ -61,11 +61,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md && node ./scripts/setPathToEmpty.js", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -97,9 +97,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md b/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md index b55d24280b07..19b8d708ddf9 100644 --- a/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md +++ b/sdk/eventgrid/eventgrid/samples/v5/javascript/README.md @@ -53,7 +53,7 @@ node consumeEventsFromServiceBusQueue.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node consumeEventsFromServiceBusQueue.js +cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node consumeEventsFromServiceBusQueue.js ``` ## Next Steps diff --git a/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md b/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md index 39738438ccd1..b557ed74fd36 100644 --- a/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md +++ b/sdk/eventgrid/eventgrid/samples/v5/typescript/README.md @@ -65,7 +65,7 @@ node dist/consumeEventsFromServiceBusQueue.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node dist/consumeEventsFromServiceBusQueue.js +cross-env SERVICE_BUS_FQDN="" SERVICE_BUS_QUEUE_NAME="" node dist/consumeEventsFromServiceBusQueue.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json index 454a8d26a9e7..7e65d257aa48 100644 --- a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json +++ b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 31710d893e92..2cd593fe101b 100644 --- a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -80,7 +80,7 @@ node clustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node clustersCreateOrUpdateSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node clustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 908ecf1c674b..a5d38f432b16 100644 --- a/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/eventhub/arm-eventhub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -92,7 +92,7 @@ node dist/clustersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/clustersCreateOrUpdateSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/clustersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub/package.json b/sdk/eventhub/arm-eventhub/package.json index a5e65d365587..9d8e9a4364c8 100644 --- a/sdk/eventhub/arm-eventhub/package.json +++ b/sdk/eventhub/arm-eventhub/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -61,7 +64,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md b/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md index a2bc9c27461b..9d739c616d76 100644 --- a/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md +++ b/sdk/eventhub/arm-eventhub/samples/v5-beta/javascript/README.md @@ -103,7 +103,7 @@ node applicationGroupCreateOrUpdateApplicationGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node applicationGroupCreateOrUpdateApplicationGroupSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node applicationGroupCreateOrUpdateApplicationGroupSample.js ``` ## Next Steps diff --git a/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md b/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md index 429cc3986738..dc5a46f80f46 100644 --- a/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md +++ b/sdk/eventhub/arm-eventhub/samples/v5-beta/typescript/README.md @@ -115,7 +115,7 @@ node dist/applicationGroupCreateOrUpdateApplicationGroupSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/applicationGroupCreateOrUpdateApplicationGroupSample.js +cross-env EVENTHUB_SUBSCRIPTION_ID="" EVENTHUB_RESOURCE_GROUP="" node dist/applicationGroupCreateOrUpdateApplicationGroupSample.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs-perf-tests/package.json b/sdk/eventhub/event-hubs-perf-tests/package.json index d9e2d05e49d7..97f3485bddcf 100644 --- a/sdk/eventhub/event-hubs-perf-tests/package.json +++ b/sdk/eventhub/event-hubs-perf-tests/package.json @@ -54,17 +54,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist typings *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist typings *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index 9a25fe469473..cb5c138d7767 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -33,21 +33,21 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "build:test:browser": "dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "generate-certs": "dev-tool run vendored tsx scripts/generateCerts.mts", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"scripts/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "generate-certs": "tsx scripts/generateCerts.mts", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "tsc -p . --module \"commonjs\" && node dist-esm/test/perf/track-2/index.spec.js", "test": "npm run test:node && npm run test:browser", "test:browser": "echo skipped", - "test:browser:live": "dev-tool run build-package && dev-tool run build-test && dev-tool run vendored cross-env TEST_MODE=live dev-tool run test:vitest --browser --no-test-proxy", - "test:node": "npm run generate-certs && dev-tool run vendored cross-env NODE_EXTRA_CA_CERTS=\"./certs/my-private-root-ca.crt.pem\" AZURE_LOG_LEVEL=\"info\" npm run vitest:node", - "test:node:live": "dev-tool run build-package && dev-tool run vendored cross-env TEST_MODE=live npm run vitest:node", + "test:browser:live": "dev-tool run build-package && dev-tool run build-test && cross-env TEST_MODE=live dev-tool run test:vitest --browser --no-test-proxy", + "test:node": "npm run generate-certs && cross-env NODE_EXTRA_CA_CERTS=\"./certs/my-private-root-ca.crt.pem\" AZURE_LOG_LEVEL=\"info\" npm run vitest:node", + "test:node:live": "dev-tool run build-package && cross-env TEST_MODE=live npm run vitest:node", "update-snippets": "dev-tool run update-snippets", "vitest:node": "dev-tool run test:vitest --no-test-proxy" }, @@ -130,12 +130,17 @@ "chai-as-promised": "catalog:testing", "chai-exclude": "catalog:testing", "copyfiles": "^2.4.1", + "cross-env": "catalog:", "debug": "^4.4.0", "dotenv": "catalog:testing", "eslint": "catalog:", "https-proxy-agent": "^7.0.0", "node-forge": "^1.3.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "tsx": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing", "ws": "^8.2.0" diff --git a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md index 7098e791008c..e417349a979d 100644 --- a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md @@ -56,7 +56,7 @@ node sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md index 6b34e1082a2a..5ad7283d22b4 100644 --- a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md @@ -68,7 +68,7 @@ node dist/sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs/samples/v6/javascript/README.md b/sdk/eventhub/event-hubs/samples/v6/javascript/README.md index 641f8872f591..a3f66246785e 100644 --- a/sdk/eventhub/event-hubs/samples/v6/javascript/README.md +++ b/sdk/eventhub/event-hubs/samples/v6/javascript/README.md @@ -56,7 +56,7 @@ node sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/event-hubs/samples/v6/typescript/README.md b/sdk/eventhub/event-hubs/samples/v6/typescript/README.md index 3524e7a58167..83f736bcc9bd 100644 --- a/sdk/eventhub/event-hubs/samples/v6/typescript/README.md +++ b/sdk/eventhub/event-hubs/samples/v6/typescript/README.md @@ -68,7 +68,7 @@ node dist/sendBufferedEvents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" node dist/sendBufferedEvents.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/package.json b/sdk/eventhub/eventhubs-checkpointstore-blob/package.json index 0ed563c4cc04..69c7bc03e0b3 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/package.json +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/package.json @@ -33,11 +33,11 @@ "build:samples": "tsc -p tsconfig.samples.json", "build:test:browser": "dev-tool run build-package && dev-tool run build-test", "build:test:node": "dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -88,12 +88,16 @@ "buffer": "^6.0.3", "chai": "catalog:testing", "chai-as-promised": "catalog:testing", + "cross-env": "catalog:", "debug": "^4.3.6", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", "process": "^0.11.10", + "rimraf": "catalog:", "stream": "^0.0.3", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md index 5f6f72035feb..4f183204582d 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md index 9dee6d5e4222..1c08fd863ae0 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node dist/receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP="" STORAGE_CONTAINER_URL="" node dist/receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md index d9095bfa476e..dd526359e043 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/javascript/README.md @@ -51,7 +51,7 @@ node receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md index 00c315f062e5..062e05db7ea0 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v2/typescript/README.md @@ -63,7 +63,7 @@ node dist/receiveEventsUsingCheckpointStore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node dist/receiveEventsUsingCheckpointStore.js +cross-env EVENTHUB_FQDN="" EVENTHUB_NAME="" EVENTHUB_CONSUMER_GROUP_NAME="" STORAGE_ENDPOINT="" node dist/receiveEventsUsingCheckpointStore.js ``` ## Next Steps diff --git a/sdk/eventhub/eventhubs-checkpointstore-table/package.json b/sdk/eventhub/eventhubs-checkpointstore-table/package.json index c2472efc2331..6a24ad0768cc 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-table/package.json +++ b/sdk/eventhub/eventhubs-checkpointstore-table/package.json @@ -33,11 +33,11 @@ "build:samples": "echo Skipped.", "build:test:browser": "dev-tool run build-package && dev-tool run build-test", "build:test:node": "dev-tool run build-package && dev-tool run build-test", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -85,12 +85,16 @@ "buffer": "^6.0.3", "chai": "catalog:testing", "chai-as-promised": "catalog:testing", + "cross-env": "catalog:", "debug": "^4.1.1", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", "process": "^0.11.10", + "rimraf": "catalog:", "stream": "^0.0.3", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventhub/mock-hub/package.json b/sdk/eventhub/mock-hub/package.json index 1307592f8b32..6c5c3584bc5b 100644 --- a/sdk/eventhub/mock-hub/package.json +++ b/sdk/eventhub/mock-hub/package.json @@ -16,11 +16,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "clean": "rimraf --glob dist dist-* temp *.tgz *.log .tshy *.xml", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "tsc -p . && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"samples-dev/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -60,9 +60,13 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/eventhub/mock-hub/samples/v1/javascript/README.md b/sdk/eventhub/mock-hub/samples/v1/javascript/README.md index 64474a21320f..46461ae3cfaa 100644 --- a/sdk/eventhub/mock-hub/samples/v1/javascript/README.md +++ b/sdk/eventhub/mock-hub/samples/v1/javascript/README.md @@ -49,7 +49,7 @@ node start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CERT_PASSPHRASE="" node start.js +cross-env CERT_PASSPHRASE="" node start.js ``` ## Next Steps diff --git a/sdk/eventhub/mock-hub/samples/v1/typescript/README.md b/sdk/eventhub/mock-hub/samples/v1/typescript/README.md index 625ff4fac548..13c9edf93142 100644 --- a/sdk/eventhub/mock-hub/samples/v1/typescript/README.md +++ b/sdk/eventhub/mock-hub/samples/v1/typescript/README.md @@ -61,7 +61,7 @@ node dist/start.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env CERT_PASSPHRASE="" node dist/start.js +cross-env CERT_PASSPHRASE="" node dist/start.js ``` ## Next Steps diff --git a/sdk/extendedlocation/arm-extendedlocation/package.json b/sdk/extendedlocation/arm-extendedlocation/package.json index 83af0e183b62..82f385aa9922 100644 --- a/sdk/extendedlocation/arm-extendedlocation/package.json +++ b/sdk/extendedlocation/arm-extendedlocation/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md index 171d0fe9556a..fe66fb09ec02 100644 --- a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md +++ b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/javascript/README.md @@ -50,7 +50,7 @@ node customLocationsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node customLocationsCreateOrUpdateSample.js +cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node customLocationsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md index 27d4d388bdaa..44a169d171bb 100644 --- a/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md +++ b/sdk/extendedlocation/arm-extendedlocation/samples/v1-beta/typescript/README.md @@ -62,7 +62,7 @@ node dist/customLocationsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node dist/customLocationsCreateOrUpdateSample.js +cross-env EXTENDEDLOCATION_SUBSCRIPTION_ID="" EXTENDEDLOCATION_RESOURCE_GROUP="" node dist/customLocationsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/package.json b/sdk/fabric/arm-fabric/package.json index 3d228fe95569..d784075772f6 100644 --- a/sdk/fabric/arm-fabric/package.json +++ b/sdk/fabric/arm-fabric/package.json @@ -76,21 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", "prettier": "^3.2.5", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md b/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md index a64ed4700c1c..ad239c0f2bf1 100644 --- a/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1-beta/javascript/README.md @@ -48,7 +48,7 @@ node fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md b/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md index e5d08af87d5c..77e4156cbd51 100644 --- a/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1-beta/typescript/README.md @@ -60,7 +60,7 @@ node dist/fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/samples/v1/javascript/README.md b/sdk/fabric/arm-fabric/samples/v1/javascript/README.md index 7a3cf7d7fa81..1e938ee10412 100644 --- a/sdk/fabric/arm-fabric/samples/v1/javascript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/fabric/arm-fabric/samples/v1/typescript/README.md b/sdk/fabric/arm-fabric/samples/v1/typescript/README.md index 8db061f8f73e..a2d44023509d 100644 --- a/sdk/fabric/arm-fabric/samples/v1/typescript/README.md +++ b/sdk/fabric/arm-fabric/samples/v1/typescript/README.md @@ -60,7 +60,7 @@ node dist/fabricCapacitiesCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js +cross-env node dist/fabricCapacitiesCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/face/ai-vision-face-rest/package.json b/sdk/face/ai-vision-face-rest/package.json index 3eb1cc66034c..5b150b74a027 100644 --- a/sdk/face/ai-vision-face-rest/package.json +++ b/sdk/face/ai-vision-face-rest/package.json @@ -75,21 +75,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", "prettier": "^3.2.5", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", diff --git a/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md b/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md index 9fc0d32d60fe..e39552375e0c 100644 --- a/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md +++ b/sdk/face/ai-vision-face-rest/samples/v1-beta/javascript/README.md @@ -42,7 +42,7 @@ node aadAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FACE_ENDPOINT="" node aadAuth.js +cross-env FACE_ENDPOINT="" node aadAuth.js ``` ## Next Steps diff --git a/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md b/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md index a59644f09f92..7d9589f839c7 100644 --- a/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md +++ b/sdk/face/ai-vision-face-rest/samples/v1-beta/typescript/README.md @@ -54,7 +54,7 @@ node dist/aadAuth.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FACE_ENDPOINT="" node dist/aadAuth.js +cross-env FACE_ENDPOINT="" node dist/aadAuth.js ``` ## Next Steps diff --git a/sdk/features/arm-features/package.json b/sdk/features/arm-features/package.json index 363cd984a58c..bd70a5bb5676 100644 --- a/sdk/features/arm-features/package.json +++ b/sdk/features/arm-features/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/features/arm-features/samples/v3/javascript/README.md b/sdk/features/arm-features/samples/v3/javascript/README.md index 28ff1f0eb265..1072d7dfb562 100644 --- a/sdk/features/arm-features/samples/v3/javascript/README.md +++ b/sdk/features/arm-features/samples/v3/javascript/README.md @@ -47,7 +47,7 @@ node featuresGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node featuresGetSample.js +cross-env node featuresGetSample.js ``` ## Next Steps diff --git a/sdk/features/arm-features/samples/v3/typescript/README.md b/sdk/features/arm-features/samples/v3/typescript/README.md index e73df4752d39..793ae865f93d 100644 --- a/sdk/features/arm-features/samples/v3/typescript/README.md +++ b/sdk/features/arm-features/samples/v3/typescript/README.md @@ -59,7 +59,7 @@ node dist/featuresGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/featuresGetSample.js +cross-env node dist/featuresGetSample.js ``` ## Next Steps diff --git a/sdk/fluidrelay/arm-fluidrelay/package.json b/sdk/fluidrelay/arm-fluidrelay/package.json index 1106d9fbb5b2..e1e237834523 100644 --- a/sdk/fluidrelay/arm-fluidrelay/package.json +++ b/sdk/fluidrelay/arm-fluidrelay/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md b/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md index 997ca93a1a23..3df46c0c263e 100644 --- a/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md +++ b/sdk/fluidrelay/arm-fluidrelay/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node fluidRelayContainersDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node fluidRelayContainersDeleteSample.js +cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node fluidRelayContainersDeleteSample.js ``` ## Next Steps diff --git a/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md b/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md index bca1e4779b82..ec05f7bc7e4d 100644 --- a/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md +++ b/sdk/fluidrelay/arm-fluidrelay/samples/v1/typescript/README.md @@ -60,7 +60,7 @@ node dist/fluidRelayContainersDeleteSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node dist/fluidRelayContainersDeleteSample.js +cross-env FLUIDRELAY_SUBSCRIPTION_ID="" node dist/fluidRelayContainersDeleteSample.js ``` ## Next Steps diff --git a/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json b/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json index 43dd4ced7141..53ec19a850a4 100644 --- a/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json +++ b/sdk/formrecognizer/ai-form-recognizer-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/formrecognizer/ai-form-recognizer/package.json b/sdk/formrecognizer/ai-form-recognizer/package.json index ce22414ae6fa..f93f8aff9068 100644 --- a/sdk/formrecognizer/ai-form-recognizer/package.json +++ b/sdk/formrecognizer/ai-form-recognizer/package.json @@ -49,11 +49,11 @@ "build": "npm run clean && dev-tool run build-package && npm run bundle:bin && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "bundle:bin": "rollup -c rollup.config.bin.mjs 2>&1", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log test-results.*xml", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log test-results.*xml", "execute:samples": "dev-tool samples run samples-dev/", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -90,12 +90,15 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "magic-string": "~0.30.10", "playwright": "catalog:testing", "prettier": "^3.3.3", + "rimraf": "catalog:", "rollup": "^4.0.0", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md b/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md index 8c4f65746319..effe53fa725a 100644 --- a/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md +++ b/sdk/formrecognizer/ai-form-recognizer/samples/v5/javascript/README.md @@ -62,7 +62,7 @@ node composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FORM_RECOGNIZER_ENDPOINT="
" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js +cross-env FORM_RECOGNIZER_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node composeModel.js ``` ## Next Steps diff --git a/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md b/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md index 860d8574052f..9a5cd74994ba 100644 --- a/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md +++ b/sdk/formrecognizer/ai-form-recognizer/samples/v5/typescript/README.md @@ -81,7 +81,7 @@ node dist/composeModel.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FORM_RECOGNIZER_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js +cross-env FORM_RECOGNIZER_ENDPOINT="" PURCHASE_ORDER_SUPPLIES_SAS_URL="" PURCHASE_ORDER_EQUIPMENT_SAS_URL="" PURCHASE_ORDER_FURNITURE_SAS_URL="" PURCHASE_ORDER_CLEANING_SUPPLIES_SAS_URL="" node dist/composeModel.js ``` ## Next Steps diff --git a/sdk/frontdoor/arm-frontdoor/package.json b/sdk/frontdoor/arm-frontdoor/package.json index 8d73cbeed534..ff671db3530a 100644 --- a/sdk/frontdoor/arm-frontdoor/package.json +++ b/sdk/frontdoor/arm-frontdoor/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md b/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md index f0db738fc0e2..60e1be89b506 100644 --- a/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md +++ b/sdk/frontdoor/arm-frontdoor/samples/v5/javascript/README.md @@ -74,7 +74,7 @@ node endpointsPurgeContentSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node endpointsPurgeContentSample.js +cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node endpointsPurgeContentSample.js ``` ## Next Steps diff --git a/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md b/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md index ccd88cb1f9f8..17674365c8f3 100644 --- a/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md +++ b/sdk/frontdoor/arm-frontdoor/samples/v5/typescript/README.md @@ -86,7 +86,7 @@ node dist/endpointsPurgeContentSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node dist/endpointsPurgeContentSample.js +cross-env FRONTDOOR_SUBSCRIPTION_ID="" FRONTDOOR_RESOURCE_GROUP="" node dist/endpointsPurgeContentSample.js ``` ## Next Steps diff --git a/sdk/graphservices/arm-graphservices/package.json b/sdk/graphservices/arm-graphservices/package.json index 2e0640f539f7..c85231ea5708 100644 --- a/sdk/graphservices/arm-graphservices/package.json +++ b/sdk/graphservices/arm-graphservices/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md b/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md index 8aa95a7fe68c..ab93eb7d3f43 100644 --- a/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md +++ b/sdk/graphservices/arm-graphservices/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node accountsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node accountsCreateAndUpdateSample.js +cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node accountsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md b/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md index 98e536cc993b..b64123fd57e9 100644 --- a/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md +++ b/sdk/graphservices/arm-graphservices/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/accountsCreateAndUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node dist/accountsCreateAndUpdateSample.js +cross-env GRAPHSERVICES_SUBSCRIPTION_ID="" GRAPHSERVICES_RESOURCE_GROUP="" node dist/accountsCreateAndUpdateSample.js ``` ## Next Steps diff --git a/sdk/guestconfiguration/arm-guestconfiguration/package.json b/sdk/guestconfiguration/arm-guestconfiguration/package.json index 288f645ba4cc..9798afc4cad5 100644 --- a/sdk/guestconfiguration/arm-guestconfiguration/package.json +++ b/sdk/guestconfiguration/arm-guestconfiguration/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md index 2039b5ba55e5..ec6baf83ee8b 100644 --- a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md +++ b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/javascript/README.md @@ -63,7 +63,7 @@ node guestConfigurationAssignmentReportsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node guestConfigurationAssignmentReportsGetSample.js +cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node guestConfigurationAssignmentReportsGetSample.js ``` ## Next Steps diff --git a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md index c2ae07eb3d4e..8dd3f67ca0b6 100644 --- a/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md +++ b/sdk/guestconfiguration/arm-guestconfiguration/samples/v1-beta/typescript/README.md @@ -75,7 +75,7 @@ node dist/guestConfigurationAssignmentReportsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node dist/guestConfigurationAssignmentReportsGetSample.js +cross-env GUESTCONFIGURATION_SUBSCRIPTION_ID="" GUESTCONFIGURATION_RESOURCE_GROUP="" node dist/guestConfigurationAssignmentReportsGetSample.js ``` ## Next Steps diff --git a/sdk/hanaonazure/arm-hanaonazure/package.json b/sdk/hanaonazure/arm-hanaonazure/package.json index 97e99dd1fdbc..f439fefc887c 100644 --- a/sdk/hanaonazure/arm-hanaonazure/package.json +++ b/sdk/hanaonazure/arm-hanaonazure/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md index 24773cb86d58..f81bf625bac6 100644 --- a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md +++ b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/javascript/README.md @@ -46,7 +46,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md index a13c51ea1d9d..a376cd68b345 100644 --- a/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md +++ b/sdk/hanaonazure/arm-hanaonazure/samples/v4-beta/typescript/README.md @@ -58,7 +58,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json index a081d5529907..b769bca95f33 100644 --- a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json +++ b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/package.json @@ -70,12 +70,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.11.0", "@azure-rest/core-client": "^2.1.0", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.0.0", "@azure/core-rest-pipeline": "^1.18.2", + "@azure/core-util": "^1.11.0", "@azure/logger": "^1.1.4", "tslib": "^2.8.1" }, @@ -89,20 +89,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md index 8fc930a6cb71..e8118358e1dc 100644 --- a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md +++ b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/javascript/README.md @@ -61,7 +61,7 @@ node cloudHsmClusterBackupStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node cloudHsmClusterBackupStatusGetSample.js +cross-env node cloudHsmClusterBackupStatusGetSample.js ``` ## Next Steps diff --git a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md index bc5304f878d5..84d16fe4e497 100644 --- a/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md +++ b/sdk/hardwaresecuritymodules/arm-hardwaresecuritymodules/samples/v2/typescript/README.md @@ -73,7 +73,7 @@ node dist/cloudHsmClusterBackupStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/cloudHsmClusterBackupStatusGetSample.js +cross-env node dist/cloudHsmClusterBackupStatusGetSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsight/package.json b/sdk/hdinsight/arm-hdinsight/package.json index 64b6ca03b11a..b3d9cb2a69a9 100644 --- a/sdk/hdinsight/arm-hdinsight/package.json +++ b/sdk/hdinsight/arm-hdinsight/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md index c6eeb7bc0435..152a38d9aa7f 100644 --- a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md +++ b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/javascript/README.md @@ -93,7 +93,7 @@ node applicationsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node applicationsCreateSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node applicationsCreateSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md index 28afd4a784d7..f068d44d24d9 100644 --- a/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md +++ b/sdk/hdinsight/arm-hdinsight/samples/v1-beta/typescript/README.md @@ -105,7 +105,7 @@ node dist/applicationsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node dist/applicationsCreateSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" HDINSIGHT_RESOURCE_GROUP="" node dist/applicationsCreateSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsightcontainers/package.json b/sdk/hdinsight/arm-hdinsightcontainers/package.json index 34d2fcf8d272..4a9e5ae2b1be 100644 --- a/sdk/hdinsight/arm-hdinsightcontainers/package.json +++ b/sdk/hdinsight/arm-hdinsightcontainers/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md index 799ac14a707c..b430221b9418 100644 --- a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md +++ b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/javascript/README.md @@ -66,7 +66,7 @@ node availableClusterPoolVersionsListByLocationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" node availableClusterPoolVersionsListByLocationSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" node availableClusterPoolVersionsListByLocationSample.js ``` ## Next Steps diff --git a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md index d3cfb743a20b..c424e9990dab 100644 --- a/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md +++ b/sdk/hdinsight/arm-hdinsightcontainers/samples/v1-beta/typescript/README.md @@ -78,7 +78,7 @@ node dist/availableClusterPoolVersionsListByLocationSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HDINSIGHT_SUBSCRIPTION_ID="" node dist/availableClusterPoolVersionsListByLocationSample.js +cross-env HDINSIGHT_SUBSCRIPTION_ID="" node dist/availableClusterPoolVersionsListByLocationSample.js ``` ## Next Steps diff --git a/sdk/healthbot/arm-healthbot/package.json b/sdk/healthbot/arm-healthbot/package.json index ad61892c8eb7..048b6e339f23 100644 --- a/sdk/healthbot/arm-healthbot/package.json +++ b/sdk/healthbot/arm-healthbot/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md b/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md index dca08a83a260..41d67aee35cb 100644 --- a/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md +++ b/sdk/healthbot/arm-healthbot/samples/v2/javascript/README.md @@ -43,7 +43,7 @@ node botsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node botsCreateSample.js +cross-env node botsCreateSample.js ``` ## Next Steps diff --git a/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md b/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md index d6863ee04d37..872dfbabda08 100644 --- a/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md +++ b/sdk/healthbot/arm-healthbot/samples/v2/typescript/README.md @@ -55,7 +55,7 @@ node dist/botsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/botsCreateSample.js +cross-env node dist/botsCreateSample.js ``` ## Next Steps diff --git a/sdk/healthcareapis/arm-healthcareapis/package.json b/sdk/healthcareapis/arm-healthcareapis/package.json index fe8f645834ce..adcd8c74064b 100644 --- a/sdk/healthcareapis/arm-healthcareapis/package.json +++ b/sdk/healthcareapis/arm-healthcareapis/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md b/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md index 6b2f36d67140..3aef5adca192 100644 --- a/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md +++ b/sdk/healthcareapis/arm-healthcareapis/samples/v3/javascript/README.md @@ -82,7 +82,7 @@ node dicomServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dicomServicesCreateOrUpdateSample.js +cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dicomServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md b/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md index 267d303c0945..f4758484252d 100644 --- a/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md +++ b/sdk/healthcareapis/arm-healthcareapis/samples/v3/typescript/README.md @@ -94,7 +94,7 @@ node dist/dicomServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dist/dicomServicesCreateOrUpdateSample.js +cross-env HEALTHCAREAPIS_SUBSCRIPTION_ID="" HEALTHCAREAPIS_RESOURCE_GROUP="" node dist/dicomServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/arm-healthdataaiservices/package.json b/sdk/healthdataaiservices/arm-healthdataaiservices/package.json index ae3a3bb4ee4e..f7c14ce0a385 100644 --- a/sdk/healthdataaiservices/arm-healthdataaiservices/package.json +++ b/sdk/healthdataaiservices/arm-healthdataaiservices/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md index 34fc92f9e802..c4edbe574ef5 100644 --- a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md +++ b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/javascript/README.md @@ -48,7 +48,7 @@ node deidServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node deidServicesCreateSample.js +cross-env node deidServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md index cfe28a8dc14d..b776c181a1cf 100644 --- a/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md +++ b/sdk/healthdataaiservices/arm-healthdataaiservices/samples/v1/typescript/README.md @@ -60,7 +60,7 @@ node dist/deidServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/deidServicesCreateSample.js +cross-env node dist/deidServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/health-deidentification-rest/package.json b/sdk/healthdataaiservices/health-deidentification-rest/package.json index 5fc3304767e2..49a564e53231 100644 --- a/sdk/healthdataaiservices/health-deidentification-rest/package.json +++ b/sdk/healthdataaiservices/health-deidentification-rest/package.json @@ -77,28 +77,32 @@ "@types/node": "^20.0.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "eslint package.json src test", - "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo skipped", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "exports": { diff --git a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md index 10debd69baa6..a7c70a2c9fae 100644 --- a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md +++ b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/javascript/README.md @@ -42,7 +42,7 @@ node createJob.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node createJob.js +cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node createJob.js ``` ## Next Steps diff --git a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md index 606a287343ae..3680c50515ca 100644 --- a/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md +++ b/sdk/healthdataaiservices/health-deidentification-rest/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ node dist/createJob.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node dist/createJob.js +cross-env HEALTHDATAAISERVICES_DEID_SERVICE_ENDPOINT="" HEALTHDATAAISERVICES_STORAGE_ACCOUNT_LOCATION="" OUTPUT_PREFIX="" node dist/createJob.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json b/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json index 29c8103a055d..fd134a8cc14a 100644 --- a/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json +++ b/sdk/healthinsights/health-insights-cancerprofiling-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md index a428ac3097d2..7d5cddb11179 100644 --- a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md +++ b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/javascript/README.md @@ -37,7 +37,7 @@ node sample_infer_cancer_profiling.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node sample_infer_cancer_profiling.js +cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node sample_infer_cancer_profiling.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md index adc3a79bf3b7..0d98d8e8b088 100644 --- a/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md +++ b/sdk/healthinsights/health-insights-cancerprofiling-rest/samples/v1-beta/typescript/README.md @@ -49,7 +49,7 @@ node dist/sample_infer_cancer_profiling.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node dist/sample_infer_cancer_profiling.js +cross-env HEALTH_INSIGHTS_ENDPOINT="" HEALTH_INSIGHTS_API_KEY="" node dist/sample_infer_cancer_profiling.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json b/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json index b96173a8d6ea..5cf6ae8d969b 100644 --- a/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json +++ b/sdk/healthinsights/health-insights-clinicalmatching-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md index e755cd68f0fa..2ea3c21d0c0b 100644 --- a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md +++ b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/javascript/README.md @@ -39,7 +39,7 @@ node sample_match_trials_fhir.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_match_trials_fhir.js +cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_match_trials_fhir.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md index 527e4b615de5..fc818455c0b6 100644 --- a/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md +++ b/sdk/healthinsights/health-insights-clinicalmatching-rest/samples/v1-beta/typescript/README.md @@ -51,7 +51,7 @@ node dist/sample_match_trials_fhir.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_match_trials_fhir.js +cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_match_trials_fhir.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json b/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json index cac91a0b02b1..5f8c294d6030 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/package.json @@ -34,11 +34,11 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "build:test": "echo skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"", "generate:client": "echo skipped", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md index e62ca8902cd6..ac498990b1ee 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ node sample_age_mismatch_inference_async.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_critical_result_inference_async.js +cross-env HEALTH_INSIGHTS_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node sample_critical_result_inference_async.js ``` ## Next Steps diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md index bb561e0b11f6..1273f08b0865 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/samples/v1/typescript/README.md @@ -62,7 +62,7 @@ node dist/sample_age_mismatch_inference_async.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_critical_result_inference_async.js +cross-env HEALTH_INSIGHTS_API_KEY="" HEALTH_INSIGHTS_ENDPOINT="" node dist/sample_critical_result_inference_async.js ``` ## Next Steps diff --git a/sdk/hybridcompute/arm-hybridcompute/package.json b/sdk/hybridcompute/arm-hybridcompute/package.json index 6b96f6a94911..0aaffbe8aa30 100644 --- a/sdk/hybridcompute/arm-hybridcompute/package.json +++ b/sdk/hybridcompute/arm-hybridcompute/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md index f4fe72922854..231e4e68248b 100644 --- a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md +++ b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/javascript/README.md @@ -99,7 +99,7 @@ node extensionMetadataGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node extensionMetadataGetSample.js +cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node extensionMetadataGetSample.js ``` ## Next Steps diff --git a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md index 04e647648500..76ec02382976 100644 --- a/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md +++ b/sdk/hybridcompute/arm-hybridcompute/samples/v5-beta/typescript/README.md @@ -111,7 +111,7 @@ node dist/extensionMetadataGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node dist/extensionMetadataGetSample.js +cross-env HYBRIDCOMPUTE_SUBSCRIPTION_ID="" node dist/extensionMetadataGetSample.js ``` ## Next Steps diff --git a/sdk/hybridconnectivity/arm-hybridconnectivity/package.json b/sdk/hybridconnectivity/arm-hybridconnectivity/package.json index 35574c0f69eb..e2a6acb0467c 100644 --- a/sdk/hybridconnectivity/arm-hybridconnectivity/package.json +++ b/sdk/hybridconnectivity/arm-hybridconnectivity/package.json @@ -68,12 +68,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -85,29 +85,33 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md index 52cfd2a5763e..f7f8c70875fc 100644 --- a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md +++ b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/javascript/README.md @@ -69,7 +69,7 @@ node endpointsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node endpointsCreateOrUpdateSample.js +cross-env node endpointsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md index 0308f644f2a8..735bbf690191 100644 --- a/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md +++ b/sdk/hybridconnectivity/arm-hybridconnectivity/samples/v2-beta/typescript/README.md @@ -81,7 +81,7 @@ node dist/endpointsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/endpointsCreateOrUpdateSample.js +cross-env node dist/endpointsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json b/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json index 25a69f0a295e..4e7b051cc01e 100644 --- a/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json +++ b/sdk/hybridcontainerservice/arm-hybridcontainerservice/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md index 80669e96f28b..dfa295132785 100644 --- a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md +++ b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/javascript/README.md @@ -66,7 +66,7 @@ node agentPoolCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node agentPoolCreateOrUpdateSample.js +cross-env node agentPoolCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md index 291b9fd8e7d3..1d3e49f1b358 100644 --- a/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md +++ b/sdk/hybridcontainerservice/arm-hybridcontainerservice/samples/v1/typescript/README.md @@ -78,7 +78,7 @@ node dist/agentPoolCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/agentPoolCreateOrUpdateSample.js +cross-env node dist/agentPoolCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridkubernetes/arm-hybridkubernetes/package.json b/sdk/hybridkubernetes/arm-hybridkubernetes/package.json index 8e1c3f7f87c6..da2e909cb991 100644 --- a/sdk/hybridkubernetes/arm-hybridkubernetes/package.json +++ b/sdk/hybridkubernetes/arm-hybridkubernetes/package.json @@ -38,8 +38,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,11 +61,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "lint": "echo skipped", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md index 18f127e83b85..5be2b2bae5f2 100644 --- a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md +++ b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/javascript/README.md @@ -55,7 +55,7 @@ node connectedClusterCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node connectedClusterCreateOrReplaceSample.js +cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node connectedClusterCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md index 4ab559eac87c..3cdaaccfd5ea 100644 --- a/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md +++ b/sdk/hybridkubernetes/arm-hybridkubernetes/samples/v3-beta/typescript/README.md @@ -67,7 +67,7 @@ node dist/connectedClusterCreateOrReplaceSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node dist/connectedClusterCreateOrReplaceSample.js +cross-env HYBRIDKUBERNETES_SUBSCRIPTION_ID="" HYBRIDKUBERNETES_RESOURCE_GROUP="" node dist/connectedClusterCreateOrReplaceSample.js ``` ## Next Steps diff --git a/sdk/hybridnetwork/arm-hybridnetwork/package.json b/sdk/hybridnetwork/arm-hybridnetwork/package.json index ad83243447d4..4a1740e43689 100644 --- a/sdk/hybridnetwork/arm-hybridnetwork/package.json +++ b/sdk/hybridnetwork/arm-hybridnetwork/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md index ae6e58cfc279..3b591d754d37 100644 --- a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md +++ b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/javascript/README.md @@ -113,7 +113,7 @@ node artifactManifestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node artifactManifestsCreateOrUpdateSample.js +cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node artifactManifestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md index 6100b35a2239..02cce5e63334 100644 --- a/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md +++ b/sdk/hybridnetwork/arm-hybridnetwork/samples/v1-beta/typescript/README.md @@ -125,7 +125,7 @@ node dist/artifactManifestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node dist/artifactManifestsCreateOrUpdateSample.js +cross-env HYBRIDNETWORK_SUBSCRIPTION_ID="" HYBRIDNETWORK_RESOURCE_GROUP="" node dist/artifactManifestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/identity/identity-broker/package.json b/sdk/identity/identity-broker/package.json index 39da263cb7b2..0e28050ff80b 100644 --- a/sdk/identity/identity-broker/package.json +++ b/sdk/identity/identity-broker/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm types \"*.tgz\" \"*.log\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm types \"*.tgz\" \"*.log\"", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -66,7 +66,11 @@ "@azure/logger": "workspace:^", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity-broker/samples/v1/javascript/README.md b/sdk/identity/identity-broker/samples/v1/javascript/README.md index df53a30331c6..555c96e84bca 100644 --- a/sdk/identity/identity-broker/samples/v1/javascript/README.md +++ b/sdk/identity/identity-broker/samples/v1/javascript/README.md @@ -50,7 +50,7 @@ npm run start Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js +cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js ``` ## Next Steps diff --git a/sdk/identity/identity-broker/samples/v1/typescript/README.md b/sdk/identity/identity-broker/samples/v1/typescript/README.md index 9e9fb826e801..ea866917924d 100644 --- a/sdk/identity/identity-broker/samples/v1/typescript/README.md +++ b/sdk/identity/identity-broker/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ npm run start Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron ./dist/index.js +cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron ./dist/index.js ``` ## Next Steps diff --git a/sdk/identity/identity-broker/samples/v2/javascript/README.md b/sdk/identity/identity-broker/samples/v2/javascript/README.md index df53a30331c6..555c96e84bca 100644 --- a/sdk/identity/identity-broker/samples/v2/javascript/README.md +++ b/sdk/identity/identity-broker/samples/v2/javascript/README.md @@ -50,7 +50,7 @@ npm run start Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js +cross-env AZURE_CLIENT_ID="" AZURE_AUTHORITY_HOST="" AZURE_TENANT_ID="" AAD_TEST_SCOPE="" electron index.js ``` ## Next Steps diff --git a/sdk/identity/identity-cache-persistence/package.json b/sdk/identity/identity-cache-persistence/package.json index 484c53fc1298..444826f28055 100644 --- a/sdk/identity/identity-cache-persistence/package.json +++ b/sdk/identity/identity-cache-persistence/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -66,9 +66,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity-perf-tests/package.json b/sdk/identity/identity-perf-tests/package.json index 54a0646c65cb..1aeb89e0522a 100644 --- a/sdk/identity/identity-perf-tests/package.json +++ b/sdk/identity/identity-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/identity/identity-vscode/package.json b/sdk/identity/identity-vscode/package.json index 9de29d74d2d8..e41c3f5a75a4 100644 --- a/sdk/identity/identity-vscode/package.json +++ b/sdk/identity/identity-vscode/package.json @@ -9,11 +9,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\" \"samples-dev/**/*.ts\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -64,9 +64,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity/package.json b/sdk/identity/identity/package.json index a231de92ca18..cd428dd8f4c9 100644 --- a/sdk/identity/identity/package.json +++ b/sdk/identity/identity/package.json @@ -24,11 +24,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test --ignore-pattern 'test/integration/**'", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern 'test/integration/**'", "pack": "pnpm pack 2>&1", @@ -99,11 +99,15 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "assertion-error": "^2.0.1", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "jsonwebtoken": "^9.0.0", "ms": "^2.1.3", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/identity/identity/samples/v2/javascript/README.md b/sdk/identity/identity/samples/v2/javascript/README.md index f8d9a171ae50..02ce37a81af5 100644 --- a/sdk/identity/identity/samples/v2/javascript/README.md +++ b/sdk/identity/identity/samples/v2/javascript/README.md @@ -52,7 +52,7 @@ node clientSecretCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node clientSecretCredential.js +cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node clientSecretCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v2/typescript/README.md b/sdk/identity/identity/samples/v2/typescript/README.md index d604f5ad2f66..25b26a66198f 100644 --- a/sdk/identity/identity/samples/v2/typescript/README.md +++ b/sdk/identity/identity/samples/v2/typescript/README.md @@ -64,7 +64,7 @@ node dist/clientSecretCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node dist/clientSecretCredential.js +cross-env AZURE_TENANT_ID="" AZURE_CLIENT_ID="" AZURE_CLIENT_SECRET="" node dist/clientSecretCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v3/javascript/README.md b/sdk/identity/identity/samples/v3/javascript/README.md index 366f1c9e6976..1074271aeace 100644 --- a/sdk/identity/identity/samples/v3/javascript/README.md +++ b/sdk/identity/identity/samples/v3/javascript/README.md @@ -54,7 +54,7 @@ node azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v3/typescript/README.md b/sdk/identity/identity/samples/v3/typescript/README.md index 9807c0895d28..71769ab556df 100644 --- a/sdk/identity/identity/samples/v3/typescript/README.md +++ b/sdk/identity/identity/samples/v3/typescript/README.md @@ -66,7 +66,7 @@ node dist/azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v4/javascript/README.md b/sdk/identity/identity/samples/v4/javascript/README.md index 275d4a707085..7e63bdbc6043 100644 --- a/sdk/identity/identity/samples/v4/javascript/README.md +++ b/sdk/identity/identity/samples/v4/javascript/README.md @@ -57,7 +57,7 @@ node azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/samples/v4/typescript/README.md b/sdk/identity/identity/samples/v4/typescript/README.md index e9f10ac2b1cf..705efa21074f 100644 --- a/sdk/identity/identity/samples/v4/typescript/README.md +++ b/sdk/identity/identity/samples/v4/typescript/README.md @@ -69,7 +69,7 @@ node dist/azureDeveloperCliCredential.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js +cross-env AZURE_TENANT_ID="" node dist/azureDeveloperCliCredential.js ``` ## Next Steps diff --git a/sdk/identity/identity/test/manual/interactive-browser-credential/package.json b/sdk/identity/identity/test/manual/interactive-browser-credential/package.json index c26097df005c..7ade38e1cb0b 100644 --- a/sdk/identity/identity/test/manual/interactive-browser-credential/package.json +++ b/sdk/identity/identity/test/manual/interactive-browser-credential/package.json @@ -6,8 +6,8 @@ "scripts": { "build": "webpack --config webpack.config.js", "start": "webpack-dev-server", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"", - "format": "dev-tool run vendored prettier --write --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"" + "check-format": "prettier --list-different --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"", + "format": "prettier --write --config ../../../../../../.prettierrc.json --ignore-path ../../../../../../.prettierignore \"src/**/*.tsx\"" }, "author": "Microsoft Corporation", "license": "MIT", diff --git a/sdk/imagebuilder/arm-imagebuilder/package.json b/sdk/imagebuilder/arm-imagebuilder/package.json index 1b5251a9ad3c..6deb8e155df6 100644 --- a/sdk/imagebuilder/arm-imagebuilder/package.json +++ b/sdk/imagebuilder/arm-imagebuilder/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md b/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md index 9e7dcbdeaf13..41508dad15fb 100644 --- a/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md +++ b/sdk/imagebuilder/arm-imagebuilder/samples/v4/javascript/README.md @@ -51,7 +51,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md b/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md index e476fb634bea..63ff231152cb 100644 --- a/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md +++ b/sdk/imagebuilder/arm-imagebuilder/samples/v4/typescript/README.md @@ -63,7 +63,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env IMAGEBUILDER_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/impactreporting/arm-impactreporting/package.json b/sdk/impactreporting/arm-impactreporting/package.json index 3b6960207c7f..819a4ecd9dff 100644 --- a/sdk/impactreporting/arm-impactreporting/package.json +++ b/sdk/impactreporting/arm-impactreporting/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md index 6dd615a2fdc6..05efa85feb89 100644 --- a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md +++ b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node connectorsConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node connectorsConnectorsCreateOrUpdateSample.js +cross-env node connectorsConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md index 316d6c4c2b6e..b39453edf6b0 100644 --- a/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md +++ b/sdk/impactreporting/arm-impactreporting/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/connectorsConnectorsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/connectorsConnectorsCreateOrUpdateSample.js +cross-env node dist/connectorsConnectorsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/informatica/arm-informaticadatamanagement/package.json b/sdk/informatica/arm-informaticadatamanagement/package.json index 333ca32e6049..7211409509c8 100644 --- a/sdk/informatica/arm-informaticadatamanagement/package.json +++ b/sdk/informatica/arm-informaticadatamanagement/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md b/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md index ba5c70cbe890..2a93256df326 100644 --- a/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md +++ b/sdk/informatica/arm-informaticadatamanagement/samples/v1/javascript/README.md @@ -53,7 +53,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env INFORMATICA_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env INFORMATICA_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md b/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md index 04fb38533dc1..625489081468 100644 --- a/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md +++ b/sdk/informatica/arm-informaticadatamanagement/samples/v1/typescript/README.md @@ -65,7 +65,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env INFORMATICA_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env INFORMATICA_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json b/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json index f3136aedf6c9..72f7868aeadf 100644 --- a/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json +++ b/sdk/instrumentation/opentelemetry-instrumentation-azure-sdk/package.json @@ -20,11 +20,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -63,8 +63,8 @@ "@opentelemetry/api": "^1.9.0", "@opentelemetry/core": "^2.0.0", "@opentelemetry/instrumentation": "^0.200.0", - "tslib": "^2.7.0", - "@opentelemetry/sdk-trace-web": "^2.0.0" + "@opentelemetry/sdk-trace-web": "^2.0.0", + "tslib": "^2.7.0" }, "devDependencies": { "@azure/core-rest-pipeline": "workspace:^", @@ -75,9 +75,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/iot/iot-modelsrepository/package.json b/sdk/iot/iot-modelsrepository/package.json index 0751b6cd5b2f..105c58839d1c 100644 --- a/sdk/iot/iot-modelsrepository/package.json +++ b/sdk/iot/iot-modelsrepository/package.json @@ -10,13 +10,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "temp-unit-test": "mocha -r ts-node/register --timeout 1200000 test/node/*.spec.ts", "test": "npm run test:node && npm run test:browser", @@ -63,8 +63,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md b/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md index ce1b70df0578..7f16d51f9df7 100644 --- a/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md +++ b/sdk/iot/iot-modelsrepository/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node dtmiConventionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dtmiConventionsSample.js +cross-env node dtmiConventionsSample.js ``` ## Next Steps diff --git a/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md b/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md index 23443358aaa8..2c855049f802 100644 --- a/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md +++ b/sdk/iot/iot-modelsrepository/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/dtmiConventionsSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/dtmiConventionsSample.js +cross-env node dist/dtmiConventionsSample.js ``` ## Next Steps diff --git a/sdk/iotcentral/arm-iotcentral/package.json b/sdk/iotcentral/arm-iotcentral/package.json index eaae10856369..784c9d3377eb 100644 --- a/sdk/iotcentral/arm-iotcentral/package.json +++ b/sdk/iotcentral/arm-iotcentral/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md index 643695832e8b..37c5c9f2aa4c 100644 --- a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md +++ b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/javascript/README.md @@ -62,7 +62,7 @@ node appsCheckNameAvailability.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node appsCheckNameAvailability.js +cross-env node appsCheckNameAvailability.js ``` ## Next Steps diff --git a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md index 925f88f6e030..8b2b8690aa12 100644 --- a/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md +++ b/sdk/iotcentral/arm-iotcentral/samples/v7-beta/typescript/README.md @@ -74,7 +74,7 @@ node dist/appsCheckNameAvailability.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/appsCheckNameAvailability.js +cross-env node dist/appsCheckNameAvailability.js ``` ## Next Steps diff --git a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json index 9d88432138d9..7c9344d41aa7 100644 --- a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json +++ b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/package.json @@ -71,12 +71,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -90,28 +90,32 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md index aae559be2dcb..ce456fd3b77f 100644 --- a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md +++ b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/javascript/README.md @@ -59,7 +59,7 @@ node binaryHardeningListByFirmwareSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node binaryHardeningListByFirmwareSample.js +cross-env node binaryHardeningListByFirmwareSample.js ``` ## Next Steps diff --git a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md index a191dfc6f78b..b78e75975db3 100644 --- a/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md +++ b/sdk/iotfirmwaredefense/arm-iotfirmwaredefense/samples/v2/typescript/README.md @@ -71,7 +71,7 @@ node dist/binaryHardeningListByFirmwareSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/binaryHardeningListByFirmwareSample.js +cross-env node dist/binaryHardeningListByFirmwareSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json index 9882ddc671f4..9358aaeaf653 100644 --- a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json +++ b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index e5667941c6e7..510e29e38deb 100644 --- a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -68,7 +68,7 @@ node certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index cdc295150d4a..3a7de8bc2a52 100644 --- a/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/iothub/arm-iothub-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -80,7 +80,7 @@ node dist/certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub/package.json b/sdk/iothub/arm-iothub/package.json index fc615e34a49f..63002eb512a5 100644 --- a/sdk/iothub/arm-iothub/package.json +++ b/sdk/iothub/arm-iothub/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/iothub/arm-iothub/samples/v6/javascript/README.md b/sdk/iothub/arm-iothub/samples/v6/javascript/README.md index a608a0031350..02bec8a7ffa7 100644 --- a/sdk/iothub/arm-iothub/samples/v6/javascript/README.md +++ b/sdk/iothub/arm-iothub/samples/v6/javascript/README.md @@ -74,7 +74,7 @@ node certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iothub/arm-iothub/samples/v6/typescript/README.md b/sdk/iothub/arm-iothub/samples/v6/typescript/README.md index 6fb2a866ac6c..03ad4c5bdebc 100644 --- a/sdk/iothub/arm-iothub/samples/v6/typescript/README.md +++ b/sdk/iothub/arm-iothub/samples/v6/typescript/README.md @@ -86,7 +86,7 @@ node dist/certificatesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js +cross-env IOTHUB_SUBSCRIPTION_ID="" IOTHUB_RESOURCE_GROUP="" node dist/certificatesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iotoperations/arm-iotoperations/package.json b/sdk/iotoperations/arm-iotoperations/package.json index 6513bd9def90..468d4a31631a 100644 --- a/sdk/iotoperations/arm-iotoperations/package.json +++ b/sdk/iotoperations/arm-iotoperations/package.json @@ -77,20 +77,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md index 855fb0992819..e7376517bcbd 100644 --- a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md +++ b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/javascript/README.md @@ -71,7 +71,7 @@ node brokerAuthenticationCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node brokerAuthenticationCreateOrUpdateSample.js +cross-env node brokerAuthenticationCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md index 45ebbce7ca36..4a693c1a1a30 100644 --- a/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md +++ b/sdk/iotoperations/arm-iotoperations/samples/v1-beta/typescript/README.md @@ -83,7 +83,7 @@ node dist/brokerAuthenticationCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/brokerAuthenticationCreateOrUpdateSample.js +cross-env node dist/brokerAuthenticationCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json index 6fc0583ea4b0..847b925dc24e 100644 --- a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json +++ b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 5b06d9fc2519..bdf35e05b581 100644 --- a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -57,7 +57,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 1885f3235327..f3625ba9c684 100644 --- a/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/keyvault/arm-keyvault-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -69,7 +69,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault/package.json b/sdk/keyvault/arm-keyvault/package.json index 5dc453ccbf51..c47a11141502 100644 --- a/sdk/keyvault/arm-keyvault/package.json +++ b/sdk/keyvault/arm-keyvault/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md b/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md index 1bca963855d9..58a53d73064d 100644 --- a/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md +++ b/sdk/keyvault/arm-keyvault/samples/v3/javascript/README.md @@ -84,7 +84,7 @@ node keysCreateIfNotExistSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node keysCreateIfNotExistSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node keysCreateIfNotExistSample.js ``` ## Next Steps diff --git a/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md b/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md index dd5fa094bd59..10a8bd7bab32 100644 --- a/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md +++ b/sdk/keyvault/arm-keyvault/samples/v3/typescript/README.md @@ -96,7 +96,7 @@ node dist/keysCreateIfNotExistSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node dist/keysCreateIfNotExistSample.js +cross-env KEYVAULT_SUBSCRIPTION_ID="" KEYVAULT_RESOURCE_GROUP="" node dist/keysCreateIfNotExistSample.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/package.json b/sdk/keyvault/keyvault-admin/package.json index d9858fa263ec..ad73582a5d37 100644 --- a/sdk/keyvault/keyvault-admin/package.json +++ b/sdk/keyvault/keyvault-admin/package.json @@ -37,11 +37,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log statistics.html coverage && dev-tool run vendored rimraf --glob src/**/*.js && dev-tool run vendored rimraf --glob test/**/*.js", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log statistics.html coverage && rimraf --glob src/**/*.js && rimraf --glob test/**/*.js", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src --fix --fix-type [problem,suggestion]", @@ -49,7 +49,7 @@ "test": "npm run test:node && npm run test:browser", "test:browser": "echo Skipped", "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", - "test:node:live": "dev-tool run vendored cross-env TEST_MODE=live dev-tool run test:vitest --no-test-proxy", + "test:node:live": "cross-env TEST_MODE=live dev-tool run test:vitest --no-test-proxy", "update-snippets": "dev-tool run update-snippets" }, "//metadata": { @@ -99,9 +99,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md b/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md index 136a4808a3ff..e95265278ce0 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4-beta/javascript/README.md @@ -56,7 +56,7 @@ node accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md b/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md index 2d94b59901be..d86c8e188188 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md index 9678eb9ba763..ffef61b5aab7 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4/javascript/README.md @@ -57,7 +57,7 @@ node accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md index c512fec7d03e..0ef74ea68c05 100644 --- a/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-admin/samples/v4/typescript/README.md @@ -69,7 +69,7 @@ node dist/accessControlHelloWorld.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js +cross-env AZURE_MANAGEDHSM_URI="" CLIENT_OBJECT_ID="" node dist/accessControlHelloWorld.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-certificates-perf-tests/package.json b/sdk/keyvault/keyvault-certificates-perf-tests/package.json index cd5d85f4b0b3..c56d2067c11f 100644 --- a/sdk/keyvault/keyvault-certificates-perf-tests/package.json +++ b/sdk/keyvault/keyvault-certificates-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/keyvault/keyvault-certificates/package.json b/sdk/keyvault/keyvault-certificates/package.json index d44040599166..5f88025767cc 100644 --- a/sdk/keyvault/keyvault-certificates/package.json +++ b/sdk/keyvault/keyvault-certificates/package.json @@ -34,11 +34,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist-esm dist-test types *.tgz *.log samples/typescript/dist", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist-esm dist-test types *.tgz *.log samples/typescript/dist", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -103,9 +103,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md index 5a5d1059a5e7..63467d76717c 100644 --- a/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-certificates/samples/v4/javascript/README.md @@ -63,7 +63,7 @@ node backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node backupAndRestore.js +cross-env KEYVAULT_URI="" node backupAndRestore.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md index b45ffeb5d70b..8b03beb7fa2b 100644 --- a/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-certificates/samples/v4/typescript/README.md @@ -75,7 +75,7 @@ node dist/backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node dist/backupAndRestore.js +cross-env KEYVAULT_URI="" node dist/backupAndRestore.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-common/package.json b/sdk/keyvault/keyvault-common/package.json index f4e89d42f9cf..2ef8d8a826ef 100644 --- a/sdk/keyvault/keyvault-common/package.json +++ b/sdk/keyvault/keyvault-common/package.json @@ -12,11 +12,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -62,8 +62,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-keys-perf-tests/package.json b/sdk/keyvault/keyvault-keys-perf-tests/package.json index 03589dd6620b..da22a8716bdc 100644 --- a/sdk/keyvault/keyvault-keys-perf-tests/package.json +++ b/sdk/keyvault/keyvault-keys-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/keyvault/keyvault-keys/package.json b/sdk/keyvault/keyvault-keys/package.json index 799c921278a3..609b44be641c 100644 --- a/sdk/keyvault/keyvault-keys/package.json +++ b/sdk/keyvault/keyvault-keys/package.json @@ -34,11 +34,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && dev-tool run vendored rimraf --glob src/**/*.js && dev-tool run vendored rimraf --glob test/**/*.js", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && rimraf --glob src/**/*.js && rimraf --glob test/**/*.js", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -94,9 +94,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md index 25583e1cfc25..776959588a71 100644 --- a/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-keys/samples/v4/javascript/README.md @@ -57,7 +57,7 @@ node cryptography.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node cryptography.js +cross-env KEYVAULT_URI="" node cryptography.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md index 306cf7ee21e2..122e73754612 100644 --- a/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-keys/samples/v4/typescript/README.md @@ -69,7 +69,7 @@ node dist/cryptography.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node dist/cryptography.js +cross-env KEYVAULT_URI="" node dist/cryptography.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-secrets-perf-tests/package.json b/sdk/keyvault/keyvault-secrets-perf-tests/package.json index 05066f34267e..b5c230850909 100644 --- a/sdk/keyvault/keyvault-secrets-perf-tests/package.json +++ b/sdk/keyvault/keyvault-secrets-perf-tests/package.json @@ -52,18 +52,22 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "private": true, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/keyvault/keyvault-secrets/package.json b/sdk/keyvault/keyvault-secrets/package.json index 2ef5ea9b075e..c215a23bbb4f 100644 --- a/sdk/keyvault/keyvault-secrets/package.json +++ b/sdk/keyvault/keyvault-secrets/package.json @@ -34,11 +34,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && dev-tool run vendored rimraf --glob src/**/*.js && dev-tool run vendored rimraf --glob test/**/*.js", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log dist-browser statistics.html coverage && rimraf --glob src/**/*.js && rimraf --glob test/**/*.js", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"./**/*.ts\" \"*.{js,json}\"", "generate:client": "tsp-client update -d --emitter-options=\"generate-metadata=false;generate-test=false\" && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -96,9 +96,13 @@ "@azure/identity": "catalog:internal", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md b/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md index 34fcb035f536..35e58ff772e5 100644 --- a/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md +++ b/sdk/keyvault/keyvault-secrets/samples/v4/javascript/README.md @@ -58,7 +58,7 @@ node backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node backupAndRestore.js +cross-env KEYVAULT_URI="" node backupAndRestore.js ``` ## Next Steps diff --git a/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md b/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md index bba2b3248120..812c77c43667 100644 --- a/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md +++ b/sdk/keyvault/keyvault-secrets/samples/v4/typescript/README.md @@ -70,7 +70,7 @@ node dist/backupAndRestore.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KEYVAULT_URI="" node dist/backupAndRestore.js +cross-env KEYVAULT_URI="" node dist/backupAndRestore.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json index c9c9c38e41e8..08e9b5389ef6 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/package.json @@ -39,8 +39,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md index 1d0ec43ea35c..b394a768205e 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/javascript/README.md @@ -42,7 +42,7 @@ node extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md index 5dce40928a70..39938ccf4688 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensions/samples/v1-beta/typescript/README.md @@ -54,7 +54,7 @@ node dist/extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json index 696febd8c7f1..27b8c62023f2 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md index a2e03b58856f..4a6e159fe799 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node extensionTypesClusterGetVersionSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionTypesClusterGetVersionSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionTypesClusterGetVersionSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md index 8431e0902bf9..a53b12131d9e 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-extensiontypes/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/extensionTypesClusterGetVersionSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionTypesClusterGetVersionSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionTypesClusterGetVersionSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json index d3344e20d176..e55da787dea7 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/package.json @@ -39,8 +39,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md index 7167750114ed..eeef7fb506c2 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/javascript/README.md @@ -42,7 +42,7 @@ node fluxConfigOperationStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node fluxConfigOperationStatusGetSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node fluxConfigOperationStatusGetSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md index a773fba900f3..8e70a5b81c22 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-fluxconfigurations/samples/v1-beta/typescript/README.md @@ -54,7 +54,7 @@ node dist/fluxConfigOperationStatusGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/fluxConfigOperationStatusGetSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/fluxConfigOperationStatusGetSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json index 94c6f0423b38..673a1f5ec61c 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md index c9f0d6989c08..771a0657be60 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/javascript/README.md @@ -48,7 +48,7 @@ node privateEndpointConnectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node privateEndpointConnectionsCreateOrUpdateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node privateEndpointConnectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md index c54cfb4bd191..fe2e3fe73f6d 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration-privatelinkscopes/samples/v1-beta/typescript/README.md @@ -60,7 +60,7 @@ node dist/privateEndpointConnectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/privateEndpointConnectionsCreateOrUpdateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/privateEndpointConnectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json index 440defa9252c..bbc09aabb5a5 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md index dbb88b6fab81..f19a91e5f77e 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/javascript/README.md @@ -54,7 +54,7 @@ node extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md index 75eed38c75f3..3b35d0f5539d 100644 --- a/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md +++ b/sdk/kubernetesconfiguration/arm-kubernetesconfiguration/samples/v6/typescript/README.md @@ -66,7 +66,7 @@ node dist/extensionsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js +cross-env KUBERNETESCONFIGURATION_SUBSCRIPTION_ID="" KUBERNETESCONFIGURATION_RESOURCE_GROUP="" node dist/extensionsCreateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json b/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json index 66cab70ce29e..ce3f95e65be2 100644 --- a/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json +++ b/sdk/kubernetesruntime/arm-containerorchestratorruntime/package.json @@ -76,20 +76,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md index 01a50f1c9890..47cd2d5cd167 100644 --- a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md +++ b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/javascript/README.md @@ -54,7 +54,7 @@ node bgpPeersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node bgpPeersCreateOrUpdateSample.js +cross-env node bgpPeersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md index 8b3a2412e11a..9a70df621c0b 100644 --- a/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md +++ b/sdk/kubernetesruntime/arm-containerorchestratorruntime/samples/v1-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/bgpPeersCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/bgpPeersCreateOrUpdateSample.js +cross-env node dist/bgpPeersCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/kusto/arm-kusto/package.json b/sdk/kusto/arm-kusto/package.json index 94b95f38115c..f08a96b85b41 100644 --- a/sdk/kusto/arm-kusto/package.json +++ b/sdk/kusto/arm-kusto/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/README.md b/sdk/kusto/arm-kusto/samples/v8/javascript/README.md index d7872f790b13..6b9d036bfb0a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/README.md +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/README.md @@ -119,7 +119,7 @@ node attachedDatabaseConfigurationsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node attachedDatabaseConfigurationsCheckNameAvailabilitySample.js +cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node attachedDatabaseConfigurationsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/kusto/arm-kusto/samples/v8/typescript/README.md b/sdk/kusto/arm-kusto/samples/v8/typescript/README.md index 28acf56422b8..385bbaadbf68 100644 --- a/sdk/kusto/arm-kusto/samples/v8/typescript/README.md +++ b/sdk/kusto/arm-kusto/samples/v8/typescript/README.md @@ -131,7 +131,7 @@ node dist/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node dist/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js +cross-env KUSTO_SUBSCRIPTION_ID="" KUSTO_RESOURCE_GROUP="" node dist/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/labservices/arm-labservices/package.json b/sdk/labservices/arm-labservices/package.json index dea3cbff8ef9..a2a225eb095f 100644 --- a/sdk/labservices/arm-labservices/package.json +++ b/sdk/labservices/arm-labservices/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/labservices/arm-labservices/samples/v3/javascript/README.md b/sdk/labservices/arm-labservices/samples/v3/javascript/README.md index 079eb35c2c8c..cd0a1bb87d8e 100644 --- a/sdk/labservices/arm-labservices/samples/v3/javascript/README.md +++ b/sdk/labservices/arm-labservices/samples/v3/javascript/README.md @@ -77,7 +77,7 @@ node imagesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node imagesCreateOrUpdateSample.js +cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node imagesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/labservices/arm-labservices/samples/v3/typescript/README.md b/sdk/labservices/arm-labservices/samples/v3/typescript/README.md index eb4b6146444e..ebed22109a0d 100644 --- a/sdk/labservices/arm-labservices/samples/v3/typescript/README.md +++ b/sdk/labservices/arm-labservices/samples/v3/typescript/README.md @@ -89,7 +89,7 @@ node dist/imagesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node dist/imagesCreateOrUpdateSample.js +cross-env LABSERVICES_SUBSCRIPTION_ID="" LABSERVICES_RESOURCE_GROUP="" node dist/imagesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json index d7a64edf295d..541b2e5d2905 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md index 025d9add4df5..5619b2023d66 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md index b1b9f327e673..e948a8c4f54f 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md index 3cca10f9003a..41420a1da6f7 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md index af92e6a39fcf..1f51da6fb5b6 100644 --- a/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md +++ b/sdk/lambdatesthyperexecute/arm-lambdatesthyperexecute/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/largeinstance/arm-largeinstance/package.json b/sdk/largeinstance/arm-largeinstance/package.json index e5f153438721..c2b9c7c5b1ca 100644 --- a/sdk/largeinstance/arm-largeinstance/package.json +++ b/sdk/largeinstance/arm-largeinstance/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md index 94c87644bf8d..84633b6c64d3 100644 --- a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md +++ b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/javascript/README.md @@ -48,7 +48,7 @@ node azureLargeInstanceGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node azureLargeInstanceGetSample.js +cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node azureLargeInstanceGetSample.js ``` ## Next Steps diff --git a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md index 2e7f3ef5f509..bf32ad05f169 100644 --- a/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md +++ b/sdk/largeinstance/arm-largeinstance/samples/v1-beta/typescript/README.md @@ -60,7 +60,7 @@ node dist/azureLargeInstanceGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node dist/azureLargeInstanceGetSample.js +cross-env LARGEINSTANCE_SUBSCRIPTION_ID="" LARGEINSTANCE_RESOURCE_GROUP="" node dist/azureLargeInstanceGetSample.js ``` ## Next Steps diff --git a/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json b/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json index 963463c38dc3..12ceaa1c9e09 100644 --- a/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json +++ b/sdk/liftrarize/arm-arizeaiobservabilityeval/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md index 4be5d80e4cfc..268d7d40e245 100644 --- a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md +++ b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md index dc051b08cf5b..c2a19df71d2f 100644 --- a/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md +++ b/sdk/liftrarize/arm-arizeaiobservabilityeval/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/package.json b/sdk/liftrqumulo/arm-qumulo/package.json index 4eddd11424ef..530a940cd777 100644 --- a/sdk/liftrqumulo/arm-qumulo/package.json +++ b/sdk/liftrqumulo/arm-qumulo/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md index 924da1f1dafd..57e04feea3ac 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md index df61c5a6aa87..c0639dd43988 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md index a56904cd7ea2..85c02921affe 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v2/javascript/README.md @@ -43,7 +43,7 @@ node fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md b/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md index b2a80c0a7dc3..47a67474685b 100644 --- a/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md +++ b/sdk/liftrqumulo/arm-qumulo/samples/v2/typescript/README.md @@ -55,7 +55,7 @@ node dist/fileSystemsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js +cross-env LIFTRQUMULO_SUBSCRIPTION_ID="" LIFTRQUMULO_RESOURCE_GROUP="" node dist/fileSystemsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json b/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json index 1640c4c78363..8a6a0ef0ce9a 100644 --- a/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json +++ b/sdk/liftrweightsandbiases/arm-weightsandbiases/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md index 4d264d12afd2..dff4c43148cc 100644 --- a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md +++ b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node instancesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node instancesCreateOrUpdateSample.js +cross-env node instancesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md index 6de8d2cdda80..a2c205619afe 100644 --- a/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md +++ b/sdk/liftrweightsandbiases/arm-weightsandbiases/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/instancesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/instancesCreateOrUpdateSample.js +cross-env node dist/instancesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/links/arm-links/package.json b/sdk/links/arm-links/package.json index c85feb0351c7..544c5e8c64b6 100644 --- a/sdk/links/arm-links/package.json +++ b/sdk/links/arm-links/package.json @@ -37,7 +37,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/loadtesting/arm-loadtesting/package.json b/sdk/loadtesting/arm-loadtesting/package.json index 86982807b56d..b86f435000d6 100644 --- a/sdk/loadtesting/arm-loadtesting/package.json +++ b/sdk/loadtesting/arm-loadtesting/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md b/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md index 2c937ccd4b4f..4a3097c5507d 100644 --- a/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md +++ b/sdk/loadtesting/arm-loadtesting/samples/v1/javascript/README.md @@ -47,7 +47,7 @@ node loadTestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node loadTestsCreateOrUpdateSample.js +cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node loadTestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md b/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md index 236afd74fb3a..1b8b1a35c3b1 100644 --- a/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md +++ b/sdk/loadtesting/arm-loadtesting/samples/v1/typescript/README.md @@ -59,7 +59,7 @@ node dist/loadTestsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node dist/loadTestsCreateOrUpdateSample.js +cross-env LOADTESTSERVICE_SUBSCRIPTION_ID="" LOADTESTSERVICE_RESOURCE_GROUP="" node dist/loadTestsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/loadtesting/create-playwright/package.json b/sdk/loadtesting/create-playwright/package.json index 17abc0b25c19..2fff6897ad63 100644 --- a/sdk/loadtesting/create-playwright/package.json +++ b/sdk/loadtesting/create-playwright/package.json @@ -36,11 +36,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", "execute:samples": "echo skipped", "extract-api": "echo skipped", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json CHANGELOG.md README.md src", "lint:fix": "eslint package.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -61,7 +61,11 @@ "@types/node": "catalog:", "@types/prompts": "^2.4.9", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/loadtesting/load-testing-rest/package.json b/sdk/loadtesting/load-testing-rest/package.json index 29024ef11408..bd227d723cde 100644 --- a/sdk/loadtesting/load-testing-rest/package.json +++ b/sdk/loadtesting/load-testing-rest/package.json @@ -43,11 +43,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -81,9 +81,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md b/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md index 6d67d9781cf8..ecd3691de5ed 100644 --- a/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md +++ b/sdk/loadtesting/load-testing-rest/samples/v1-beta/javascript/README.md @@ -56,7 +56,7 @@ node addAppComponents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node addAppComponents.js +cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node addAppComponents.js ``` ## Next Steps diff --git a/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md b/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md index bf3af31e7625..f0ea5110ed6c 100644 --- a/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md +++ b/sdk/loadtesting/load-testing-rest/samples/v1-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/addAppComponents.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node dist/addAppComponents.js +cross-env LOADTESTSERVICE_ENDPOINT="" LOADTESTSERVICE_TESTID="" SUBSCRIPTION_ID="" node dist/addAppComponents.js ``` ## Next Steps diff --git a/sdk/loadtesting/playwright/package.json b/sdk/loadtesting/playwright/package.json index 9880b87cd196..694f4b19a3cf 100644 --- a/sdk/loadtesting/playwright/package.json +++ b/sdk/loadtesting/playwright/package.json @@ -52,11 +52,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json CHANGELOG.md README.md src", "lint:fix": "eslint package.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -67,24 +67,28 @@ }, "dependencies": { "@azure/core-auth": "^1.9.0", + "@azure/core-rest-pipeline": "^1.18.0", "@azure/logger": "^1.1.4", - "tslib": "^2.8.1", - "@azure/core-rest-pipeline": "^1.18.0" + "tslib": "^2.8.1" }, "devDependencies": { "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", + "@azure/identity": "catalog:internal", "@playwright/test": "^1.51.1", "@types/debug": "^4.1.12", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", - "vitest": "catalog:testing", - "@azure/identity": "catalog:internal" + "vitest": "catalog:testing" }, "peerDependencies": { "@playwright/test": "^1.47.0" diff --git a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json index 79be0d2923ba..0f186e657671 100644 --- a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json +++ b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index aac86941d0af..f8341c6b72eb 100644 --- a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -53,7 +53,7 @@ node authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOCKS_SUBSCRIPTION_ID="" node authorizationOperationsListSample.js +cross-env LOCKS_SUBSCRIPTION_ID="" node authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 376dbb01ed29..1b66080cb4d5 100644 --- a/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/locks/arm-locks-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -65,7 +65,7 @@ node dist/authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOCKS_SUBSCRIPTION_ID="" node dist/authorizationOperationsListSample.js +cross-env LOCKS_SUBSCRIPTION_ID="" node dist/authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/locks/arm-locks/package.json b/sdk/locks/arm-locks/package.json index 9d0b804e3521..ad89f62a0b9c 100644 --- a/sdk/locks/arm-locks/package.json +++ b/sdk/locks/arm-locks/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/locks/arm-locks/samples/v2/javascript/README.md b/sdk/locks/arm-locks/samples/v2/javascript/README.md index 1c8e3341af1b..75ac07c8131e 100644 --- a/sdk/locks/arm-locks/samples/v2/javascript/README.md +++ b/sdk/locks/arm-locks/samples/v2/javascript/README.md @@ -53,7 +53,7 @@ node authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node authorizationOperationsListSample.js +cross-env node authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/locks/arm-locks/samples/v2/typescript/README.md b/sdk/locks/arm-locks/samples/v2/typescript/README.md index 5224f4cac5e1..6d32ba587e31 100644 --- a/sdk/locks/arm-locks/samples/v2/typescript/README.md +++ b/sdk/locks/arm-locks/samples/v2/typescript/README.md @@ -65,7 +65,7 @@ node dist/authorizationOperationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/authorizationOperationsListSample.js +cross-env node dist/authorizationOperationsListSample.js ``` ## Next Steps diff --git a/sdk/logic/arm-logic/package.json b/sdk/logic/arm-logic/package.json index d4b08ee9686a..7fd38be7ae0f 100644 --- a/sdk/logic/arm-logic/package.json +++ b/sdk/logic/arm-logic/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/logic/arm-logic/samples/v8/javascript/README.md b/sdk/logic/arm-logic/samples/v8/javascript/README.md index efea62c4eb90..90d623021eb7 100644 --- a/sdk/logic/arm-logic/samples/v8/javascript/README.md +++ b/sdk/logic/arm-logic/samples/v8/javascript/README.md @@ -142,7 +142,7 @@ node integrationAccountAgreementsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node integrationAccountAgreementsCreateOrUpdateSample.js +cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node integrationAccountAgreementsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/logic/arm-logic/samples/v8/typescript/README.md b/sdk/logic/arm-logic/samples/v8/typescript/README.md index 59ace4eb36e6..dead039e8bce 100644 --- a/sdk/logic/arm-logic/samples/v8/typescript/README.md +++ b/sdk/logic/arm-logic/samples/v8/typescript/README.md @@ -154,7 +154,7 @@ node dist/integrationAccountAgreementsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node dist/integrationAccountAgreementsCreateOrUpdateSample.js +cross-env LOGIC_SUBSCRIPTION_ID="" LOGIC_RESOURCE_GROUP="" node dist/integrationAccountAgreementsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-commitmentplans/package.json b/sdk/machinelearning/arm-commitmentplans/package.json index 00d7e8515025..b18f2fe3a6fc 100644 --- a/sdk/machinelearning/arm-commitmentplans/package.json +++ b/sdk/machinelearning/arm-commitmentplans/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-machinelearning/package.json b/sdk/machinelearning/arm-machinelearning/package.json index 6ec2b01bf084..7ab1ead9b704 100644 --- a/sdk/machinelearning/arm-machinelearning/package.json +++ b/sdk/machinelearning/arm-machinelearning/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md b/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md index 07754bdff0d5..798ca2b45182 100644 --- a/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md +++ b/sdk/machinelearning/arm-machinelearning/samples/v3/javascript/README.md @@ -248,7 +248,7 @@ node batchDeploymentsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node batchDeploymentsCreateOrUpdateSample.js +cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node batchDeploymentsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md b/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md index 660c262fa243..fa52c4da6e77 100644 --- a/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md +++ b/sdk/machinelearning/arm-machinelearning/samples/v3/typescript/README.md @@ -260,7 +260,7 @@ node dist/batchDeploymentsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node dist/batchDeploymentsCreateOrUpdateSample.js +cross-env MACHINELEARNING_SUBSCRIPTION_ID="" MACHINELEARNING_RESOURCE_GROUP="" node dist/batchDeploymentsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-webservices/package.json b/sdk/machinelearning/arm-webservices/package.json index e5d3287653af..ed053cdaf92d 100644 --- a/sdk/machinelearning/arm-webservices/package.json +++ b/sdk/machinelearning/arm-webservices/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md b/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md index 3576b14e09a5..8b71d3cc2182 100644 --- a/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md +++ b/sdk/machinelearning/arm-webservices/samples/v1/javascript/README.md @@ -44,7 +44,7 @@ node webServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node webServicesCreateOrUpdateSample.js +cross-env node webServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md b/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md index 6f380a9903b2..857ecfe863e3 100644 --- a/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md +++ b/sdk/machinelearning/arm-webservices/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ node dist/webServicesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/webServicesCreateOrUpdateSample.js +cross-env node dist/webServicesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-workspaces/package.json b/sdk/machinelearning/arm-workspaces/package.json index 0c35434ab34e..0a946e396406 100644 --- a/sdk/machinelearning/arm-workspaces/package.json +++ b/sdk/machinelearning/arm-workspaces/package.json @@ -36,7 +36,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md b/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md index ec208c3f52a1..5d49b8799ef0 100644 --- a/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md +++ b/sdk/machinelearning/arm-workspaces/samples/v1/javascript/README.md @@ -52,7 +52,7 @@ node listWorkspaceKeys.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node listWorkspaceKeys.js +cross-env node listWorkspaceKeys.js ``` ## Next Steps diff --git a/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md b/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md index 14454517419a..7c0644670a43 100644 --- a/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md +++ b/sdk/machinelearning/arm-workspaces/samples/v1/typescript/README.md @@ -64,7 +64,7 @@ node dist/listWorkspaceKeys.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/listWorkspaceKeys.js +cross-env node dist/listWorkspaceKeys.js ``` ## Next Steps diff --git a/sdk/machinelearningcompute/arm-machinelearningcompute/package.json b/sdk/machinelearningcompute/arm-machinelearningcompute/package.json index 6c9bb9f9abe5..fa80bb5e1e6b 100644 --- a/sdk/machinelearningcompute/arm-machinelearningcompute/package.json +++ b/sdk/machinelearningcompute/arm-machinelearningcompute/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md index e443c854f466..0abb632e5a5c 100644 --- a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md +++ b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/javascript/README.md @@ -56,7 +56,7 @@ node checkUpdateForAnOperationalizationCluster.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node checkUpdateForAnOperationalizationCluster.js +cross-env node checkUpdateForAnOperationalizationCluster.js ``` ## Next Steps diff --git a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md index 39d5bf38481d..30c7f28a970e 100644 --- a/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md +++ b/sdk/machinelearningcompute/arm-machinelearningcompute/samples/v3-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/checkUpdateForAnOperationalizationCluster.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/checkUpdateForAnOperationalizationCluster.js +cross-env node dist/checkUpdateForAnOperationalizationCluster.js ``` ## Next Steps diff --git a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json index 2bec38d09911..83cdf5126ab2 100644 --- a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json +++ b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md index 00ec28d7314a..27bdcda0ebd4 100644 --- a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md +++ b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/javascript/README.md @@ -52,7 +52,7 @@ node accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js +cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md index a366d97a7fcd..a0cfffe116b1 100644 --- a/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md +++ b/sdk/machinelearningexperimentation/arm-machinelearningexperimentation/samples/v2-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js +cross-env MACHINELEARNINGEXPERIMENTATION_SUBSCRIPTION_ID="" MACHINELEARNINGEXPERIMENTATION_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maintenance/arm-maintenance/package.json b/sdk/maintenance/arm-maintenance/package.json index d021ae013ada..b1abb6d2d345 100644 --- a/sdk/maintenance/arm-maintenance/package.json +++ b/sdk/maintenance/arm-maintenance/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md b/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md index 2857e04f8529..531266dd89f2 100644 --- a/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md +++ b/sdk/maintenance/arm-maintenance/samples/v1-beta/javascript/README.md @@ -72,7 +72,7 @@ node applyUpdateForResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node applyUpdateForResourceGroupListSample.js +cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node applyUpdateForResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md b/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md index 25d3061dfc94..f9b24b4fdade 100644 --- a/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md +++ b/sdk/maintenance/arm-maintenance/samples/v1-beta/typescript/README.md @@ -84,7 +84,7 @@ node dist/applyUpdateForResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node dist/applyUpdateForResourceGroupListSample.js +cross-env MAINTENANCE_SUBSCRIPTION_ID="" MAINTENANCE_RESOURCE_GROUP="" node dist/applyUpdateForResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/managedapplications/arm-managedapplications/package.json b/sdk/managedapplications/arm-managedapplications/package.json index 80153adfbaa2..3f2f1fc7538a 100644 --- a/sdk/managedapplications/arm-managedapplications/package.json +++ b/sdk/managedapplications/arm-managedapplications/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md b/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md index a05f76da1e38..822e6ecc22c4 100644 --- a/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md +++ b/sdk/managedapplications/arm-managedapplications/samples/v3/javascript/README.md @@ -67,7 +67,7 @@ node applicationDefinitionsCreateOrUpdateByIdSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node applicationDefinitionsCreateOrUpdateByIdSample.js +cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node applicationDefinitionsCreateOrUpdateByIdSample.js ``` ## Next Steps diff --git a/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md b/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md index f75ebb42c31c..f8450bbd9026 100644 --- a/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md +++ b/sdk/managedapplications/arm-managedapplications/samples/v3/typescript/README.md @@ -79,7 +79,7 @@ node dist/applicationDefinitionsCreateOrUpdateByIdSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node dist/applicationDefinitionsCreateOrUpdateByIdSample.js +cross-env MANAGEDAPPLICATIONS_SUBSCRIPTION_ID="" MANAGEDAPPLICATIONS_RESOURCE_GROUP="" node dist/applicationDefinitionsCreateOrUpdateByIdSample.js ``` ## Next Steps diff --git a/sdk/managednetworkfabric/arm-managednetworkfabric/package.json b/sdk/managednetworkfabric/arm-managednetworkfabric/package.json index ae226bc470ad..3d26f7ad7d8b 100644 --- a/sdk/managednetworkfabric/arm-managednetworkfabric/package.json +++ b/sdk/managednetworkfabric/arm-managednetworkfabric/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md index 0026a07d8ea5..5c991e78e98d 100644 --- a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md +++ b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/javascript/README.md @@ -201,7 +201,7 @@ node accessControlListsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node accessControlListsCreateSample.js +cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node accessControlListsCreateSample.js ``` ## Next Steps diff --git a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md index 3fbbd9dc76e4..683fa1962aab 100644 --- a/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md +++ b/sdk/managednetworkfabric/arm-managednetworkfabric/samples/v1/typescript/README.md @@ -213,7 +213,7 @@ node dist/accessControlListsCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node dist/accessControlListsCreateSample.js +cross-env MANAGEDNETWORKFABRIC_SUBSCRIPTION_ID="" MANAGEDNETWORKFABRIC_RESOURCE_GROUP="" node dist/accessControlListsCreateSample.js ``` ## Next Steps diff --git a/sdk/managementgroups/arm-managementgroups/package.json b/sdk/managementgroups/arm-managementgroups/package.json index 6e973cbc79b8..9efcab067023 100644 --- a/sdk/managementgroups/arm-managementgroups/package.json +++ b/sdk/managementgroups/arm-managementgroups/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md b/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md index 68778aa63b10..ab9032a9c1b9 100644 --- a/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md +++ b/sdk/managementgroups/arm-managementgroups/samples/v2/javascript/README.md @@ -56,7 +56,7 @@ node checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node checkNameAvailabilitySample.js +cross-env node checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md b/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md index e2ad42ca0085..4df17416859b 100644 --- a/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md +++ b/sdk/managementgroups/arm-managementgroups/samples/v2/typescript/README.md @@ -68,7 +68,7 @@ node dist/checkNameAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/checkNameAvailabilitySample.js +cross-env node dist/checkNameAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/managementpartner/arm-managementpartner/package.json b/sdk/managementpartner/arm-managementpartner/package.json index 1a507c42132f..c6c263a19fb9 100644 --- a/sdk/managementpartner/arm-managementpartner/package.json +++ b/sdk/managementpartner/arm-managementpartner/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md b/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md index 9e11a46f2d2a..91aa113f0e3a 100644 --- a/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md +++ b/sdk/managementpartner/arm-managementpartner/samples/v3/javascript/README.md @@ -42,7 +42,7 @@ node operationListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationListSample.js +cross-env node operationListSample.js ``` ## Next Steps diff --git a/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md b/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md index 2581f7eeb71f..95454c1413bd 100644 --- a/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md +++ b/sdk/managementpartner/arm-managementpartner/samples/v3/typescript/README.md @@ -54,7 +54,7 @@ node dist/operationListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationListSample.js +cross-env node dist/operationListSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/package.json b/sdk/maps/arm-maps/package.json index 7a3c7604274c..58a746708b56 100644 --- a/sdk/maps/arm-maps/package.json +++ b/sdk/maps/arm-maps/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md b/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md index 156aac0500f1..25ad582ac0f6 100644 --- a/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md +++ b/sdk/maps/arm-maps/samples/v3-beta/javascript/README.md @@ -52,7 +52,7 @@ node accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node accountsCreateOrUpdateSample.js +cross-env node accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md b/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md index 3057ef532f84..9a1f4c9d033b 100644 --- a/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md +++ b/sdk/maps/arm-maps/samples/v3-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/accountsCreateOrUpdateSample.js +cross-env node dist/accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/samples/v3/javascript/README.md b/sdk/maps/arm-maps/samples/v3/javascript/README.md index 11fb21d9adf1..ad586e3072ed 100644 --- a/sdk/maps/arm-maps/samples/v3/javascript/README.md +++ b/sdk/maps/arm-maps/samples/v3/javascript/README.md @@ -52,7 +52,7 @@ node accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js +cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/arm-maps/samples/v3/typescript/README.md b/sdk/maps/arm-maps/samples/v3/typescript/README.md index d7c221c7dacc..2e33d819204a 100644 --- a/sdk/maps/arm-maps/samples/v3/typescript/README.md +++ b/sdk/maps/arm-maps/samples/v3/typescript/README.md @@ -64,7 +64,7 @@ node dist/accountsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js +cross-env MAPS_SUBSCRIPTION_ID="" MAPS_RESOURCE_GROUP="" node dist/accountsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/maps/maps-common/package.json b/sdk/maps/maps-common/package.json index edeaba7e8f8f..ed9a30620ac8 100644 --- a/sdk/maps/maps-common/package.json +++ b/sdk/maps/maps-common/package.json @@ -10,12 +10,12 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "ci": "npm run build && npm run check-format && npm run lint", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", "execute:samples": "echo skipped", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", "generate:client": "echo skipped", "lint": "eslint package.json src", "lint:fix": "eslint package.json src --fix --fix-type [problem,suggestion]", @@ -65,8 +65,12 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-geolocation-rest/package.json b/sdk/maps/maps-geolocation-rest/package.json index 007f85d1002b..5de76f12fd39 100644 --- a/sdk/maps/maps-geolocation-rest/package.json +++ b/sdk/maps/maps-geolocation-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md b/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md index f8896d444335..67e1f6988bb8 100644 --- a/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md +++ b/sdk/maps/maps-geolocation-rest/samples/v1-beta/javascript/README.md @@ -39,7 +39,7 @@ node getCountryCodeFromIP.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node getCountryCodeFromIP.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node getCountryCodeFromIP.js ``` ## Next Steps diff --git a/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md b/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md index b6e2b06fc26c..ef8f4de223e2 100644 --- a/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md +++ b/sdk/maps/maps-geolocation-rest/samples/v1-beta/typescript/README.md @@ -51,7 +51,7 @@ node dist/getCountryCodeFromIP.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCountryCodeFromIP.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCountryCodeFromIP.js ``` ## Next Steps diff --git a/sdk/maps/maps-render-rest/package.json b/sdk/maps/maps-render-rest/package.json index d9544a45a057..99f4dd8eac40 100644 --- a/sdk/maps/maps-render-rest/package.json +++ b/sdk/maps/maps-render-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md b/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md index 65aa18642249..39c355a68539 100644 --- a/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md +++ b/sdk/maps/maps-render-rest/samples/v2-beta/javascript/README.md @@ -47,7 +47,7 @@ node getCopyrightCaption.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node getCopyrightCaption.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node getCopyrightCaption.js ``` ## Next Steps diff --git a/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md b/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md index 79448fee1a1c..46c154d9f0f2 100644 --- a/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md +++ b/sdk/maps/maps-render-rest/samples/v2-beta/typescript/README.md @@ -59,7 +59,7 @@ node dist/getCopyrightCaption.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCopyrightCaption.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getCopyrightCaption.js ``` ## Next Steps diff --git a/sdk/maps/maps-route-rest/package.json b/sdk/maps/maps-route-rest/package.json index 3a3ae916934d..58a30ad937ba 100644 --- a/sdk/maps/maps-route-rest/package.json +++ b/sdk/maps/maps-route-rest/package.json @@ -55,11 +55,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -92,9 +92,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md b/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md index 77677d5fffd7..4d09ae63d438 100644 --- a/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md +++ b/sdk/maps/maps-route-rest/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node directions.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node directions.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node directions.js ``` ## Next Steps diff --git a/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md b/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md index 8491c445db73..597820dec33c 100644 --- a/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md +++ b/sdk/maps/maps-route-rest/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/directions.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/directions.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/directions.js ``` ## Next Steps diff --git a/sdk/maps/maps-search-rest/package.json b/sdk/maps/maps-search-rest/package.json index f6bcbb172f0c..4f86e8497210 100644 --- a/sdk/maps/maps-search-rest/package.json +++ b/sdk/maps/maps-search-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md b/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md index 035ef5724c4e..0e0690e12c93 100644 --- a/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md +++ b/sdk/maps/maps-search-rest/samples/v2-beta/javascript/README.md @@ -43,7 +43,7 @@ node geocoding.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node geocoding.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node geocoding.js ``` ## Next Steps diff --git a/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md b/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md index d6a73ca38825..5b2d72e865c0 100644 --- a/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md +++ b/sdk/maps/maps-search-rest/samples/v2-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/geocoding.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/geocoding.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/geocoding.js ``` ## Next Steps diff --git a/sdk/maps/maps-timezone-rest/package.json b/sdk/maps/maps-timezone-rest/package.json index 9e84f791a4bf..b27ce15da651 100644 --- a/sdk/maps/maps-timezone-rest/package.json +++ b/sdk/maps/maps-timezone-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -70,9 +70,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md b/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md index 06cd24d0e6cc..ea31b08e73ad 100644 --- a/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md +++ b/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/README.md @@ -44,7 +44,7 @@ node getIanaVersion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env MAPS_RESOURCE_CLIENT_ID="" node getIanaVersion.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node getIanaVersion.js ``` [getTimezoneById]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/maps/maps-timezone-rest/samples/v1-beta/javascript/getTimezoneById.js diff --git a/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md b/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md index 67933cf7f8f0..9ccb58e1ec13 100644 --- a/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md +++ b/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/README.md @@ -56,7 +56,7 @@ node dist/getIanaVersion.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getIanaVersion.js +cross-env MAPS_RESOURCE_CLIENT_ID="" node dist/getIanaVersion.js ``` [getTimezoneById]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/maps/maps-timezone-rest/samples/v1-beta/typescript/src/getTimezoneById.ts diff --git a/sdk/mariadb/arm-mariadb/package.json b/sdk/mariadb/arm-mariadb/package.json index 79b1e2fb426d..87388df4d65a 100644 --- a/sdk/mariadb/arm-mariadb/package.json +++ b/sdk/mariadb/arm-mariadb/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md b/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md index 1611eca07865..a8365f20bef9 100644 --- a/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md +++ b/sdk/mariadb/arm-mariadb/samples/v2/javascript/README.md @@ -92,7 +92,7 @@ node advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node advisorsGetSample.js +cross-env node advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md b/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md index ed4735c7ef30..2efd784c0148 100644 --- a/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md +++ b/sdk/mariadb/arm-mariadb/samples/v2/typescript/README.md @@ -104,7 +104,7 @@ node dist/advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/advisorsGetSample.js +cross-env node dist/advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/marketplaceordering/arm-marketplaceordering/package.json b/sdk/marketplaceordering/arm-marketplaceordering/package.json index 295cf830753e..d2ad44ac4820 100644 --- a/sdk/marketplaceordering/arm-marketplaceordering/package.json +++ b/sdk/marketplaceordering/arm-marketplaceordering/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md index 0b0e83383010..621dadffda48 100644 --- a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md +++ b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/javascript/README.md @@ -42,7 +42,7 @@ node marketplaceAgreementsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node marketplaceAgreementsCancelSample.js +cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node marketplaceAgreementsCancelSample.js ``` ## Next Steps diff --git a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md index c4dc5029f616..e5b22076a040 100644 --- a/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md +++ b/sdk/marketplaceordering/arm-marketplaceordering/samples/v3/typescript/README.md @@ -54,7 +54,7 @@ node dist/marketplaceAgreementsCancelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node dist/marketplaceAgreementsCancelSample.js +cross-env MARKETPLACEORDERING_SUBSCRIPTION_ID="" node dist/marketplaceAgreementsCancelSample.js ``` ## Next Steps diff --git a/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json b/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json index 30f2fcc629c9..075932c3a41c 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json +++ b/sdk/metricsadvisor/ai-metrics-advisor-perf-tests/package.json @@ -52,17 +52,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/metricsadvisor/ai-metrics-advisor/package.json b/sdk/metricsadvisor/ai-metrics-advisor/package.json index e1b3a241cd89..991d2cca1248 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/package.json +++ b/sdk/metricsadvisor/ai-metrics-advisor/package.json @@ -49,11 +49,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm dist-browser dist-test dist-test temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm dist-browser dist-test dist-test temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -87,9 +87,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md index 746e2a8433ac..f3133cf11130 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md @@ -60,7 +60,7 @@ node quickstart.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node quickstart.js +cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node quickstart.js ``` ## Next Steps diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md index 90fc062decff..7b12db767cd9 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md @@ -72,7 +72,7 @@ node dist/quickstart.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node dist/quickstart.js +cross-env METRICS_ADVISOR_ENDPOINT="" METRICS_ADVISOR_SUBSCRIPTION_KEY="" METRICS_ADVISOR_API_KEY="" METRICS_ADVISOR_SQL_SERVER_CONNECTION_STRING="" METRICS_ADVISOR_AZURE_SQL_SERVER_QUERY="" node dist/quickstart.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrate/package.json b/sdk/migrate/arm-migrate/package.json index 5ac4e6fd7076..50ae729f1bd2 100644 --- a/sdk/migrate/arm-migrate/package.json +++ b/sdk/migrate/arm-migrate/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/migrate/arm-migrate/samples/v2/javascript/README.md b/sdk/migrate/arm-migrate/samples/v2/javascript/README.md index 6d4469794591..ad00b3a2b677 100644 --- a/sdk/migrate/arm-migrate/samples/v2/javascript/README.md +++ b/sdk/migrate/arm-migrate/samples/v2/javascript/README.md @@ -82,7 +82,7 @@ node assessedMachinesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesGetSample.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrate/samples/v2/typescript/README.md b/sdk/migrate/arm-migrate/samples/v2/typescript/README.md index efd665ebb1ac..2be2ea65128a 100644 --- a/sdk/migrate/arm-migrate/samples/v2/typescript/README.md +++ b/sdk/migrate/arm-migrate/samples/v2/typescript/README.md @@ -94,7 +94,7 @@ node dist/assessedMachinesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesGetSample.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrationassessment/package.json b/sdk/migrate/arm-migrationassessment/package.json index 44b659aad137..e4c06e95f2bf 100644 --- a/sdk/migrate/arm-migrationassessment/package.json +++ b/sdk/migrate/arm-migrationassessment/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md b/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md index e6f4a20ea040..92eed0cc80c6 100644 --- a/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md +++ b/sdk/migrate/arm-migrationassessment/samples/v1-beta/javascript/README.md @@ -113,7 +113,7 @@ node assessedMachinesOperationsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesOperationsGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node assessedMachinesOperationsGetSample.js ``` ## Next Steps diff --git a/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md b/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md index 6df60896f891..8eaeaa83dcbd 100644 --- a/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md +++ b/sdk/migrate/arm-migrationassessment/samples/v1-beta/typescript/README.md @@ -125,7 +125,7 @@ node dist/assessedMachinesOperationsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesOperationsGetSample.js +cross-env MIGRATE_SUBSCRIPTION_ID="" MIGRATE_RESOURCE_GROUP="" node dist/assessedMachinesOperationsGetSample.js ``` ## Next Steps diff --git a/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json b/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json index d4827ce802c0..9dd5f836f831 100644 --- a/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json +++ b/sdk/migrationdiscovery/arm-migrationdiscoverysap/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md index 8abe49d6e82e..7a8fe669f817 100644 --- a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md +++ b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/javascript/README.md @@ -54,7 +54,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node operationsListSample.js +cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node operationsListSample.js ``` ## Next Steps diff --git a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md index a178bf802dee..75c338fdbe6b 100644 --- a/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md +++ b/sdk/migrationdiscovery/arm-migrationdiscoverysap/samples/v1-beta/typescript/README.md @@ -66,7 +66,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node dist/operationsListSample.js +cross-env MIGRATIONDISCOVERY_SUBSCRIPTION_ID="" node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/mobilenetwork/arm-mobilenetwork/package.json b/sdk/mobilenetwork/arm-mobilenetwork/package.json index f34b82bc2557..f416d940ad4f 100644 --- a/sdk/mobilenetwork/arm-mobilenetwork/package.json +++ b/sdk/mobilenetwork/arm-mobilenetwork/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md index 45762d383e96..07c2860b267c 100644 --- a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md +++ b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/javascript/README.md @@ -121,7 +121,7 @@ node attachedDataNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node attachedDataNetworksCreateOrUpdateSample.js +cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node attachedDataNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md index 5fbf5432d904..b2fac7ddfaed 100644 --- a/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md +++ b/sdk/mobilenetwork/arm-mobilenetwork/samples/v6/typescript/README.md @@ -133,7 +133,7 @@ node dist/attachedDataNetworksCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node dist/attachedDataNetworksCreateOrUpdateSample.js +cross-env MOBILENETWORK_SUBSCRIPTION_ID="" MOBILENETWORK_RESOURCE_GROUP="" node dist/attachedDataNetworksCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mongocluster/arm-mongocluster/package.json b/sdk/mongocluster/arm-mongocluster/package.json index 83b9ee09f928..6a19962e9eee 100644 --- a/sdk/mongocluster/arm-mongocluster/package.json +++ b/sdk/mongocluster/arm-mongocluster/package.json @@ -67,47 +67,51 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, "devDependencies": { - "@azure-tools/test-credential": "^2.0.0", - "@azure-tools/test-recorder": "^4.1.0", - "@azure-tools/test-utils-vitest": "^1.0.0", - "@azure/dev-tool": "^1.0.0", - "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@azure/identity": "^4.9.0", - "@types/node": "^20.0.0", - "eslint": "^9.9.0", - "@vitest/browser": "^3.0.9", - "@vitest/coverage-istanbul": "^3.0.9", - "dotenv": "^16.0.0", - "playwright": "^1.52.0", - "typescript": "~5.8.2", - "vitest": "^3.0.9" + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", + "@azure/dev-tool": "workspace:^", + "@azure/eslint-plugin-azure-sdk": "workspace:^", + "@azure/identity": "catalog:internal", + "@types/node": "catalog:", + "@vitest/browser": "catalog:testing", + "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", + "eslint": "catalog:", + "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:testing" }, "scripts": { - "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "rimraf review && dev-tool run extract-api", - "pack": "npm pack 2>&1", - "lint": "echo skipped", - "lint:fix": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json && dev-tool samples publish -f", "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", + "extract-api": "rimraf review && dev-tool run extract-api", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", + "lint": "echo skipped", + "lint:fix": "echo skipped", + "pack": "pnpm pack 2>&1", + "test": "npm run test:node && npm run test:browser", "test:browser": "dev-tool run build-test && dev-tool run test:vitest --browser", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "test:node": "dev-tool run test:vitest", + "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "test:node:esm": "dev-tool run test:vitest --esm", - "test": "npm run test:node && npm run test:browser", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md index a55713b121e6..ae4c44b41581 100644 --- a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md +++ b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/javascript/README.md @@ -60,7 +60,7 @@ node firewallRulesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node firewallRulesCreateOrUpdateSample.js +cross-env node firewallRulesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md index bde631d0a486..2a4a6283afcb 100644 --- a/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md +++ b/sdk/mongocluster/arm-mongocluster/samples/v1-beta/typescript/README.md @@ -72,7 +72,7 @@ node dist/firewallRulesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/firewallRulesCreateOrUpdateSample.js +cross-env node dist/firewallRulesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mongodbatlas/arm-mongodbatlas/package.json b/sdk/mongodbatlas/arm-mongodbatlas/package.json index afa35d21e681..f0aa4a262979 100644 --- a/sdk/mongodbatlas/arm-mongodbatlas/package.json +++ b/sdk/mongodbatlas/arm-mongodbatlas/package.json @@ -64,12 +64,12 @@ ] }, "dependencies": { - "@azure/core-util": "^1.12.0", "@azure-rest/core-client": "^2.3.1", "@azure/abort-controller": "^2.1.2", "@azure/core-auth": "^1.9.0", "@azure/core-lro": "^3.1.0", "@azure/core-rest-pipeline": "^1.20.0", + "@azure/core-util": "^1.12.0", "@azure/logger": "^1.2.0", "tslib": "^2.8.1" }, @@ -81,22 +81,26 @@ "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", "@types/node": "catalog:", - "eslint": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md index 4320b8cd1255..4c83c6813bde 100644 --- a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md +++ b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/javascript/README.md @@ -43,7 +43,7 @@ node operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node operationsListSample.js +cross-env node operationsListSample.js ``` ## Next Steps diff --git a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md index b939f39b78f8..8b0c5b661d6b 100644 --- a/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md +++ b/sdk/mongodbatlas/arm-mongodbatlas/samples/v1/typescript/README.md @@ -55,7 +55,7 @@ node dist/operationsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/operationsListSample.js +cross-env node dist/operationsListSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json index 1573c16d0f47..4d83d8372830 100644 --- a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json +++ b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/package.json @@ -36,8 +36,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -56,7 +59,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index d8bc7084983e..f7886f89d1fc 100644 --- a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -46,7 +46,7 @@ node diagnosticSettingsCategoryGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node diagnosticSettingsCategoryGetSample.js +cross-env node diagnosticSettingsCategoryGetSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index 3179be8f0424..85927901c77e 100644 --- a/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/monitor/arm-monitor-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -58,7 +58,7 @@ node dist/diagnosticSettingsCategoryGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/diagnosticSettingsCategoryGetSample.js +cross-env node dist/diagnosticSettingsCategoryGetSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor/package.json b/sdk/monitor/arm-monitor/package.json index 821ba78e2ce8..cedb236ff40c 100644 --- a/sdk/monitor/arm-monitor/package.json +++ b/sdk/monitor/arm-monitor/package.json @@ -42,8 +42,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -62,7 +65,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md b/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md index 97ae9b925445..d6de556dedac 100644 --- a/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md +++ b/sdk/monitor/arm-monitor/samples/v8-beta/javascript/README.md @@ -152,7 +152,7 @@ node actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js +cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js ``` ## Next Steps diff --git a/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md b/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md index 8015345fec98..d4879d283a75 100644 --- a/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md +++ b/sdk/monitor/arm-monitor/samples/v8-beta/typescript/README.md @@ -164,7 +164,7 @@ node dist/actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node dist/actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js +cross-env MONITOR_SUBSCRIPTION_ID="" MONITOR_RESOURCE_GROUP="" node dist/actionGroupsCreateNotificationsAtActionGroupResourceLevelSample.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-ingestion-perf-tests/package.json b/sdk/monitor/monitor-ingestion-perf-tests/package.json index 4cdeadcc9207..57499e8f6ad2 100644 --- a/sdk/monitor/monitor-ingestion-perf-tests/package.json +++ b/sdk/monitor/monitor-ingestion-perf-tests/package.json @@ -53,17 +53,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-esm test-dist types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-esm test-dist types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/monitor/monitor-ingestion/package.json b/sdk/monitor/monitor-ingestion/package.json index c10471c840dd..75f54c9c5125 100644 --- a/sdk/monitor/monitor-ingestion/package.json +++ b/sdk/monitor/monitor-ingestion/package.json @@ -50,11 +50,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "dev-tool samples run samples-dev", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "echo Obsolete", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -89,9 +89,13 @@ "@types/pako": "^2.0.0", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md b/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md index 7c521f66a19a..57d9d4b0ef61 100644 --- a/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-ingestion/samples/v1/javascript/README.md @@ -44,7 +44,7 @@ node defaultConcurrency.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node defaultConcurrency.js +cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node defaultConcurrency.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md b/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md index f50958bd8617..c15e444a9ce6 100644 --- a/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-ingestion/samples/v1/typescript/README.md @@ -56,7 +56,7 @@ node dist/defaultConcurrency.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node dist/defaultConcurrency.js +cross-env LOGS_INGESTION_ENDPOINT="" DATA_COLLECTION_RULE_ID="" STREAM_NAME="" node dist/defaultConcurrency.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/package.json b/sdk/monitor/monitor-opentelemetry-exporter/package.json index 1121310e2ae0..a86ae1951596 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/package.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist-esm types dist", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist-esm types dist", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -79,10 +79,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "nock": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md index de26ef0c371f..ca3020dbe8dc 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/javascript/README.md @@ -51,7 +51,7 @@ node basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md index 107c257e2b4b..c1f8925bd535 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1-beta/typescript/README.md @@ -63,7 +63,7 @@ node dist/basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md index 653ac555b9c8..19d70299bde5 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/javascript/README.md @@ -49,7 +49,7 @@ node basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md index dc1c84ca3a3b..85ab39b4f933 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/v1/typescript/README.md @@ -61,7 +61,7 @@ node dist/basicTracerNode.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js +cross-env APPLICATIONINSIGHTS_CONNECTION_STRING="" node dist/basicTracerNode.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-opentelemetry-perf-tests/package.json b/sdk/monitor/monitor-opentelemetry-perf-tests/package.json index a19d2cbc3efe..b2e2a36e1655 100644 --- a/sdk/monitor/monitor-opentelemetry-perf-tests/package.json +++ b/sdk/monitor/monitor-opentelemetry-perf-tests/package.json @@ -55,17 +55,21 @@ "@azure/dev-tool": "workspace:^", "@azure/eslint-plugin-azure-sdk": "workspace:^", "@types/node": "catalog:", + "cross-env": "catalog:", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:" }, "scripts": { "build": "npm run clean && dev-tool run build-package", "build:samples": "echo Skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", - "lint:fix": "dev-tool run vendored eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* types *.tgz *.log", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src", + "lint:fix": "eslint -c ../../../common/tools/eslint-plugin-azure-sdk/eslint.perftests.config.mjs src --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "perf-test:node": "npm run build && node dist/esm/index.js", "test": "npm run test:node && npm run test:browser", diff --git a/sdk/monitor/monitor-opentelemetry/package.json b/sdk/monitor/monitor-opentelemetry/package.json index fb06aa5803a1..282d194ae6e5 100644 --- a/sdk/monitor/monitor-opentelemetry/package.json +++ b/sdk/monitor/monitor-opentelemetry/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -59,8 +59,12 @@ "@opentelemetry/exporter-metrics-otlp-http": "^0.204.0", "@types/node": "catalog:", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-query-logs/package.json b/sdk/monitor/monitor-query-logs/package.json index f620905b0bbb..9329ffbc6ce2 100644 --- a/sdk/monitor/monitor-query-logs/package.json +++ b/sdk/monitor/monitor-query-logs/package.json @@ -18,11 +18,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", "execute:samples": "echo Obsolete", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -55,10 +55,10 @@ "sideEffects": false, "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json", "dependencies": { + "@azure-rest/core-client": "^2.5.0", "@azure/core-auth": "^1.9.0", "@azure/core-client": "^1.9.2", "@azure/core-paging": "^1.6.2", - "@azure-rest/core-client": "^2.5.0", "@azure/core-rest-pipeline": "^1.19.0", "@azure/core-tracing": "^1.2.0", "@azure/core-util": "^1.11.0", @@ -80,9 +80,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md b/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md index 88c88acf1abc..73023752cb18 100644 --- a/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-query-logs/samples/v1/javascript/README.md @@ -42,7 +42,7 @@ node logsQuery.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_WORKSPACE_ID="" node logsQuery.js +cross-env MONITOR_WORKSPACE_ID="" node logsQuery.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md b/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md index ecbee74b72d2..027bfba15986 100644 --- a/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-query-logs/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ node dist/logsQuery.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MONITOR_WORKSPACE_ID="" node dist/logsQuery.js +cross-env MONITOR_WORKSPACE_ID="" node dist/logsQuery.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-query-metrics/package.json b/sdk/monitor/monitor-query-metrics/package.json index f5e53289a468..e902e49123a5 100644 --- a/sdk/monitor/monitor-query-metrics/package.json +++ b/sdk/monitor/monitor-query-metrics/package.json @@ -10,11 +10,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log coverage coverage-browser", "execute:samples": "echo Obsolete", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -47,8 +47,8 @@ "sideEffects": false, "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json", "dependencies": { - "@azure/core-auth": "^1.9.0", "@azure-rest/core-client": "^2.5.0", + "@azure/core-auth": "^1.9.0", "@azure/core-rest-pipeline": "^1.19.0", "@azure/core-tracing": "^1.2.0", "@azure/logger": "^1.1.4", @@ -69,9 +69,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md b/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md index a71c3df20fb5..1963117c6949 100644 --- a/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md +++ b/sdk/monitor/monitor-query-metrics/samples/v1/javascript/README.md @@ -51,7 +51,7 @@ node queryMultipleResources.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node queryMultipleResources.js +cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node queryMultipleResources.js ``` ## Next Steps diff --git a/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md b/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md index 4ad95e7b9bb1..b904a329d2b3 100644 --- a/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md +++ b/sdk/monitor/monitor-query-metrics/samples/v1/typescript/README.md @@ -63,7 +63,7 @@ node dist/queryMultipleResources.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node dist/queryMultipleResources.js +cross-env METRICS_ENDPOINT="" METRICS_RESOURCE_IDS="" METRICS_RESOURCE_NAMESPACE="" node dist/queryMultipleResources.js ``` ## Next Steps diff --git a/sdk/msi/arm-msi/package.json b/sdk/msi/arm-msi/package.json index 086798fc30db..f4d1ae785e96 100644 --- a/sdk/msi/arm-msi/package.json +++ b/sdk/msi/arm-msi/package.json @@ -8,9 +8,9 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -28,18 +28,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -57,7 +60,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/msi/arm-msi/samples/v2/javascript/README.md b/sdk/msi/arm-msi/samples/v2/javascript/README.md index f7ab04e3b3fc..93b51eded625 100644 --- a/sdk/msi/arm-msi/samples/v2/javascript/README.md +++ b/sdk/msi/arm-msi/samples/v2/javascript/README.md @@ -48,7 +48,7 @@ node federatedIdentityCredentialsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node federatedIdentityCredentialsCreateOrUpdateSample.js +cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node federatedIdentityCredentialsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/msi/arm-msi/samples/v2/typescript/README.md b/sdk/msi/arm-msi/samples/v2/typescript/README.md index 7e0a51fec54d..ab7021952c07 100644 --- a/sdk/msi/arm-msi/samples/v2/typescript/README.md +++ b/sdk/msi/arm-msi/samples/v2/typescript/README.md @@ -60,7 +60,7 @@ node dist/federatedIdentityCredentialsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node dist/federatedIdentityCredentialsCreateOrUpdateSample.js +cross-env MSI_SUBSCRIPTION_ID="" MSI_RESOURCE_GROUP="" node dist/federatedIdentityCredentialsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql-flexible/package.json b/sdk/mysql/arm-mysql-flexible/package.json index 06c89e57bf65..a48c953bf061 100644 --- a/sdk/mysql/arm-mysql-flexible/package.json +++ b/sdk/mysql/arm-mysql-flexible/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md index 125341481a5e..bd37630ebcf6 100644 --- a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md +++ b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/javascript/README.md @@ -93,7 +93,7 @@ node advancedThreatProtectionSettingsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node advancedThreatProtectionSettingsGetSample.js +cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node advancedThreatProtectionSettingsGetSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md index aa44ff1d6f9a..cb4e63544475 100644 --- a/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md +++ b/sdk/mysql/arm-mysql-flexible/samples/v4-beta/typescript/README.md @@ -105,7 +105,7 @@ node dist/advancedThreatProtectionSettingsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node dist/advancedThreatProtectionSettingsGetSample.js +cross-env MYSQL_SUBSCRIPTION_ID="" MYSQL_RESOURCE_GROUP="" node dist/advancedThreatProtectionSettingsGetSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql/package.json b/sdk/mysql/arm-mysql/package.json index 8e992a65c283..ad35fbed9d03 100644 --- a/sdk/mysql/arm-mysql/package.json +++ b/sdk/mysql/arm-mysql/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/mysql/arm-mysql/samples/v5/javascript/README.md b/sdk/mysql/arm-mysql/samples/v5/javascript/README.md index 6cbc96de01dd..5767d347f896 100644 --- a/sdk/mysql/arm-mysql/samples/v5/javascript/README.md +++ b/sdk/mysql/arm-mysql/samples/v5/javascript/README.md @@ -101,7 +101,7 @@ node advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node advisorsGetSample.js +cross-env node advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/mysql/arm-mysql/samples/v5/typescript/README.md b/sdk/mysql/arm-mysql/samples/v5/typescript/README.md index 68b586e0969e..cf8f9677b345 100644 --- a/sdk/mysql/arm-mysql/samples/v5/typescript/README.md +++ b/sdk/mysql/arm-mysql/samples/v5/typescript/README.md @@ -113,7 +113,7 @@ node dist/advisorsGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/advisorsGetSample.js +cross-env node dist/advisorsGetSample.js ``` ## Next Steps diff --git a/sdk/neonpostgres/arm-neonpostgres/package.json b/sdk/neonpostgres/arm-neonpostgres/package.json index 5a0d193176a1..2191e4b484f0 100644 --- a/sdk/neonpostgres/arm-neonpostgres/package.json +++ b/sdk/neonpostgres/arm-neonpostgres/package.json @@ -87,20 +87,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md b/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md index f1f62b22e194..df4d7ede63f1 100644 --- a/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md +++ b/sdk/neonpostgres/arm-neonpostgres/samples/v1/javascript/README.md @@ -75,7 +75,7 @@ node branchesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node branchesCreateOrUpdateSample.js +cross-env node branchesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md b/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md index e3b044fddf4a..4811435968c7 100644 --- a/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md +++ b/sdk/neonpostgres/arm-neonpostgres/samples/v1/typescript/README.md @@ -87,7 +87,7 @@ node dist/branchesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/branchesCreateOrUpdateSample.js +cross-env node dist/branchesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/netapp/arm-netapp/package.json b/sdk/netapp/arm-netapp/package.json index 78e2a3758c74..7a3517a83f82 100644 --- a/sdk/netapp/arm-netapp/package.json +++ b/sdk/netapp/arm-netapp/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.3", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.3", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.1", "tslib": "^2.8.1" }, @@ -30,18 +30,22 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -55,21 +59,21 @@ ], "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", - "prepack": "npm run build", - "pack": "npm pack 2>&1", - "extract-api": "dev-tool run extract-api", - "lint": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:samples": "echo skipped.", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "lint": "echo skipped", + "pack": "pnpm pack 2>&1", + "prepack": "npm run build", "test": "npm run test:node && npm run test:browser", - "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "test:browser": "echo skipped", - "update-snippets": "dev-tool run update-snippets", + "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest", "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "integration-test": "npm run integration-test:node && npm run integration-test:browser" + "update-snippets": "dev-tool run update-snippets" }, "sideEffects": false, "//metadata": { diff --git a/sdk/netapp/arm-netapp/samples/v21/javascript/README.md b/sdk/netapp/arm-netapp/samples/v21/javascript/README.md index 2ea9d21b74b5..d8c26d6ffd56 100644 --- a/sdk/netapp/arm-netapp/samples/v21/javascript/README.md +++ b/sdk/netapp/arm-netapp/samples/v21/javascript/README.md @@ -147,7 +147,7 @@ node accountsChangeKeyVaultSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node accountsChangeKeyVaultSample.js +cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node accountsChangeKeyVaultSample.js ``` ## Next Steps diff --git a/sdk/netapp/arm-netapp/samples/v21/typescript/README.md b/sdk/netapp/arm-netapp/samples/v21/typescript/README.md index b645a768849a..541bdd2b3696 100644 --- a/sdk/netapp/arm-netapp/samples/v21/typescript/README.md +++ b/sdk/netapp/arm-netapp/samples/v21/typescript/README.md @@ -159,7 +159,7 @@ node dist/accountsChangeKeyVaultSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node dist/accountsChangeKeyVaultSample.js +cross-env NETAPP_SUBSCRIPTION_ID="" NETAPP_RESOURCE_GROUP="" node dist/accountsChangeKeyVaultSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json b/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json index 9aa1c619e310..e3708aef8180 100644 --- a/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json +++ b/sdk/network/arm-network-profile-2020-09-01-hybrid/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md index 7ebcfc189436..aa99a5b92faa 100644 --- a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md +++ b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/javascript/README.md @@ -148,7 +148,7 @@ node defaultSecurityRulesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node defaultSecurityRulesGetSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node defaultSecurityRulesGetSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md index efc7ae4e94d0..1d4855df857d 100644 --- a/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md +++ b/sdk/network/arm-network-profile-2020-09-01-hybrid/samples/v2/typescript/README.md @@ -160,7 +160,7 @@ node dist/defaultSecurityRulesGetSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/defaultSecurityRulesGetSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/defaultSecurityRulesGetSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-rest/package.json b/sdk/network/arm-network-rest/package.json index 8c3db36edf4c..ee02e581eb6e 100644 --- a/sdk/network/arm-network-rest/package.json +++ b/sdk/network/arm-network-rest/package.json @@ -33,11 +33,11 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript swagger/README.md && npm run format", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", @@ -69,9 +69,13 @@ "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", "autorest": "catalog:", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md b/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md index ebd258c51934..3e6991baeee4 100644 --- a/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md +++ b/sdk/network/arm-network-rest/samples/v1-beta/javascript/README.md @@ -649,7 +649,7 @@ node adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node adminRuleCollectionsCreateOrUpdateSample.js +cross-env node adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md b/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md index 314ff5c735d8..92dbe4a40e09 100644 --- a/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md +++ b/sdk/network/arm-network-rest/samples/v1-beta/typescript/README.md @@ -661,7 +661,7 @@ node dist/adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/adminRuleCollectionsCreateOrUpdateSample.js +cross-env node dist/adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network/package.json b/sdk/network/arm-network/package.json index 0ee98309d936..8edda8696c65 100644 --- a/sdk/network/arm-network/package.json +++ b/sdk/network/arm-network/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/network/arm-network/samples/v34/javascript/README.md b/sdk/network/arm-network/samples/v34/javascript/README.md index 330b38eb0a28..f59b675f78c0 100644 --- a/sdk/network/arm-network/samples/v34/javascript/README.md +++ b/sdk/network/arm-network/samples/v34/javascript/README.md @@ -763,7 +763,7 @@ node adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node adminRuleCollectionsCreateOrUpdateSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/network/arm-network/samples/v34/typescript/README.md b/sdk/network/arm-network/samples/v34/typescript/README.md index 7f00566c5fab..93b527b5107b 100644 --- a/sdk/network/arm-network/samples/v34/typescript/README.md +++ b/sdk/network/arm-network/samples/v34/typescript/README.md @@ -775,7 +775,7 @@ node dist/adminRuleCollectionsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/adminRuleCollectionsCreateOrUpdateSample.js +cross-env NETWORK_SUBSCRIPTION_ID="" NETWORK_RESOURCE_GROUP="" node dist/adminRuleCollectionsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/networkcloud/arm-networkcloud/package.json b/sdk/networkcloud/arm-networkcloud/package.json index b4bd77db8b0d..7116cbf62a25 100644 --- a/sdk/networkcloud/arm-networkcloud/package.json +++ b/sdk/networkcloud/arm-networkcloud/package.json @@ -8,11 +8,11 @@ "node": ">=20.0.0" }, "dependencies": { - "@azure/core-lro": "^2.5.4", "@azure/abort-controller": "^2.1.2", - "@azure/core-paging": "^1.6.2", - "@azure/core-client": "^1.9.2", "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-lro": "^2.5.4", + "@azure/core-paging": "^1.6.2", "@azure/core-rest-pipeline": "^1.19.0", "tslib": "^2.8.1" }, @@ -30,18 +30,21 @@ "types": "./dist/commonjs/index.d.ts", "type": "module", "devDependencies": { - "typescript": "catalog:", - "dotenv": "catalog:testing", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure-tools/test-utils-vitest": "workspace:^", "@azure/dev-tool": "workspace:^", "@azure/identity": "catalog:internal", "@azure/logger": "^1.1.4", - "@azure-tools/test-recorder": "workspace:^", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-utils-vitest": "workspace:^", "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", "vitest": "catalog:testing" }, "repository": "github:Azure/azure-sdk-for-js", @@ -59,7 +62,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md b/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md index 874b2cf8f0e9..4cd14a88fd40 100644 --- a/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md +++ b/sdk/networkcloud/arm-networkcloud/samples/v1/javascript/README.md @@ -162,7 +162,7 @@ node agentPoolsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node agentPoolsCreateOrUpdateSample.js +cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node agentPoolsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md b/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md index 800c202842c2..74de7e1c6853 100644 --- a/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md +++ b/sdk/networkcloud/arm-networkcloud/samples/v1/typescript/README.md @@ -174,7 +174,7 @@ node dist/agentPoolsCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node dist/agentPoolsCreateOrUpdateSample.js +cross-env NETWORKCLOUD_SUBSCRIPTION_ID="" NETWORKCLOUD_RESOURCE_GROUP="" node dist/agentPoolsCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/networkfunction/arm-networkfunction/package.json b/sdk/networkfunction/arm-networkfunction/package.json index 6193add23a3d..67fcc4539080 100644 --- a/sdk/networkfunction/arm-networkfunction/package.json +++ b/sdk/networkfunction/arm-networkfunction/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md b/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md index 9e069e36fd27..3c06870be602 100644 --- a/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md +++ b/sdk/networkfunction/arm-networkfunction/samples/v2/javascript/README.md @@ -48,7 +48,7 @@ node azureTrafficCollectorsByResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node azureTrafficCollectorsByResourceGroupListSample.js +cross-env node azureTrafficCollectorsByResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md b/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md index eae839dd0859..bd606ceebbe8 100644 --- a/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md +++ b/sdk/networkfunction/arm-networkfunction/samples/v2/typescript/README.md @@ -60,7 +60,7 @@ node dist/azureTrafficCollectorsByResourceGroupListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/azureTrafficCollectorsByResourceGroupListSample.js +cross-env node dist/azureTrafficCollectorsByResourceGroupListSample.js ``` ## Next Steps diff --git a/sdk/newrelicobservability/arm-newrelicobservability/package.json b/sdk/newrelicobservability/arm-newrelicobservability/package.json index cb782822e87c..268ffd0a8c5a 100644 --- a/sdk/newrelicobservability/arm-newrelicobservability/package.json +++ b/sdk/newrelicobservability/arm-newrelicobservability/package.json @@ -38,8 +38,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md index 814af836e5d5..9c2de6e8321c 100644 --- a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md +++ b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/javascript/README.md @@ -66,7 +66,7 @@ node accountsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node accountsListSample.js +cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node accountsListSample.js ``` ## Next Steps diff --git a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md index 668c7d55846a..0042436ab03b 100644 --- a/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md +++ b/sdk/newrelicobservability/arm-newrelicobservability/samples/v1/typescript/README.md @@ -78,7 +78,7 @@ node dist/accountsListSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node dist/accountsListSample.js +cross-env NEWRELICOBSERVABILITY_SUBSCRIPTION_ID="" node dist/accountsListSample.js ``` ## Next Steps diff --git a/sdk/nginx/arm-nginx/package.json b/sdk/nginx/arm-nginx/package.json index fee1c6f40c43..9aa5e328ce19 100644 --- a/sdk/nginx/arm-nginx/package.json +++ b/sdk/nginx/arm-nginx/package.json @@ -37,8 +37,11 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -60,7 +63,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md b/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md index 1c12308866e9..8207ca3a418b 100644 --- a/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md +++ b/sdk/nginx/arm-nginx/samples/v4-beta/javascript/README.md @@ -56,7 +56,7 @@ node apiKeysCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node apiKeysCreateOrUpdateSample.js +cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node apiKeysCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md b/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md index 000567c9fc52..7943c3e04b4c 100644 --- a/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md +++ b/sdk/nginx/arm-nginx/samples/v4-beta/typescript/README.md @@ -68,7 +68,7 @@ node dist/apiKeysCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node dist/apiKeysCreateOrUpdateSample.js +cross-env NGINX_SUBSCRIPTION_ID="" NGINX_RESOURCE_GROUP="" node dist/apiKeysCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/notificationhubs/arm-notificationhubs/package.json b/sdk/notificationhubs/arm-notificationhubs/package.json index d45d6fe79126..6c80e00ebfe6 100644 --- a/sdk/notificationhubs/arm-notificationhubs/package.json +++ b/sdk/notificationhubs/arm-notificationhubs/package.json @@ -39,8 +39,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,13 +63,13 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "lint": "dev-tool run vendored eslint package.json src test", - "lint:fix": "dev-tool run vendored eslint package.json src test --fix --fix-type [problem,suggestion]", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "test": "npm run test:node && npm run test:browser", "test:browser": "echo skipped", diff --git a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md index 0c3e693f7bba..20a99a4a1c7d 100644 --- a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md +++ b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/javascript/README.md @@ -71,7 +71,7 @@ node namespacesCheckAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node namespacesCheckAvailabilitySample.js +cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node namespacesCheckAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md index 09fec1fef4a0..09adb3884d70 100644 --- a/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md +++ b/sdk/notificationhubs/arm-notificationhubs/samples/v3-beta/typescript/README.md @@ -83,7 +83,7 @@ node dist/namespacesCheckAvailabilitySample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node dist/namespacesCheckAvailabilitySample.js +cross-env NOTIFICATIONHUBS_SUBSCRIPTION_ID="" node dist/namespacesCheckAvailabilitySample.js ``` ## Next Steps diff --git a/sdk/notificationhubs/notification-hubs/package.json b/sdk/notificationhubs/notification-hubs/package.json index df950e3f02a6..f9bfebfaa03c 100644 --- a/sdk/notificationhubs/notification-hubs/package.json +++ b/sdk/notificationhubs/notification-hubs/package.json @@ -19,10 +19,10 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* temp types *.tgz *.log", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", @@ -70,9 +70,13 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, diff --git a/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md b/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md index 7e218cfa9bbe..2dfb8c28fcf9 100644 --- a/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md +++ b/sdk/notificationhubs/notification-hubs/samples/v2/javascript/README.md @@ -62,7 +62,7 @@ node createInstallation.fcmLegacy.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node createInstallation.fcmLegacy.js +cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node createInstallation.fcmLegacy.js ``` ## Next Steps diff --git a/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md b/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md index d0864007bc65..1966e36b2d16 100644 --- a/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md +++ b/sdk/notificationhubs/notification-hubs/samples/v2/typescript/README.md @@ -74,7 +74,7 @@ node dist/createInstallation.fcmLegacy.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node dist/createInstallation.fcmLegacy.js +cross-env NOTIFICATIONHUBS_CONNECTION_STRING="" NOTIFICATION_HUB_NAME="" FCM_REGISTRATION_ID="" node dist/createInstallation.fcmLegacy.js ``` ## Next Steps diff --git a/sdk/oep/arm-oep/package.json b/sdk/oep/arm-oep/package.json index d447a5cb419a..6463d47a196f 100644 --- a/sdk/oep/arm-oep/package.json +++ b/sdk/oep/arm-oep/package.json @@ -38,7 +38,10 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "playwright": "catalog:testing", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, @@ -58,7 +61,7 @@ "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", "check-format": "echo skipped", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "echo skipped", "extract-api": "dev-tool run extract-api", "format": "echo skipped", diff --git a/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md b/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md index 92d3362aa139..bbc065e64261 100644 --- a/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md +++ b/sdk/oep/arm-oep/samples/v1-beta/javascript/README.md @@ -52,7 +52,7 @@ node energyServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node energyServicesCreateSample.js +cross-env node energyServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md b/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md index 026003b4b51c..981f9b113d56 100644 --- a/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md +++ b/sdk/oep/arm-oep/samples/v1-beta/typescript/README.md @@ -64,7 +64,7 @@ node dist/energyServicesCreateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/energyServicesCreateSample.js +cross-env node dist/energyServicesCreateSample.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/arm-onlineexperimentation/package.json b/sdk/onlineexperimentation/arm-onlineexperimentation/package.json index 445e6dbdd98d..111ea6dfc9a9 100644 --- a/sdk/onlineexperimentation/arm-onlineexperimentation/package.json +++ b/sdk/onlineexperimentation/arm-onlineexperimentation/package.json @@ -80,20 +80,24 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing" }, "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" \"samples-dev/*.ts\"", "generate:client": "echo skipped", "lint": "echo skipped", "lint:fix": "echo skipped", diff --git a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md index c5bd082f1250..94ff1122ce9b 100644 --- a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md +++ b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/javascript/README.md @@ -43,7 +43,7 @@ node onlineExperimentationWorkspacesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node onlineExperimentationWorkspacesCreateOrUpdateSample.js +cross-env node onlineExperimentationWorkspacesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md index c86baa872fa0..0c93812f7589 100644 --- a/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md +++ b/sdk/onlineexperimentation/arm-onlineexperimentation/samples/v1-beta/typescript/README.md @@ -55,7 +55,7 @@ node dist/onlineExperimentationWorkspacesCreateOrUpdateSample.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env node dist/onlineExperimentationWorkspacesCreateOrUpdateSample.js +cross-env node dist/onlineExperimentationWorkspacesCreateOrUpdateSample.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/onlineexperimentation-rest/package.json b/sdk/onlineexperimentation/onlineexperimentation-rest/package.json index 04b186dad406..282cc7205c2d 100644 --- a/sdk/onlineexperimentation/onlineexperimentation-rest/package.json +++ b/sdk/onlineexperimentation/onlineexperimentation-rest/package.json @@ -65,43 +65,46 @@ "tslib": "^2.6.2" }, "devDependencies": { - "dotenv": "catalog:testing", - "@types/node": "catalog:", - "eslint": "catalog:", - "typescript": "catalog:", + "@azure-tools/test-credential": "workspace:^", + "@azure-tools/test-recorder": "workspace:^", + "@azure/dev-tool": "workspace:^", + "@azure/eslint-plugin-azure-sdk": "workspace:^", "@azure/identity": "catalog:internal", + "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", + "dotenv": "catalog:testing", + "eslint": "catalog:", "playwright": "catalog:testing", - "vitest": "catalog:testing", - "@azure-tools/test-credential": "workspace:^", - "@azure-tools/test-recorder": "workspace:^", - "@azure/dev-tool": "workspace:^", - "@azure/eslint-plugin-azure-sdk": "workspace:^" + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", + "typescript": "catalog:", + "vitest": "catalog:testing" }, "scripts": { - "clean": "dev-tool run vendored rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", - "extract-api": "dev-tool run vendored rimraf review && dev-tool run extract-api", - "pack": "pnpm pack 2>&1", - "lint": "eslint package.json src test", - "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", - "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser", - "unit-test:node": "dev-tool run test:vitest", - "integration-test": "npm run integration-test:node && npm run integration-test:browser", - "integration-test:browser": "echo skipped", - "integration-test:node": "echo skipped", + "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", + "extract-api": "rimraf review && dev-tool run extract-api", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,cjs,mjs,json}\" ", "generate:client": "echo skipped", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "integration-test:browser": "echo skipped", + "integration-test:node": "echo skipped", + "lint": "eslint package.json src test", + "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", + "pack": "pnpm pack 2>&1", + "test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run unit-test:browser && npm run integration-test", "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser && npm run integration-test:browser", - "minify": "dev-tool run vendored uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js", - "build:test": "npm run clean && dev-tool run build-package && dev-tool run build-test", - "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node", - "test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run unit-test:browser && npm run integration-test", + "unit-test": "npm run unit-test:node && npm run unit-test:browser", + "unit-test:browser": "npm run build:test && dev-tool run test:vitest --browser", + "unit-test:node": "dev-tool run test:vitest", "update-snippets": "dev-tool run update-snippets" }, "//sampleConfiguration": { diff --git a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md index 455617be3209..a7cd50cac8d3 100644 --- a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md +++ b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/javascript/README.md @@ -37,7 +37,7 @@ node experimentMetricsManagement.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node experimentMetricsManagement.js +cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node experimentMetricsManagement.js ``` ## Next Steps diff --git a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md index 01614826a4ee..59eb3bb306a3 100644 --- a/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md +++ b/sdk/onlineexperimentation/onlineexperimentation-rest/samples/v1-beta/typescript/README.md @@ -49,7 +49,7 @@ node dist/experimentMetricsManagement.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node dist/experimentMetricsManagement.js +cross-env AZURE_ONLINEEXPERIMENTATION_ENDPOINT="" node dist/experimentMetricsManagement.js ``` ## Next Steps diff --git a/sdk/openai/openai/package.json b/sdk/openai/openai/package.json index 5f6b62fd7269..5d4a42bd0eeb 100644 --- a/sdk/openai/openai/package.json +++ b/sdk/openai/openai/package.json @@ -71,20 +71,20 @@ "scripts": { "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api", "build:samples": "tsc -p tsconfig.samples.json", - "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", - "clean": "dev-tool run vendored rimraf --glob dist dist-* *.tsbuildinfo temp types *.tgz *.log", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", + "clean": "rimraf --glob dist dist-* *.tsbuildinfo temp types *.tgz *.log", "execute:samples": "dev-tool samples run samples-dev", "extract-api": "dev-tool run build-package && dev-tool run extract-api", - "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"scripts/**/*.mjs\" \"*.{js,json}\"", "lint": "eslint package.json src test", "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]", "pack": "pnpm pack 2>&1", "samples:publish": "dev-tool samples publish -f && node scripts/fixSamples.mjs", "test": "npm run test:node && npm run test:browser", "test:browser": "npm run test:browser:live", + "test:browser:live": "dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser --no-test-proxy", "test:node": "dev-tool run test:vitest --no-test-proxy", "test:node:live": "npm run test:node", - "test:browser:live": "dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser --no-test-proxy", "update-snippets": "dev-tool run update-snippets && node scripts/fixSnippets.mjs" }, "repository": "github:Azure/azure-sdk-for-js", @@ -125,10 +125,14 @@ "@types/node": "catalog:", "@vitest/browser": "catalog:testing", "@vitest/coverage-istanbul": "catalog:testing", + "cross-env": "catalog:", "dotenv": "catalog:testing", "eslint": "catalog:", "openai": "^5.10.1", "playwright": "catalog:testing", + "prettier": "catalog:", + "rimraf": "catalog:", + "tshy": "catalog:", "typescript": "catalog:", "vitest": "catalog:testing", "zod": "^3.24.2" diff --git a/sdk/openai/openai/samples/v2-beta/javascript/README.md b/sdk/openai/openai/samples/v2-beta/javascript/README.md index a0cc4ee60773..135e380a3aa2 100644 --- a/sdk/openai/openai/samples/v2-beta/javascript/README.md +++ b/sdk/openai/openai/samples/v2-beta/javascript/README.md @@ -68,7 +68,7 @@ node audioTranscription.js Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): ```bash -npx dev-tool run vendored cross-env AUDIO_FILE_PATH="