Skip to content

Commit 53b1bf8

Browse files
Sarath1018claude
andcommitted
fix: restore main content unintentionally reverted in shared files
The branch was assembled from a draft based on an older main; oauth-scopes.md, mkdocs.yml, package.json and unified-setup.ts had newer main content (downloadCitationSource row, Sample Apps Gallery nav, 1.5.5 version bump, Subscriptions service registration) reverted. Reset those files to main and re-applied only the Users additions. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 0e6cf02 commit 53b1bf8

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

docs/oauth-scopes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ The `ConversationalAgents` scope is required for real-time WebSocket sessions (`
145145
|--------|-------------|
146146
| `getAll()` | `OR.Execution` or `OR.Execution.Read` |
147147
| `getById()` | `OR.Execution` or `OR.Execution.Read` |
148+
| `downloadCitationSource()` | NA |
148149

149150
### Conversations
150151

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ nav:
225225
- SDK Reference: coded-action-app-sdk/interfaces/CodedActionAppServiceModel.md
226226
- Plugins:
227227
- Codex: plugins/codex.md
228-
- Sample Application: https://github.com/UiPath/uipath-typescript/tree/main/samples
228+
- Sample Apps Gallery: samples/index.md
229229
- FAQ: FAQ.md
230230
- How To Contribute: CONTRIBUTING.md
231231
- Integration Testing: integration-testing.md

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uipath/uipath-typescript",
3-
"version": "1.5.4",
3+
"version": "1.5.5",
44
"description": "UiPath TypeScript SDK",
55
"license": "MIT",
66
"keywords": [
@@ -239,7 +239,8 @@
239239
},
240240
"files": [
241241
"dist",
242-
"README.md"
242+
"README.md",
243+
"docs/oauth-scopes.md"
243244
],
244245
"scripts": {
245246
"prepack": "rimraf *.tgz",
@@ -251,6 +252,7 @@
251252
"docs:coded-action-app": "npm run docs --prefix packages/coded-action-app",
252253
"docs:post-process": "node scripts/docs-post-process.mjs",
253254
"lint": "oxlint",
255+
"check:samples": "node scripts/check-samples.mjs",
254256
"typecheck": "tsc --noEmit",
255257
"test": "vitest",
256258
"test:unit": "vitest run",
@@ -284,6 +286,7 @@
284286
"@vitest/ui": "^4.1.9",
285287
"builtin-modules": "^3.3.0",
286288
"dotenv": "^17.2.0",
289+
"node-html-parser": "^9.0.0",
287290
"oxlint": "^1.43.0",
288291
"rimraf": "^6.0.1",
289292
"rollup": "^4.60.4",

tests/integration/config/unified-setup.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { AgentMemory } from '../../../src/services/agents/memory';
2121
import { AgentTraces } from '../../../src/services/observability/traces/agent';
2222
import { Traces } from '../../../src/services/observability/traces';
2323
import { Governance } from '../../../src/services/governance';
24-
import { Notifications } from '../../../src/services/notification';
24+
import { Notifications, Subscriptions } from '../../../src/services/notification';
2525
import { Users } from '../../../src/services/identity';
2626
import { loadIntegrationConfig, IntegrationConfig } from './test-config';
2727
import { UiPath as LegacyUiPath } from '../../../src/uipath';
@@ -66,6 +66,7 @@ export interface TestServices {
6666
agents?: Agents;
6767
governance?: Governance;
6868
notifications?: Notifications;
69+
subscriptions?: Subscriptions;
6970
users?: Users;
7071
}
7172

@@ -157,6 +158,7 @@ function createV1Services(config: IntegrationConfig): TestServices {
157158
agents: new Agents(sdk),
158159
governance: new Governance(sdk),
159160
notifications: new Notifications(sdk),
161+
subscriptions: new Subscriptions(sdk),
160162
users: new Users(sdk),
161163
};
162164
}

0 commit comments

Comments
 (0)