File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" : [
239239 },
240240 "files" : [
241241 " dist" ,
242- " README.md"
242+ " README.md" ,
243+ " docs/oauth-scopes.md"
243244 ],
244245 "scripts" : {
245246 "prepack" : " rimraf *.tgz" ,
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" ,
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" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import { AgentMemory } from '../../../src/services/agents/memory';
2121import { AgentTraces } from '../../../src/services/observability/traces/agent' ;
2222import { Traces } from '../../../src/services/observability/traces' ;
2323import { Governance } from '../../../src/services/governance' ;
24- import { Notifications } from '../../../src/services/notification' ;
24+ import { Notifications , Subscriptions } from '../../../src/services/notification' ;
2525import { Users } from '../../../src/services/identity' ;
2626import { loadIntegrationConfig , IntegrationConfig } from './test-config' ;
2727import { 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}
You can’t perform that action at this time.
0 commit comments