@azure-rest/ai-document-intelligence 1.1.0-alpha.20250516.1 → 1.1.0-alpha.20250521.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,3 @@
1
- <!-- dev-tool snippets ignore -->
2
-
3
1
  # Release History
4
2
 
5
3
  ## 1.1.0 (2025-05-08)
package/README.md CHANGED
@@ -92,8 +92,10 @@ const client = DocumentIntelligence(process.env["DOCUMENT_INTELLIGENCE_ENDPOINT"
92
92
 
93
93
  Connect to alternative Azure cloud environments (such as Azure China or Azure Government) by specifying the `scopes` field in the `credentials` option and use the appropriate value from `KnownDocumentIntelligenceAudience`.
94
94
 
95
- ```ts
96
- import DocumentIntelligence, { KnownDocumentIntelligenceAudience } from "@azure-rest/ai-document-intelligence";
95
+ ```ts snippet:ReadmeSampleCreateClient_SovereignClouds
96
+ import DocumentIntelligence, {
97
+ KnownDocumentIntelligenceAudience,
98
+ } from "@azure-rest/ai-document-intelligence";
97
99
  import { DefaultAzureCredential } from "@azure/identity";
98
100
 
99
101
  const client = DocumentIntelligence(
@@ -102,9 +104,9 @@ const client = DocumentIntelligence(
102
104
  {
103
105
  credentials: {
104
106
  // Use the correct audience for your cloud environment
105
- scopes: [KnownDocumentIntelligenceAudience.AzureGovernment]
106
- }
107
- }
107
+ scopes: [KnownDocumentIntelligenceAudience.AzureGovernment],
108
+ },
109
+ },
108
110
  );
109
111
  ```
110
112
 
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.7"
8
+ "packageVersion": "7.52.8"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-rest/ai-document-intelligence",
3
- "version": "1.1.0-alpha.20250516.1",
3
+ "version": "1.1.0-alpha.20250521.1",
4
4
  "description": "Document Intelligence Rest Client",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"