@digital-ai/devops-page-object-release 1.0.11 → 1.0.12
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 +6 -0
- package/dist/main.js +10 -10
- package/dist/main.js.map +1 -1
- package/dist/module.js +10 -10
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +6 -6
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2260,14 +2260,14 @@ declare class TaskAccessPage extends WithPage {
|
|
|
2260
2260
|
constructor(page: Page);
|
|
2261
2261
|
setTaskAvailableToAllUsers(taskName: string, enable?: boolean): Promise<void>;
|
|
2262
2262
|
}
|
|
2263
|
-
declare class
|
|
2264
|
-
|
|
2263
|
+
declare class AIAssistantPage extends WithPage {
|
|
2264
|
+
AIAssistantButton: Locator;
|
|
2265
2265
|
constructor(page: Page);
|
|
2266
|
-
|
|
2266
|
+
clickAIAssistantButton(): Promise<void>;
|
|
2267
2267
|
clickNewChatButton(): Promise<void>;
|
|
2268
2268
|
clickHistory(): Promise<void>;
|
|
2269
|
-
|
|
2270
|
-
|
|
2269
|
+
expectAIAssistantChatWindowToBeOpen(): Promise<void>;
|
|
2270
|
+
expectAIAssistantChatWindowToBeClosed(): Promise<void>;
|
|
2271
2271
|
expectCorrectResponse(response: string, timeout?: number): Promise<void>;
|
|
2272
2272
|
expectChatInputDrawerToBeEnabled(): Promise<void>;
|
|
2273
2273
|
feedYourQuestion(question: string): Promise<void>;
|
|
@@ -2302,7 +2302,7 @@ declare class Navigation {
|
|
|
2302
2302
|
util: Util;
|
|
2303
2303
|
workflowCatalogPage: WorkflowCatalogPage;
|
|
2304
2304
|
taskAccessPage: TaskAccessPage;
|
|
2305
|
-
|
|
2305
|
+
aiAssistantPage: AIAssistantPage;
|
|
2306
2306
|
constructor(page: Page);
|
|
2307
2307
|
openTemplate(id: string): Promise<ReleasePage>;
|
|
2308
2308
|
openFolder(id: string): Promise<FolderPage>;
|