@acorex/connectivity 21.0.0-next.89 → 21.0.0-next.91

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.
Files changed (32) hide show
  1. package/fesm2022/acorex-connectivity-api.mjs.map +1 -1
  2. package/fesm2022/{acorex-connectivity-mock-acorex-connectivity-mock-BCfVjkOd.mjs → acorex-connectivity-mock-acorex-connectivity-mock-B5bnzTKN.mjs} +3377 -2847
  3. package/fesm2022/acorex-connectivity-mock-acorex-connectivity-mock-B5bnzTKN.mjs.map +1 -0
  4. package/fesm2022/{acorex-connectivity-mock-assign-to-manager.activity-B5mLzeqZ.mjs → acorex-connectivity-mock-assign-to-manager.activity-Dv7Jzdhf.mjs} +2 -2
  5. package/fesm2022/{acorex-connectivity-mock-assign-to-manager.activity-B5mLzeqZ.mjs.map → acorex-connectivity-mock-assign-to-manager.activity-Dv7Jzdhf.mjs.map} +1 -1
  6. package/fesm2022/acorex-connectivity-mock-category-metadata-inheritance.query-CIof4zTg.mjs.map +1 -1
  7. package/fesm2022/acorex-connectivity-mock-category-with-items.query-DAKUJIIt.mjs.map +1 -1
  8. package/fesm2022/{acorex-connectivity-mock-chat-generate-image.command-D6P8wF4j.mjs → acorex-connectivity-mock-chat-generate-image.command-C_1j3JPR.mjs} +2 -2
  9. package/fesm2022/{acorex-connectivity-mock-chat-generate-image.command-D6P8wF4j.mjs.map → acorex-connectivity-mock-chat-generate-image.command-C_1j3JPR.mjs.map} +1 -1
  10. package/fesm2022/{acorex-connectivity-mock-chat-synthesize-speech.command-BsQerczW.mjs → acorex-connectivity-mock-chat-synthesize-speech.command-0y5swsxw.mjs} +2 -2
  11. package/fesm2022/{acorex-connectivity-mock-chat-synthesize-speech.command-BsQerczW.mjs.map → acorex-connectivity-mock-chat-synthesize-speech.command-0y5swsxw.mjs.map} +1 -1
  12. package/fesm2022/{acorex-connectivity-mock-chat-transcribe-speech.command-BUz8bAZW.mjs → acorex-connectivity-mock-chat-transcribe-speech.command-D59NedG-.mjs} +2 -2
  13. package/fesm2022/{acorex-connectivity-mock-chat-transcribe-speech.command-BUz8bAZW.mjs.map → acorex-connectivity-mock-chat-transcribe-speech.command-D59NedG-.mjs.map} +1 -1
  14. package/fesm2022/acorex-connectivity-mock-entity-update.activity-06HTKiQQ.mjs.map +1 -1
  15. package/fesm2022/acorex-connectivity-mock-get-employee-list.query-BWbZj3tp.mjs.map +1 -1
  16. package/fesm2022/acorex-connectivity-mock-get-location-list.query-CQ2rFDUM.mjs.map +1 -1
  17. package/fesm2022/acorex-connectivity-mock-get-product-list.query-o9TcY_RC.mjs.map +1 -1
  18. package/fesm2022/acorex-connectivity-mock-get-subscriptions-timeline.query-D_jVT-7a.mjs.map +1 -1
  19. package/fesm2022/acorex-connectivity-mock-get-tenant-application-access.query-BG6t0137.mjs.map +1 -1
  20. package/fesm2022/acorex-connectivity-mock-get-tenant-registration-timeline.query-COmTsDCV.mjs.map +1 -1
  21. package/fesm2022/acorex-connectivity-mock-get-tenant-user-distribution.query-gqSqvIaa.mjs.map +1 -1
  22. package/fesm2022/acorex-connectivity-mock-index-D0jdkk2E.mjs +99 -0
  23. package/fesm2022/acorex-connectivity-mock-index-D0jdkk2E.mjs.map +1 -0
  24. package/fesm2022/acorex-connectivity-mock-notification-management-email-send.command-Df6E-9-c.mjs.map +1 -1
  25. package/fesm2022/acorex-connectivity-mock-sample.command-CJmDL4pL.mjs.map +1 -1
  26. package/fesm2022/{acorex-connectivity-mock-user-roles-for-list-column.query-cSJo8qQX.mjs → acorex-connectivity-mock-user-roles-for-list-column.query-DVuh_6NC.mjs} +2 -2
  27. package/fesm2022/{acorex-connectivity-mock-user-roles-for-list-column.query-cSJo8qQX.mjs.map → acorex-connectivity-mock-user-roles-for-list-column.query-DVuh_6NC.mjs.map} +1 -1
  28. package/fesm2022/acorex-connectivity-mock.mjs +1 -1
  29. package/package.json +2 -2
  30. package/types/acorex-connectivity-api.d.ts +2 -1
  31. package/types/acorex-connectivity-mock.d.ts +7 -41
  32. package/fesm2022/acorex-connectivity-mock-acorex-connectivity-mock-BCfVjkOd.mjs.map +0 -1
@@ -0,0 +1,99 @@
1
+ import { AXDataSource } from '@acorex/cdk/common';
2
+ import { buildProductBasePriceHistoryLineChartSeries } from '@acorex/modules/common';
3
+ import { RootConfig } from '@acorex/modules/product-catalog';
4
+ import { AXPVersioningService } from '@acorex/platform/common';
5
+ import { AXPWidgetsCatalog } from '@acorex/platform/contracts';
6
+ import { inject } from '@angular/core';
7
+
8
+ //#region ---- Imports ----
9
+ //#endregion
10
+ //#region ---- Constants ----
11
+ const PRODUCT_ENTITY_TYPE = `${RootConfig.module.name}.${RootConfig.entities.product.name}`;
12
+ //#endregion
13
+ //#region ---- Helpers ----
14
+ function readFilterFieldValue(filter, field) {
15
+ if (filter == null || typeof filter !== 'object') {
16
+ return undefined;
17
+ }
18
+ const record = filter;
19
+ const flatValue = record[field];
20
+ if (typeof flatValue === 'string' && flatValue.trim()) {
21
+ return flatValue.trim();
22
+ }
23
+ const node = filter;
24
+ if (node.field === field) {
25
+ const value = node.value;
26
+ if (typeof value === 'string' && value.trim()) {
27
+ return value.trim();
28
+ }
29
+ }
30
+ for (const child of node.filters ?? []) {
31
+ const resolved = readFilterFieldValue(child, field);
32
+ if (resolved) {
33
+ return resolved;
34
+ }
35
+ }
36
+ return undefined;
37
+ }
38
+ //#endregion
39
+ //#region ---- Provider ----
40
+ /**
41
+ * Product-scoped line chart datasource: base price over time from version history (date → value).
42
+ * Requires {@code productId} via datasource load filter (widget {@code options.filters}).
43
+ */
44
+ class AXCProductHistoryBarChartDataSourceDefinition {
45
+ constructor() {
46
+ //#region ---- Services & Dependencies ----
47
+ this.versioning = inject(AXPVersioningService);
48
+ //#endregion
49
+ //#region ---- Definition ----
50
+ this.productHistoryBarChartDataSource = {
51
+ name: RootConfig.dataSources.productHistoryBarChart,
52
+ title: 'Product base price history',
53
+ columns: [
54
+ { name: 'id', title: 'Id', type: AXPWidgetsCatalog.text, datatype: 'string' },
55
+ { name: 'label', title: 'Label', type: AXPWidgetsCatalog.text, datatype: 'string' },
56
+ { name: 'data', title: 'Data', type: AXPWidgetsCatalog.text, datatype: 'object' },
57
+ ],
58
+ filters: [
59
+ {
60
+ field: 'productId',
61
+ title: 'Product id',
62
+ filterType: { advance: true, inline: false },
63
+ widget: { type: AXPWidgetsCatalog.text },
64
+ },
65
+ ],
66
+ textField: { name: 'label', title: 'Label' },
67
+ valueField: { name: 'id', title: 'Id' },
68
+ source: () => new AXDataSource({
69
+ pageSize: 10,
70
+ key: 'id',
71
+ load: async (request) => {
72
+ const productId = readFilterFieldValue(request?.filter, 'productId');
73
+ if (!productId) {
74
+ return { items: [], total: 0 };
75
+ }
76
+ const streamId = await this.versioning.getStreamIdIfExists(PRODUCT_ENTITY_TYPE, productId);
77
+ if (!streamId) {
78
+ return { items: [], total: 0 };
79
+ }
80
+ const entries = await this.versioning.listEntries(streamId, { limit: 100 });
81
+ const series = buildProductBasePriceHistoryLineChartSeries(entries);
82
+ const items = series ? [series] : [];
83
+ return { items, total: items.length };
84
+ },
85
+ byKey: async () => undefined,
86
+ }),
87
+ };
88
+ //#endregion
89
+ }
90
+ //#endregion
91
+ //#region ---- Public API ----
92
+ async items() {
93
+ return [this.productHistoryBarChartDataSource];
94
+ }
95
+ }
96
+ //#endregion
97
+
98
+ export { AXCProductHistoryBarChartDataSourceDefinition };
99
+ //# sourceMappingURL=acorex-connectivity-mock-index-D0jdkk2E.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"acorex-connectivity-mock-index-D0jdkk2E.mjs","sources":["../../../../libs/connectivity/mock/src/lib/product-catalog/datasources/product-history-bar-chart.datasource.ts"],"sourcesContent":["//#region ---- Imports ----\n\nimport { AXDataSource, type AXDataSourceFilterOption } from '@acorex/cdk/common';\nimport { buildProductBasePriceHistoryLineChartSeries } from '@acorex/modules/common';\nimport { RootConfig as ProductCatalogRootConfig } from '@acorex/modules/product-catalog';\nimport { AXPVersioningService } from '@acorex/platform/common';\nimport { AXPDataSourceDefinition, AXPDataSourceDefinitionProvider } from '@acorex/platform/core';\nimport { AXPWidgetsCatalog } from '@acorex/platform/contracts';\nimport { inject } from '@angular/core';\n\n//#endregion\n\n//#region ---- Constants ----\n\nconst PRODUCT_ENTITY_TYPE = `${ProductCatalogRootConfig.module.name}.${ProductCatalogRootConfig.entities.product.name}`;\n\n//#endregion\n\n//#region ---- Helpers ----\n\nfunction readFilterFieldValue(filter: unknown, field: string): string | undefined {\n if (filter == null || typeof filter !== 'object') {\n return undefined;\n }\n\n const record = filter as Record<string, unknown>;\n\n const flatValue = record[field];\n if (typeof flatValue === 'string' && flatValue.trim()) {\n return flatValue.trim();\n }\n\n const node = filter as AXDataSourceFilterOption & {\n field?: string;\n value?: unknown;\n filters?: AXDataSourceFilterOption[];\n };\n\n if (node.field === field) {\n const value = node.value;\n if (typeof value === 'string' && value.trim()) {\n return value.trim();\n }\n }\n\n for (const child of node.filters ?? []) {\n const resolved = readFilterFieldValue(child, field);\n if (resolved) {\n return resolved;\n }\n }\n\n return undefined;\n}\n\n//#endregion\n\n//#region ---- Provider ----\n\n/**\n * Product-scoped line chart datasource: base price over time from version history (date → value).\n * Requires {@code productId} via datasource load filter (widget {@code options.filters}).\n */\nexport class AXCProductHistoryBarChartDataSourceDefinition implements AXPDataSourceDefinitionProvider {\n //#region ---- Services & Dependencies ----\n\n private readonly versioning = inject(AXPVersioningService);\n \n\n //#endregion\n\n //#region ---- Definition ----\n\n private readonly productHistoryBarChartDataSource: AXPDataSourceDefinition = {\n name: ProductCatalogRootConfig.dataSources.productHistoryBarChart,\n title: 'Product base price history',\n columns: [\n { name: 'id', title: 'Id', type: AXPWidgetsCatalog.text, datatype: 'string' },\n { name: 'label', title: 'Label', type: AXPWidgetsCatalog.text, datatype: 'string' },\n { name: 'data', title: 'Data', type: AXPWidgetsCatalog.text, datatype: 'object' },\n ],\n filters: [\n {\n field: 'productId',\n title: 'Product id',\n filterType: { advance: true, inline: false },\n widget: { type: AXPWidgetsCatalog.text },\n },\n ],\n textField: { name: 'label', title: 'Label' },\n valueField: { name: 'id', title: 'Id' },\n source: () =>\n new AXDataSource({\n pageSize: 10,\n key: 'id',\n load: async (request) => {\n const productId = readFilterFieldValue(request?.filter, 'productId');\n if (!productId) {\n return { items: [], total: 0 };\n }\n\n const streamId = await this.versioning.getStreamIdIfExists(PRODUCT_ENTITY_TYPE, productId);\n if (!streamId) {\n return { items: [], total: 0 };\n }\n\n const entries = await this.versioning.listEntries(streamId, { limit: 100 });\n const series = buildProductBasePriceHistoryLineChartSeries(entries);\n const items = series ? [series] : [];\n\n return { items, total: items.length };\n },\n byKey: async () => undefined,\n }),\n };\n\n //#endregion\n\n //#region ---- Public API ----\n\n async items(): Promise<AXPDataSourceDefinition[]> {\n return [this.productHistoryBarChartDataSource];\n }\n\n //#endregion\n}\n\n//#endregion\n"],"names":["ProductCatalogRootConfig"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"acorex-connectivity-mock-notification-management-email-send.command-Df6E-9-c.mjs","sources":["../../../../libs/connectivity/mock/src/lib/notification-management/commands/notification-management-email-send.command.ts"],"sourcesContent":["//#region ---- Imports ----\n\nimport { AXPDataGenerator } from '@acorex/platform/contracts';\n\nimport { AXPExecuteCommandResult } from '@acorex/platform/contracts';\nimport { AXPCommand } from '@acorex/platform/runtime';\nimport type {\n NotificationManagementEmailSendInput,\n NotificationManagementEmailSendResult,\n} from '@acorex/modules/notification-management';\nimport { AXToastService } from '@acorex/components/toast';\nimport { inject, Injectable } from '@angular/core';\n\n//#endregion\n\n//#region ---- Input parsing ----\n\nfunction parseSendInput(\n raw: unknown,\n): { ok: true; value: NotificationManagementEmailSendInput } | { ok: false; error: string } {\n const obj =\n raw != null && typeof raw === 'object' && !Array.isArray(raw) ? (raw as Record<string, unknown>) : null;\n if (!obj) {\n return { ok: false, error: 'Invalid arguments: expected an object.' };\n }\n const to = typeof obj['to'] === 'string' ? obj['to'].trim() : '';\n const subject = typeof obj['subject'] === 'string' ? obj['subject'].trim() : '';\n const body = typeof obj['body'] === 'string' ? obj['body'].trim() : '';\n if (!to) {\n return { ok: false, error: 'Invalid arguments: \"to\" is required.' };\n }\n if (!subject) {\n return { ok: false, error: 'Invalid arguments: \"subject\" is required.' };\n }\n if (!body) {\n return { ok: false, error: 'Invalid arguments: \"body\" is required.' };\n }\n const cc = typeof obj['cc'] === 'string' ? obj['cc'].trim() : '';\n const bcc = typeof obj['bcc'] === 'string' ? obj['bcc'].trim() : '';\n const tid = typeof obj['textTemplateId'] === 'string' ? obj['textTemplateId'].trim() : '';\n return {\n ok: true,\n value: {\n to,\n subject,\n body,\n ...(cc ? { cc } : {}),\n ...(bcc ? { bcc } : {}),\n ...(tid ? { textTemplateId: tid } : {}),\n },\n };\n}\n\n//#endregion\n\n//#region ---- Mock send command ----\n\nconst MOCK_SEND_LATENCY_MS = 120;\n\n@Injectable()\nexport class NotificationManagementEmailSendMockCommand\n implements AXPCommand<NotificationManagementEmailSendInput, NotificationManagementEmailSendResult> {\n private readonly toastService = inject(AXToastService);\n\n async execute(\n input: NotificationManagementEmailSendInput,\n ): Promise<AXPExecuteCommandResult<NotificationManagementEmailSendResult>> {\n await new Promise<void>((resolve) => setTimeout(resolve, MOCK_SEND_LATENCY_MS));\n const parsed = parseSendInput(input);\n if (!parsed.ok) {\n return { success: false, message: { text: parsed.error } };\n }\n // Mock transport: surface as UI toast only; replace with HTTP when backend exists.\n this.toastService.show({\n color: 'warning',\n title: 'Email send (simulation)',\n content: `No email was delivered — mock only.\\n To: ${parsed.value.to}.\\n Subject: ${parsed.value.subject}.`,\n });\n return {\n success: true,\n data: { messageId: AXPDataGenerator.uuid() },\n };\n }\n}\n\n//#endregion\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"acorex-connectivity-mock-notification-management-email-send.command-Df6E-9-c.mjs","sources":["../../../../libs/connectivity/mock/src/lib/notification-management/commands/notification-management-email-send.command.ts"],"sourcesContent":["//#region ---- Imports ----\n\nimport { AXPDataGenerator, AXPExecuteCommandResult } from '@acorex/platform/contracts';\nimport { AXPCommand } from '@acorex/platform/runtime';\nimport type {\n NotificationManagementEmailSendInput,\n NotificationManagementEmailSendResult,\n} from '@acorex/modules/notification-management';\nimport { AXToastService } from '@acorex/components/toast';\nimport { inject, Injectable } from '@angular/core';\n\n//#endregion\n\n//#region ---- Input parsing ----\n\nfunction parseSendInput(\n raw: unknown,\n): { ok: true; value: NotificationManagementEmailSendInput } | { ok: false; error: string } {\n const obj =\n raw != null && typeof raw === 'object' && !Array.isArray(raw) ? (raw as Record<string, unknown>) : null;\n if (!obj) {\n return { ok: false, error: 'Invalid arguments: expected an object.' };\n }\n const to = typeof obj['to'] === 'string' ? obj['to'].trim() : '';\n const subject = typeof obj['subject'] === 'string' ? obj['subject'].trim() : '';\n const body = typeof obj['body'] === 'string' ? obj['body'].trim() : '';\n if (!to) {\n return { ok: false, error: 'Invalid arguments: \"to\" is required.' };\n }\n if (!subject) {\n return { ok: false, error: 'Invalid arguments: \"subject\" is required.' };\n }\n if (!body) {\n return { ok: false, error: 'Invalid arguments: \"body\" is required.' };\n }\n const cc = typeof obj['cc'] === 'string' ? obj['cc'].trim() : '';\n const bcc = typeof obj['bcc'] === 'string' ? obj['bcc'].trim() : '';\n const tid = typeof obj['textTemplateId'] === 'string' ? obj['textTemplateId'].trim() : '';\n return {\n ok: true,\n value: {\n to,\n subject,\n body,\n ...(cc ? { cc } : {}),\n ...(bcc ? { bcc } : {}),\n ...(tid ? { textTemplateId: tid } : {}),\n },\n };\n}\n\n//#endregion\n\n//#region ---- Mock send command ----\n\nconst MOCK_SEND_LATENCY_MS = 120;\n\n@Injectable()\nexport class NotificationManagementEmailSendMockCommand\n implements AXPCommand<NotificationManagementEmailSendInput, NotificationManagementEmailSendResult> {\n private readonly toastService = inject(AXToastService);\n\n async execute(\n input: NotificationManagementEmailSendInput,\n ): Promise<AXPExecuteCommandResult<NotificationManagementEmailSendResult>> {\n await new Promise<void>((resolve) => setTimeout(resolve, MOCK_SEND_LATENCY_MS));\n const parsed = parseSendInput(input);\n if (!parsed.ok) {\n return { success: false, message: { text: parsed.error } };\n }\n // Mock transport: surface as UI toast only; replace with HTTP when backend exists.\n this.toastService.show({\n color: 'warning',\n title: 'Email send (simulation)',\n content: `No email was delivered — mock only.\\n To: ${parsed.value.to}.\\n Subject: ${parsed.value.subject}.`,\n });\n return {\n success: true,\n data: { messageId: AXPDataGenerator.uuid() },\n };\n }\n}\n\n//#endregion\n"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"acorex-connectivity-mock-sample.command-CJmDL4pL.mjs","sources":["../../../../libs/connectivity/mock/src/lib/report-management/sample.command.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { AXPExecuteCommandResult } from '@acorex/platform/contracts';\n\nimport { AXPCommand } from '@acorex/platform/runtime';\n\n\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AXMReportSampleActionExecuteCommand implements AXPCommand<any, void> {\n\n\n //#region ---- Command Implementation ----\n\n async execute(context: any): Promise<AXPExecuteCommandResult<void>> {\n console.log('ReportManagement.Report:SampleAction', context);\n return {\n success: true,\n };\n }\n\n //#endregion\n} "],"names":[],"mappings":";;;MAUa,mCAAmC,CAAA;;IAK9C,MAAM,OAAO,CAAC,OAAY,EAAA;AACxB,QAAA,OAAO,CAAC,GAAG,CAAC,sCAAsC,EAAE,OAAO,CAAC;QAC5D,OAAO;AACL,YAAA,OAAO,EAAE,IAAI;SACd;IACH;8GAVW,mCAAmC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAnC,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mCAAmC,cAFlC,MAAM,EAAA,CAAA,CAAA;;2FAEP,mCAAmC,EAAA,UAAA,EAAA,CAAA;kBAH/C,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA;;;;;"}
1
+ {"version":3,"file":"acorex-connectivity-mock-sample.command-CJmDL4pL.mjs","sources":["../../../../libs/connectivity/mock/src/lib/report-management/sample.command.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { AXPExecuteCommandResult } from '@acorex/platform/contracts';\n\nimport { AXPCommand } from '@acorex/platform/runtime';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AXMReportSampleActionExecuteCommand implements AXPCommand<any, void> {\n\n //#region ---- Command Implementation ----\n\n async execute(context: any): Promise<AXPExecuteCommandResult<void>> {\n console.log('ReportManagement.Report:SampleAction', context);\n return {\n success: true,\n };\n }\n\n //#endregion\n} "],"names":[],"mappings":";;;MAQa,mCAAmC,CAAA;;IAI9C,MAAM,OAAO,CAAC,OAAY,EAAA;AACxB,QAAA,OAAO,CAAC,GAAG,CAAC,sCAAsC,EAAE,OAAO,CAAC;QAC5D,OAAO;AACL,YAAA,OAAO,EAAE,IAAI;SACd;IACH;8GATW,mCAAmC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAnC,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mCAAmC,cAFlC,MAAM,EAAA,CAAA,CAAA;;2FAEP,mCAAmC,EAAA,UAAA,EAAA,CAAA;kBAH/C,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA;;;;;"}
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Injectable } from '@angular/core';
3
- import { m as mockUsers } from './acorex-connectivity-mock-acorex-connectivity-mock-BCfVjkOd.mjs';
3
+ import { m as mockUsers } from './acorex-connectivity-mock-acorex-connectivity-mock-B5bnzTKN.mjs';
4
4
 
5
5
  //#endregion
6
6
  /**
@@ -27,4 +27,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
27
27
  }] });
28
28
 
29
29
  export { UserRolesForListColumnQuery };
30
- //# sourceMappingURL=acorex-connectivity-mock-user-roles-for-list-column.query-cSJo8qQX.mjs.map
30
+ //# sourceMappingURL=acorex-connectivity-mock-user-roles-for-list-column.query-DVuh_6NC.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"acorex-connectivity-mock-user-roles-for-list-column.query-cSJo8qQX.mjs","sources":["../../../../libs/connectivity/mock/src/lib/security-management/user/user-roles-for-list-column.query.ts"],"sourcesContent":["import { AXPQuery } from '@acorex/platform/runtime';\nimport { Injectable } from '@angular/core';\nimport { mockUsers } from './user.mock';\n\n//#region ---- Types ----\n\nexport interface UserRolesForListColumnQueryInput {\n userId?: string;\n}\n\nexport interface UserRolesForListColumnQueryResult {\n items: { id: string; title: unknown }[];\n}\n\n//#endregion\n\n/**\n * Resolves role rows for the user list lookup column when using {@link countOnly} column resolve.\n */\n@Injectable({ providedIn: 'root' })\nexport class UserRolesForListColumnQuery implements AXPQuery<UserRolesForListColumnQueryInput, UserRolesForListColumnQueryResult> {\n async fetch(input: UserRolesForListColumnQueryInput): Promise<UserRolesForListColumnQueryResult> {\n const userId = input?.userId?.trim();\n if (!userId) {\n return { items: [] };\n }\n const user = mockUsers.find((u) => u.id === userId);\n if (!user?.roles?.length) {\n return { items: [] };\n }\n return { items: user.roles };\n }\n}\n"],"names":[],"mappings":";;;;AAcA;AAEA;;AAEG;MAEU,2BAA2B,CAAA;IACtC,MAAM,KAAK,CAAC,KAAuC,EAAA;QACjD,MAAM,MAAM,GAAG,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE;QACpC,IAAI,CAAC,MAAM,EAAE;AACX,YAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;QACtB;AACA,QAAA,MAAM,IAAI,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,MAAM,CAAC;AACnD,QAAA,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE;AACxB,YAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;QACtB;AACA,QAAA,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE;IAC9B;8GAXW,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAA3B,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,2BAA2B,cADd,MAAM,EAAA,CAAA,CAAA;;2FACnB,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBADvC,UAAU;mBAAC,EAAE,UAAU,EAAE,MAAM,EAAE;;;;;"}
1
+ {"version":3,"file":"acorex-connectivity-mock-user-roles-for-list-column.query-DVuh_6NC.mjs","sources":["../../../../libs/connectivity/mock/src/lib/security-management/user/user-roles-for-list-column.query.ts"],"sourcesContent":["import { AXPQuery } from '@acorex/platform/runtime';\nimport { Injectable } from '@angular/core';\nimport { mockUsers } from './user.mock';\n\n//#region ---- Types ----\n\nexport interface UserRolesForListColumnQueryInput {\n userId?: string;\n}\n\nexport interface UserRolesForListColumnQueryResult {\n items: { id: string; title: unknown }[];\n}\n\n//#endregion\n\n/**\n * Resolves role rows for the user list lookup column when using {@link countOnly} column resolve.\n */\n@Injectable({ providedIn: 'root' })\nexport class UserRolesForListColumnQuery implements AXPQuery<UserRolesForListColumnQueryInput, UserRolesForListColumnQueryResult> {\n async fetch(input: UserRolesForListColumnQueryInput): Promise<UserRolesForListColumnQueryResult> {\n const userId = input?.userId?.trim();\n if (!userId) {\n return { items: [] };\n }\n const user = mockUsers.find((u) => u.id === userId);\n if (!user?.roles?.length) {\n return { items: [] };\n }\n return { items: user.roles };\n }\n}\n"],"names":[],"mappings":";;;;AAcA;AAEA;;AAEG;MAEU,2BAA2B,CAAA;IACtC,MAAM,KAAK,CAAC,KAAuC,EAAA;QACjD,MAAM,MAAM,GAAG,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE;QACpC,IAAI,CAAC,MAAM,EAAE;AACX,YAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;QACtB;AACA,QAAA,MAAM,IAAI,GAAG,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,KAAK,MAAM,CAAC;AACnD,QAAA,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE;AACxB,YAAA,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE;QACtB;AACA,QAAA,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,KAAK,EAAE;IAC9B;8GAXW,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAA3B,IAAA,SAAA,IAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,2BAA2B,cADd,MAAM,EAAA,CAAA,CAAA;;2FACnB,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBADvC,UAAU;mBAAC,EAAE,UAAU,EAAE,MAAM,EAAE;;;;;"}
@@ -1,3 +1,3 @@
1
- export { f as ACTIVITY_CATEGORIES, g as ACTIVITY_CATEGORY_ID_BY_KEY, h as ACTIVITY_DEFINITIONS, i as AI_ASSIST_MOCK, j as AI_MODEL_MOCK, k as APPLICATIONS, l as APPLICATION_CATEGORY_IDS, n as APPLICATION_CATEGORY_MOCKS, o as AXCActivityCategorySeeder, p as AXCActivityDefinitionSeeder, q as AXCAiAssistSeeder, s as AXCAiManagementMockModule, t as AXCAiModelSeeder, u as AXCAppTermDataSeeder, v as AXCAppVersionDataSeeder, w as AXCApplicationCategoryDataSeeder, x as AXCApplicationDataSeeder, y as AXCApplicationManagementMockModule, z as AXCAssessmentManagementMockModule, B as AXCAssetManagementMockModule, C as AXCAuthMockModule, D as AXCCalendarDataSeeder, E as AXCCalendarManagementMockModule, F as AXCCalendarOccasionDataSeeder, G as AXCCommandRegistryDataSeeder, H as AXCCommonMockModule, I as AXCContactCoreMockModule, J as AXCContentManagementMockModule, K as AXCConversationMockModule, L as AXCConversationMockUploaderService, M as AXCCustomerManagementMockModule, N as AXCDashboardManagementMockModule, P as AXCDataManagementMockModule, Q as AXCDexieEntityStorageService, R as AXCDocumentManagementMockModule, S as AXCEditionDataSeeder, T as AXCEntityDefinitionSeederService, U as AXCEntityDefinitionsModule, V as AXCEntityStorageInsertCommand, W as AXCEntityStorageModule, X as AXCEntityStorageQueryQuery, Y as AXCFileStorageServiceDexie, Z as AXCFileStorageServiceFirestore, _ as AXCFinancialCoreMockModule, $ as AXCFirestoreEntityStorageService, a0 as AXCFormTemplateManagementMockModule, a1 as AXCGoogleStrategyMock, a2 as AXCHealthCoreMockModule, a3 as AXCHelpDeskMockModule, a4 as AXCHumanCapitalManagementMockModule, a5 as AXCIdentifierManagementMockModule, a6 as AXCImageCaptchaChallengeProviderMock, a7 as AXCIntegrationLifecycleEventsService, a8 as AXCIntegrationManagementMockModule, a9 as AXCIntegrationOAuthMockService, aa as AXCIntegrationSecretStoreMock, ab as AXCIntegrationTokenRefreshService, ac as AXCJiraManagementMockModule, ad as AXCLearningManagementMockModule, ae as AXCLocaleManagementMockModule, af as AXCLocationManagementMockModule, ag as AXCLockService, ah as AXCMeasurementCoreMockModule, ai as AXCMeetingManagementMockModule, aj as AXCMetaDataDefinitionDataSeeder, ak as AXCMetadataCategorySeeder, al as AXCMiddlewaresModule, am as AXCMockCaptchaChallengeComponent, an as AXCMockEntityLogListener, ao as AXCMockModule, ap as AXCMockShowMetaDataFormPopupCommand, aq as AXCNotificationManagementMockModule, ar as AXCOrderManagementMockModule, as as AXCOrganizationManagementMockModule, at as AXCPersonCoreMockModule, au as AXCPlatformManagementMockModule, av as AXCProcurementManagementMockModule, aw as AXCProductCatalogMockModule, ax as AXCProjectManagementMockModule, ay as AXCQueryRegistryDataSeeder, az as AXCReportManagementMockModule, aA as AXCSecurityManagementMockModule, aB as AXCStoredEntityDefinitionLoader, aC as AXCSubscriptionManagementMockModule, aD as AXCSupplierManagementMockModule, aE as AXCTaskManagementMockModule, aF as AXCTenantManagementMockModule, aG as AXCTenantSeeder, aH as AXCTextTemplateRenderBackend, aI as AXCTokensDataSeeder, aJ as AXCUserPassStrategyMock, aK as AXCVersionDB, aL as AXCVersioningService, aM as AXCWidgetCatalogDataSeeder, aN as AXCWorkflowCategorySeeder, aO as AXCWorkflowDefinitionDataSeeder, aP as AXCWorkflowEngine, aQ as AXCWorkflowExecutionDB, aR as AXCWorkflowExecutionStoreDexie, aS as AXCWorkflowExecutionStoreFirestore, aT as AXCWorkflowInstanceCartableDemoSeeder, aU as AXCWorkflowManagementMockModule, aV as AXC_ENTITY_STORAGE_BACKEND_TYPE, aW as AXC_FIRESTORE_CONFIG, aX as AXC_FIRESTORE_DB, aY as AXC_WORKFLOW_EXECUTION_STORE, aZ as AXMAiDemisAssistAgentUuid, a_ as AXMAiDemisAssistId, a$ as AXMAiDemisGeneralAssistId, a as AXMAiModelStableIds, b0 as AXMAiPlatformAssistantAssistId, b1 as AXMAutomationDataSeeder, b2 as AXMBusinessUnitDataSeeder, b3 as AXMCalendarOccasionTypeSeeder, b4 as AXMDashboardChartDataSourceDefinition, b5 as AXMEmployeeDataSeeder, b6 as AXMEmploymentTypeDataSeeder, b7 as AXMFormDataSourcesProvider, b8 as AXMJiraManagementMockIds, b9 as AXMJobDefinitionDataSeeder, ba as AXMJobLevelDataSeeder, bb as AXMLeaveRequestDataSeeder, bc as AXMMeetingDataSeeder, bd as AXMMeetingFilesDataSeeder, be as AXMMeetingParticipantDataSeeder, bf as AXMMeetingRoleTypeDataSeeder, bg as AXMMeetingSessionDataSeeder, bh as AXMMeetingTypeDataSeeder, bi as AXMMeetingTypeFileTemplateDataSeeder, bj as AXMPositionAssignmentDataSeeder, bk as AXMPositionDataSeeder, bl as AXMQuestionBankItemCategoryDataSeeder, bm as AXMQuestionBankItemDataSeeder, bn as AXMQuestionnaireCategoryDataSeeder, bo as AXMQuestionnaireDataSeeder, bp as AXMResponsibilityDataSeeder, bq as AXMTagDataSeeder, br as AXMTeamBusinessUnitDataSeeder, bs as AXMTeamDataSeeder, bt as AXMTeamMemberDataSeeder, bu as AXMTeamMemberRoleDataSeeder, bv as AXMWorkflowDashboardChartDataSourceDefinition, bw as AXM_AI_REGISTRY_COMMAND_NAME, bx as AXM_AI_REGISTRY_QUERY_NAME, by as AXM_CORPORATE_BUSINESS_UNIT_ID, bz as AXPDashboardDataSeeder, bA as AXPIdentifierDB, bB as AXPMessageDataSeeder, bC as AXPMockChecksumProvider, bD as AXPMockClockProvider, bE as AXPMockIdentifierService, bF as AXPMockLookupProvider, bG as AXPMockPolicyProvider, bH as AXPMockSequenceProvider, bI as AXPRoomDataSeeder, bJ as AXPSecurityManagementRoleDataSeeder, bK as AXPSecurityManagementUserDataSeeder, bL as AXPTaskBoardPlatformManagementTaskProvider, bM as AXPTaskBoardProjectManagementTaskProvider, bN as AXVChangeType, bO as BCC, bP as BOC, bQ as BUSINESS_UNITS_MOCK, bR as COLLABORATION_STANDARD, bS as CP, bT as DASHBOARDS, bU as EDITIONS, bV as EMPLOYEES_MOCK, bW as EMPLOYMENT_TYPES_MOCK, bX as ENTITY_DEFINITION_MAP, bY as ENTITY_REGISTRY, bZ as G, b_ as HR_ENTERPRISE, b$ as HW, c0 as JOB_DEFINITIONS_CATEGORY_MOCK, c1 as JOB_DEFINITIONS_MOCK, c2 as JOB_DEFINITION_CATEGORY_KEY_TO_ID, c3 as JOB_LEVELS_MOCK, c4 as LASER_PLUMBING_TENANT_ID, c5 as LEAVE_REQUESTS_MOCK, c6 as MAGFA_COMMERCE_STANDARD, c7 as MAGFA_CONVERSATION_DASHBOARD, c8 as MAGFA_TENANT_ID, c9 as METADATA_CATEGORY_IDS, ca as METADATA_GENERAL_CATEGORY_REFS, cb as METADATA_SYSTEM_CATEGORY_REFS, cc as MLC, cd as MOCK_CALENDAR_AUSTRALIA_ID, ce as MOCK_CALENDAR_INTERNATIONAL_GREGORIAN_ID, cf as MOCK_CALENDAR_IRAN_PERSIAN_ID, cg as MOCK_CALENDAR_NEW_ZEALAND_ID, ch as MOCK_DATA_SEED_VERSION, ci as MOCK_ENTITY_SEED_META_KEY, cj as OHR, ck as OWNERSHIP_FILTER_BYPASS, cl as PLATFORM_CONSOLE, cm as PLATFORM_TENANT_ID, cn as PM, co as POSITIONS_CATEGORY_MOCK, cp as POSITIONS_MOCK, cq as POSITION_ASSIGNMENTS_MOCK, cr as QCP, cs as QGEN, ct as QHW, cu as QOHR, cv as QPM, cw as QTLE, cx as QUESTIONNAIRE_CATEGORY_MOCK, cy as QUESTION_BANK_ITEM_CATEGORY_MOCK, cz as QWS, cA as RESPONSIBILITIES_CATEGORY_MOCK, cB as RESPONSIBILITIES_MOCK, cC as RESPONSIBILITY_CATEGORY_KEY_TO_ID, cD as SAFETYMINDER_BASIC, cE as SAFETYMINDER_ENTERPRISE, cF as SAFETYMINDER_PROFESSIONAL, cG as TAGS_MOCK, cH as TASKS, cI as TASK_STATUSES, cJ as TASK_TEMPLATES, cK as TASK_TYPES, cL as TEAMS_CATEGORY_MOCK, cM as TEAMS_MOCK, cN as TEAM_BUSINESS_UNITS_MOCK, cO as TEAM_CATEGORY_KEY_TO_ID, cP as TEAM_MEMBERS_MOCK, cQ as TEAM_MEMBER_ROLES_MOCK, cR as TIMEPLICITY_TENANT_ID, cS as TLA, cT as TOKENS, cU as TPC, cV as VISIBILITY_FILTER_BYPASS, cW as WORKFLOW_CATEGORIES, cX as WS, cY as activityCategoryMocks, cZ as activityDefinitionEntityMock, c_ as applyEntityDefinitionFirestoreSnapshot, c$ as attachmentsInterface, d0 as automationCommandMiddleware, d1 as automationMock, d2 as avatarInterface, d3 as axVersionDB, d4 as axWorkflowExecutionDB, d5 as axcPatchEmployeeActivePrimaryBusinessUnitRefsFromRows, d6 as axcPatchEmployeeActivePrimaryPositionRefsFromRows, d7 as axcPatchEmployeeManagerRefsFromRows, d8 as axcResolveCommandRegistrySeedId, d9 as axcResolveQueryRegistrySeedId, da as axcResolveWidgetCatalogSeedId, db as bankCategory, dc as buildEntityStorageQuickSearchFilter, dd as buildWorkflowInstanceCartableDemoRows, de as bypassAllFilters, df as bypassOwnershipFilter, dg as bypassVisibilityFilter, dh as calendarMock, di as calendarOccasionMock, dj as calendarOccasionSeedData, dk as calendarOccasionTypeMockData, dl as checkboxInterface, dm as childCountMiddleware, dn as clearEntityDefinitionFirestoreCollections, dp as colorInterface, dq as computeDiff, dr as contactInterface, ds as createFileCastMiddleware, dt as createWidgetLayoutConfig, du as createWorkflowDefinitionEntityMock, dv as dateInterface, dw as dateTimeInterface, dx as descriptionInterface, dy as documentFolderSyncMiddleware, dz as emailInterface, dA as enrichCalendarOccasionForStorage, dB as enrichWorkflowGraph, dC as entityDefDb, dD as entityValidationMiddleware, dE as finalizeActivityCategoryItemCounts, dF as findEmployeeById, dG as folderStorageMiddleware, dH as groupOrderItemCalculatorMiddleware, dI as historyMiddleware, dJ as identifierCommitMiddleware, dK as imageInterface, dL as inspectionOkXNaInterface, dM as loadMockPropertyDefinitions, dN as lockGuardMiddleware, dO as longTextAnswerInterface, dP as lookupInterface, dQ as lookupResolverMiddleware, dR as mapInterface, dS as meetingFilesMock, dT as meetingIds, dU as meetingMock, dV as meetingParticipantMock, dW as meetingRoleTypeMock, dX as meetingSessionMock, dY as meetingTimeSlotMock, dZ as meetingTypeFileTemplateMock, d_ as meetingTypeMock, d$ as mergeDetailRelationMiddleware, e0 as mergeQuickSearchIntoRequest, e1 as metadataCategoryMocks, e2 as mockQuestionBankItemByName, e3 as mockRoleDefinitions, m as mockUsers, e4 as multipleChoiceInterface, e5 as multipleSelectInterface, e6 as normalizeAnyFileArrayForView, e7 as normalizeSnapshotFileFieldsForView, e8 as numberInterface, e9 as parseEntityStorageInsertData, ea as parseEntityStorageQueryRequest, eb as participantIds, ec as passwordInterface, ed as personIdentifierTypeMock, ee as personIds, ef as personLegalIds, eg as personMock, eh as personNaturalIds, ei as phoneInterface, ej as primaryMiddleware, ek as provideMockPropertySetups, el as qrcodeInterface, em as questionBankItemMock, en as questionnaireMock, eo as ratingInterface, ep as richTextInterface, eq as scaleInterface, er as selectInterface, es as selectionListInterface, et as sexAtBirthInterface, eu as signatureInterface, ev as statusDefaultMiddleware, ew as tagInterface, ex as tenantMocks, ey as textAreaInterface, ez as textInterface, eA as timeDurationInterface, eB as titleInterface, eC as toUiRows, eD as toggleInterface, eE as tokenCategoryIds, eF as tokenCategoryMocks, eG as urlInterface, eH as versionInterface, eI as visibilityFilterMiddleware, eJ as workflowDefinitionEntityMock, eK as workflowDefinitionIds, eL as workflowDefinitionMock, eM as yesNoInterface } from './acorex-connectivity-mock-acorex-connectivity-mock-BCfVjkOd.mjs';
1
+ export { f as ACTIVITY_CATEGORIES, g as ACTIVITY_CATEGORY_ID_BY_KEY, h as ACTIVITY_DEFINITIONS, i as AI_ASSIST_MOCK, j as AI_MODEL_MOCK, k as APPLICATIONS, l as APPLICATION_CATEGORY_IDS, n as APPLICATION_CATEGORY_MOCKS, o as AXCActivityCategorySeeder, p as AXCActivityDefinitionSeeder, q as AXCAiAssistSeeder, s as AXCAiManagementMockModule, t as AXCAiModelSeeder, u as AXCAppTermDataSeeder, v as AXCAppVersionDataSeeder, w as AXCApplicationCategoryDataSeeder, x as AXCApplicationDataSeeder, y as AXCApplicationManagementMockModule, z as AXCAssessmentManagementMockModule, B as AXCAssetManagementMockModule, C as AXCAuthMockModule, D as AXCCalendarDataSeeder, E as AXCCalendarManagementMockModule, F as AXCCalendarOccasionDataSeeder, G as AXCCommandRegistryDataSeeder, H as AXCCommonMockModule, I as AXCContactCoreMockModule, J as AXCContentManagementMockModule, K as AXCConversationMockModule, L as AXCConversationMockUploaderService, M as AXCCustomerManagementMockModule, N as AXCDashboardManagementMockModule, P as AXCDataManagementMockModule, Q as AXCDexieEntityStorageService, R as AXCDocumentManagementMockModule, S as AXCEditionDataSeeder, T as AXCEntityDefinitionSeederService, U as AXCEntityDefinitionsModule, V as AXCEntityStorageInsertCommand, W as AXCEntityStorageModule, X as AXCEntityStorageQueryQuery, Y as AXCFileStorageServiceDexie, Z as AXCFileStorageServiceFirestore, _ as AXCFinancialCoreMockModule, $ as AXCFirestoreEntityStorageService, a0 as AXCFormTemplateManagementMockModule, a1 as AXCGoogleStrategyMock, a2 as AXCHealthCoreMockModule, a3 as AXCHelpDeskMockModule, a4 as AXCHumanCapitalManagementMockModule, a5 as AXCIdentifierManagementMockModule, a6 as AXCImageCaptchaChallengeProviderMock, a7 as AXCIntegrationLifecycleEventsService, a8 as AXCIntegrationManagementMockModule, a9 as AXCIntegrationOAuthMockService, aa as AXCIntegrationSecretStoreMock, ab as AXCIntegrationTokenRefreshService, ac as AXCJiraManagementMockModule, ad as AXCLearningManagementMockModule, ae as AXCLocaleManagementMockModule, af as AXCLocationManagementMockModule, ag as AXCLockService, ah as AXCMeasurementCoreMockModule, ai as AXCMeetingManagementMockModule, aj as AXCMetaDataDefinitionDataSeeder, ak as AXCMetadataCategorySeeder, al as AXCMiddlewaresModule, am as AXCMockCaptchaChallengeComponent, an as AXCMockEntityLogListener, ao as AXCMockModule, ap as AXCMockShowMetaDataFormPopupCommand, aq as AXCNotificationManagementMockModule, ar as AXCOrderManagementMockModule, as as AXCOrganizationManagementMockModule, at as AXCPersonCoreMockModule, au as AXCPlatformManagementMockModule, av as AXCProcurementManagementMockModule, aw as AXCProductCatalogMockModule, ax as AXCProjectManagementMockModule, ay as AXCQueryRegistryDataSeeder, az as AXCReportManagementMockModule, aA as AXCSecurityManagementMockModule, aB as AXCStoredEntityDefinitionLoader, aC as AXCSubscriptionManagementMockModule, aD as AXCSupplierManagementMockModule, aE as AXCTaskManagementMockModule, aF as AXCTenantManagementMockModule, aG as AXCTenantSeeder, aH as AXCTextTemplateRenderBackend, aI as AXCTokensDataSeeder, aJ as AXCUserPassStrategyMock, aK as AXCVersionDB, aL as AXCVersioningService, aM as AXCWidgetCatalogDataSeeder, aN as AXCWorkflowCategorySeeder, aO as AXCWorkflowDefinitionDataSeeder, aP as AXCWorkflowEngine, aQ as AXCWorkflowExecutionDB, aR as AXCWorkflowExecutionStoreDexie, aS as AXCWorkflowExecutionStoreFirestore, aT as AXCWorkflowInstanceCartableDemoSeeder, aU as AXCWorkflowManagementMockModule, aV as AXC_ENTITY_STORAGE_BACKEND_TYPE, aW as AXC_FIRESTORE_CONFIG, aX as AXC_FIRESTORE_DB, aY as AXC_WORKFLOW_EXECUTION_STORE, aZ as AXMAiDemisAssistAgentUuid, a_ as AXMAiDemisAssistId, a$ as AXMAiDemisGeneralAssistId, a as AXMAiModelStableIds, b0 as AXMAiPlatformAssistantAssistId, b1 as AXMAutomationDataSeeder, b2 as AXMBusinessUnitDataSeeder, b3 as AXMCalendarOccasionTypeSeeder, b4 as AXMDashboardChartDataSourceDefinition, b5 as AXMEmployeeDataSeeder, b6 as AXMEmploymentTypeDataSeeder, b7 as AXMFormDataSourcesProvider, b8 as AXMJiraManagementMockIds, b9 as AXMJobDefinitionDataSeeder, ba as AXMJobLevelDataSeeder, bb as AXMLeaveRequestDataSeeder, bc as AXMMeetingDataSeeder, bd as AXMMeetingFilesDataSeeder, be as AXMMeetingParticipantDataSeeder, bf as AXMMeetingRoleTypeDataSeeder, bg as AXMMeetingSessionDataSeeder, bh as AXMMeetingTypeDataSeeder, bi as AXMMeetingTypeFileTemplateDataSeeder, bj as AXMPositionAssignmentDataSeeder, bk as AXMPositionDataSeeder, bl as AXMQuestionBankItemCategoryDataSeeder, bm as AXMQuestionBankItemDataSeeder, bn as AXMQuestionnaireCategoryDataSeeder, bo as AXMQuestionnaireDataSeeder, bp as AXMResponsibilityDataSeeder, bq as AXMTagDataSeeder, br as AXMTeamBusinessUnitDataSeeder, bs as AXMTeamDataSeeder, bt as AXMTeamMemberDataSeeder, bu as AXMTeamMemberRoleDataSeeder, bv as AXMWorkflowDashboardChartDataSourceDefinition, bw as AXM_AI_REGISTRY_COMMAND_NAME, bx as AXM_AI_REGISTRY_QUERY_NAME, by as AXM_CORPORATE_BUSINESS_UNIT_ID, bz as AXPDashboardDataSeeder, bA as AXPIdentifierDB, bB as AXPMessageDataSeeder, bC as AXPMockChecksumProvider, bD as AXPMockClockProvider, bE as AXPMockIdentifierService, bF as AXPMockLookupProvider, bG as AXPMockPolicyProvider, bH as AXPMockSequenceProvider, bI as AXPRoomDataSeeder, bJ as AXPSecurityManagementRoleDataSeeder, bK as AXPSecurityManagementUserDataSeeder, bL as AXPTaskBoardPlatformManagementTaskProvider, bM as AXVChangeType, bN as BCC, bO as BOC, bP as BUSINESS_UNITS_MOCK, bQ as COLLABORATION_STANDARD, bR as CP, bS as DASHBOARDS, bT as EDITIONS, bU as EMPLOYEES_MOCK, bV as EMPLOYMENT_TYPES_MOCK, bW as ENTITY_DEFINITION_MAP, bX as ENTITY_REGISTRY, bY as G, bZ as HR_ENTERPRISE, b_ as HW, b$ as JOB_DEFINITIONS_CATEGORY_MOCK, c0 as JOB_DEFINITIONS_MOCK, c1 as JOB_DEFINITION_CATEGORY_KEY_TO_ID, c2 as JOB_LEVELS_MOCK, c3 as LASER_PLUMBING_TENANT_ID, c4 as LEAVE_REQUESTS_MOCK, c5 as MAGFA_COMMERCE_STANDARD, c6 as MAGFA_CONVERSATION_DASHBOARD, c7 as MAGFA_TENANT_ID, c8 as METADATA_CATEGORY_IDS, c9 as METADATA_GENERAL_CATEGORY_REFS, ca as METADATA_SYSTEM_CATEGORY_REFS, cb as MLC, cc as MOCK_CALENDAR_AUSTRALIA_ID, cd as MOCK_CALENDAR_INTERNATIONAL_GREGORIAN_ID, ce as MOCK_CALENDAR_IRAN_PERSIAN_ID, cf as MOCK_CALENDAR_NEW_ZEALAND_ID, cg as MOCK_DATA_SEED_VERSION, ch as MOCK_ENTITY_SEED_META_KEY, ci as OHR, cj as OWNERSHIP_FILTER_BYPASS, ck as PLATFORM_CONSOLE, cl as PLATFORM_TENANT_ID, cm as PM, cn as POSITIONS_CATEGORY_MOCK, co as POSITIONS_MOCK, cp as POSITION_ASSIGNMENTS_MOCK, cq as QCP, cr as QGEN, cs as QHW, ct as QOHR, cu as QPM, cv as QTLE, cw as QUESTIONNAIRE_CATEGORY_MOCK, cx as QUESTION_BANK_ITEM_CATEGORY_MOCK, cy as QWS, cz as RESPONSIBILITIES_CATEGORY_MOCK, cA as RESPONSIBILITIES_MOCK, cB as RESPONSIBILITY_CATEGORY_KEY_TO_ID, cC as SAFETYMINDER_BASIC, cD as SAFETYMINDER_ENTERPRISE, cE as SAFETYMINDER_PROFESSIONAL, cF as TAGS_MOCK, cG as TASKS, cH as TASK_STATUSES, cI as TASK_TEMPLATES, cJ as TASK_TYPES, cK as TEAMS_CATEGORY_MOCK, cL as TEAMS_MOCK, cM as TEAM_BUSINESS_UNITS_MOCK, cN as TEAM_CATEGORY_KEY_TO_ID, cO as TEAM_MEMBERS_MOCK, cP as TEAM_MEMBER_ROLES_MOCK, cQ as TIMEPLICITY_TENANT_ID, cR as TLA, cS as TOKENS, cT as TPC, cU as VISIBILITY_FILTER_BYPASS, cV as WORKFLOW_CATEGORIES, cW as WS, cX as activityCategoryMocks, cY as activityDefinitionEntityMock, cZ as applyEntityDefinitionFirestoreSnapshot, c_ as attachmentsInterface, c$ as automationCommandMiddleware, d0 as automationMock, d1 as avatarInterface, d2 as axVersionDB, d3 as axWorkflowExecutionDB, d4 as axcPatchEmployeeActivePrimaryBusinessUnitRefsFromRows, d5 as axcPatchEmployeeActivePrimaryPositionRefsFromRows, d6 as axcPatchEmployeeManagerRefsFromRows, d7 as axcResolveCommandRegistrySeedId, d8 as axcResolveQueryRegistrySeedId, d9 as axcResolveWidgetCatalogSeedId, da as bankCategory, db as buildEntityStorageQuickSearchFilter, dc as buildWorkflowInstanceCartableDemoRows, dd as bypassAllFilters, de as bypassOwnershipFilter, df as bypassVisibilityFilter, dg as calendarMock, dh as calendarOccasionMock, di as calendarOccasionSeedData, dj as calendarOccasionTypeMockData, dk as checkboxInterface, dl as childCountMiddleware, dm as clearEntityDefinitionFirestoreCollections, dn as colorInterface, dp as computeDiff, dq as contactInterface, dr as createFileCastMiddleware, ds as createWidgetLayoutConfig, dt as createWorkflowDefinitionEntityMock, du as dateInterface, dv as dateTimeInterface, dw as descriptionInterface, dx as documentFolderSyncMiddleware, dy as emailInterface, dz as enrichCalendarOccasionForStorage, dA as enrichWorkflowGraph, dB as entityDefDb, dC as entityValidationMiddleware, dD as finalizeActivityCategoryItemCounts, dE as findEmployeeById, dF as folderStorageMiddleware, dG as groupOrderItemCalculatorMiddleware, dH as historyMiddleware, dI as identifierCommitMiddleware, dJ as imageInterface, dK as inspectionOkXNaInterface, dL as loadMockPropertyDefinitions, dM as lockGuardMiddleware, dN as longTextAnswerInterface, dO as lookupInterface, dP as lookupResolverMiddleware, dQ as mapInterface, dR as meetingFilesMock, dS as meetingIds, dT as meetingMock, dU as meetingParticipantMock, dV as meetingRoleTypeMock, dW as meetingSessionMock, dX as meetingTimeSlotMock, dY as meetingTypeFileTemplateMock, dZ as meetingTypeMock, d_ as mergeDetailRelationMiddleware, d$ as mergeQuickSearchIntoRequest, e0 as metadataCategoryMocks, e1 as mockQuestionBankItemByName, e2 as mockRoleDefinitions, m as mockUsers, e3 as multipleChoiceInterface, e4 as multipleSelectInterface, e5 as normalizeAnyFileArrayForView, e6 as normalizeSnapshotFileFieldsForView, e7 as numberInterface, e8 as parseEntityStorageInsertData, e9 as parseEntityStorageQueryRequest, ea as participantIds, eb as passwordInterface, ec as personIdentifierTypeMock, ed as personIds, ee as personLegalIds, ef as personMock, eg as personNaturalIds, eh as phoneInterface, ei as primaryMiddleware, ej as provideMockPropertySetups, ek as qrcodeInterface, el as questionBankItemMock, em as questionnaireMock, en as ratingInterface, eo as richTextInterface, ep as scaleInterface, eq as selectInterface, er as selectionListInterface, es as sexAtBirthInterface, et as signatureInterface, eu as statusDefaultMiddleware, ev as tagInterface, ew as tenantMocks, ex as textAreaInterface, ey as textInterface, ez as timeDurationInterface, eA as titleInterface, eB as toUiRows, eC as toggleInterface, eD as tokenCategoryIds, eE as tokenCategoryMocks, eF as urlInterface, eG as versionInterface, eH as visibilityFilterMiddleware, eI as workflowDefinitionEntityMock, eJ as workflowDefinitionIds, eK as workflowDefinitionMock, eL as yesNoInterface } from './acorex-connectivity-mock-acorex-connectivity-mock-B5bnzTKN.mjs';
2
2
  export { AXC_TEXT_TEMPLATE_RENDER_COMMAND_KEY } from '@acorex/modules/content-management';
3
3
  //# sourceMappingURL=acorex-connectivity-mock.mjs.map
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@acorex/connectivity",
3
- "version": "21.0.0-next.89",
3
+ "version": "21.0.0-next.91",
4
4
  "peerDependencies": {
5
- "@acorex/modules": "21.0.0-next.89"
5
+ "@acorex/modules": "21.0.0-next.91"
6
6
  },
7
7
  "sideEffects": false,
8
8
  "module": "fesm2022/acorex-connectivity.mjs",
@@ -1,6 +1,7 @@
1
+ import { AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityAggregateRequest, AXPEntityAggregateOptions, AXPEntityAggregateResult } from '@acorex/platform/layout/entity-contracts';
1
2
  import { AXPPagedListResult } from '@acorex/platform/contracts';
2
3
  import { AXPQueryRequest } from '@acorex/platform/core';
3
- import { AXPEntityStorageService, AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityAggregateRequest, AXPEntityAggregateOptions, AXPEntityAggregateResult } from '@acorex/platform/layout/entity';
4
+ import { AXPEntityStorageService } from '@acorex/platform/layout/entity';
4
5
  import { HttpClient } from '@angular/common/http';
5
6
  import * as i0 from '@angular/core';
6
7
  import * as i1$1 from 'angular-oauth2-oidc';
@@ -9,11 +9,11 @@ import { Router } from '@angular/router';
9
9
  import { AXMAuthConfigs } from '@acorex/modules/auth';
10
10
  import * as _acorex_platform_contracts from '@acorex/platform/contracts';
11
11
  import { AXPExecuteCommandResult, AXPMultiLanguageString, AXPCategoryEntity, AXPCategorizedEntityDto, AXPCategoryListItem, AXPIntegrationSecretPayload, AXPIntegrationAuthContext, AXPIntegrationResolvedCredentials, AXPWorkflowInstance, AXPWorkflowDefinition, AXPWorkflowGraph, AXPActivityCategory, AXPActivityDefinition, createMultiLanguageString, AXPWorkflowCategory, AXPExecuteCommand, AXPFileStorageCreateRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileStorageFindRequest, AXPFileManyStorageInfo, AXPFileListItem } from '@acorex/platform/contracts';
12
- import { AXPEntityAggregateRequest, AXPEntityStorageService, AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityAggregateOptions, AXPEntityAggregateResult, AXPEntityDefinitionLoader, AXPDataSeeder, AXPEntityStorageMiddleware } from '@acorex/platform/layout/entity';
12
+ import { AXPEntityAggregateRequest, AXPEntityQueryAllOptions, AXPEntityQueryAllResult, AXPEntityAggregateOptions, AXPEntityAggregateResult, AXPEntity, AXPRecordStateInfo, AXPMockDto } from '@acorex/platform/layout/entity-contracts';
13
13
  import { AXDataSourceFilterOption } from '@acorex/cdk/common';
14
+ import { AXPEntityStorageService, AXPEntityDefinitionLoader, AXPDataSeeder, AXPEntityStorageMiddleware } from '@acorex/platform/layout/entity';
14
15
  import Dexie, { Table } from 'dexie';
15
16
  import { Firestore } from 'firebase/firestore';
16
- import { AXPEntity, AXPIntegrationSecretStore, AXPIntegrationSecretRefInput, AXPIntegrationOAuthService, AXPIntegrationOAuthStartInput, AXPIntegrationOAuthCompleteInput, AXPLockService, AXPLockRequest, AXPLockInfo, AXPUnLockRequest, AXPLockGetInfoRequest, AXPFileStorageService, AXPVersioningService, AXPVersionEntry as AXPVersionEntry$1, CanonicalChange as CanonicalChange$1, AXVChangeType as AXVChangeType$1 } from '@acorex/platform/common';
17
17
  import { AXPPropertyDefinition } from '@acorex/platform/domain-contracts';
18
18
  import { AXMAiManagementModelEntityModel, AXMAiManagementAssistEntityModel } from '@acorex/modules/ai-management';
19
19
  import { AXMApplicationManagementApplicationEntityModel, AXMApplicationManagementEditionEntityModel } from '@acorex/modules/application-management';
@@ -22,13 +22,13 @@ import { AXMTenantManagementTenantEntityModel } from '@acorex/modules/tenant-man
22
22
  import { AXMSecurityManagementRolesEntityModel, AXMSecurityManagementUsersEntityModel, AXMUserAccessState } from '@acorex/modules/security-management';
23
23
  import { AXMOrganizationManagementBusinessUnitEntityModel, AXMOrganizationManagementJobDefinitionEntityModel, AXMOrganizationManagementTeamEntityModel, AXMOrganizationManagementTeamBusinessUnitEntityModel, AXMOrganizationManagementTeamMemberRoleEntityModel, AXMOrganizationManagementTeamMemberEntityModel, AXMOrganizationManagementPositionEntityModel, AXMOrganizationManagementJobLevelEntityModel, AXMOrganizationManagementResponsibilityEntityModel } from '@acorex/modules/organization-management';
24
24
  import { AXMHumanCapitalManagementEmploymentTypeEntityModel } from '@acorex/modules/human-capital-management';
25
+ import { AXPIntegrationSecretStore, AXPIntegrationSecretRefInput, AXPIntegrationOAuthService, AXPIntegrationOAuthStartInput, AXPIntegrationOAuthCompleteInput, AXPLockService, AXPLockRequest, AXPLockInfo, AXPUnLockRequest, AXPLockGetInfoRequest, AXPFileStorageService, AXPVersioningService, AXPVersionEntry as AXPVersionEntry$1, CanonicalChange as CanonicalChange$1, AXVChangeType as AXVChangeType$1 } from '@acorex/platform/common';
25
26
  import { AXMPersonCorePersonEntityModel, AXMPersonCorePersonIdentifierTypeEntityModel } from '@acorex/modules/person-core';
26
27
  import { AXPWorkflowEngine, AXPStartWorkflowRequest, AXPStartWorkflowResponse, AXPResumeWorkflowRequest, AXPResumeWorkflowResponse, AXPGetWorkflowStateRequest, AXPWorkflowInstanceState, AXPRevertResumeAfterDeclinedInteractiveContinuationRequest, AXPRevertResumeAfterDeclinedInteractiveContinuationResponse, AXPClaimWorkflowTaskRequest, AXPClaimWorkflowTaskResponse, AXPReassignWorkflowTaskToSelfRequest, AXPReassignWorkflowTaskToSelfResponse, AXPFrontActivityCompleteRequest, AXPFrontActivityCompleteResponse } from '@acorex/platform/workflow';
27
28
  import { AXMWorkflowManagementWorkflowDefinitionEntityModel } from '@acorex/modules/workflow-management';
28
29
  import { AXPWorkflowTaskProvider, AXPTaskFilter, AXPTask, AXPExtraField, AXPTaskStatus } from '@acorex/modules/task-management';
29
30
  import { ShowMetaDataFormPopupCommand, ShowMetaDataFormPopupInput, ResolveGroupsResult } from '@acorex/modules/data-management';
30
31
  import { AXPDynamicFormGroupDefinition } from '@acorex/platform/layout/builder';
31
- import { AXPRecordStateInfo, AXPMockDto } from '@acorex/platform/layout/entity-contracts';
32
32
  import { AXMCommonDashboardEntityModel, AXMDashboardWidgetLayoutMap } from '@acorex/modules/dashboard-management';
33
33
  import { AXMCalendarManagementCalendarEntityModel, AXMCalendarManagementCalendarOccasionEntityModel, AXMCalendarManagementCalendarOccasionTypeEntityModel } from '@acorex/modules/calendar-management';
34
34
  import { AXPIdentifierRule, AXPChecksumProvider, AXPClockProvider, AXPLookupProvider, AXPPolicyProvider, AXPSequenceProvider, AXPIdentifierService, AXPIdentifierRequest, AXPIdentifierResult, AXPIdentifierPeekResult } from '@acorex/modules/identifier-management';
@@ -633,7 +633,7 @@ declare function buildEntityStorageQuickSearchFilter(term: string, _extraContain
633
633
  declare function mergeQuickSearchIntoRequest(request: AXPQueryRequest, quickSearch: string | undefined | null, quickSearchExtraContainsFieldPaths?: string[] | null): AXPQueryRequest;
634
634
 
635
635
  /** Bump when mock entity seed structure changes and developers should clear IndexedDB. */
636
- declare const MOCK_DATA_SEED_VERSION = "1";
636
+ declare const MOCK_DATA_SEED_VERSION = "2";
637
637
  declare const MOCK_ENTITY_SEED_META_KEY = "entity-mock-seed";
638
638
  interface AXCMockEntitySeedMeta {
639
639
  version: string;
@@ -672,8 +672,8 @@ declare class AXCDexieEntityStorageService extends Dexie implements AXPEntitySto
672
672
  insertOne<T = any>(entityName: string, entity: T): Promise<string>;
673
673
  getAll<T = any>(entityName: string): Promise<T[]>;
674
674
  query<T = any>(entityName: string, request: AXPQueryRequest): Promise<_acorex_platform_contracts.AXPPagedListResult<T>>;
675
- count(entityName: string, request: Pick<AXPQueryRequest, 'filter' | 'sort'>): Promise<number>;
676
- queryAll(entityName: string, request: Pick<AXPQueryRequest, 'filter' | 'sort'>, options?: AXPEntityQueryAllOptions): Promise<AXPEntityQueryAllResult<any>>;
675
+ count(entityName: string, request: Pick<AXPQueryRequest, 'filter' | 'sort' | 'params'>): Promise<number>;
676
+ queryAll(entityName: string, request: Pick<AXPQueryRequest, 'filter' | 'sort' | 'params'>, options?: AXPEntityQueryAllOptions): Promise<AXPEntityQueryAllResult<any>>;
677
677
  getMany(entityName: string, ids: string[]): Promise<(any | null)[]>;
678
678
  exists(entityName: string, id: string): Promise<boolean>;
679
679
  upsertOne(entityName: string, entity: any, options?: {
@@ -2682,40 +2682,6 @@ declare class AXCWorkflowCategorySeeder implements AXPDataSeeder {
2682
2682
  static ɵprov: i0.ɵɵInjectableDeclaration<AXCWorkflowCategorySeeder>;
2683
2683
  }
2684
2684
 
2685
- type extraFields$1 = {
2686
- recievedDate: Date;
2687
- };
2688
- declare class AXPTaskBoardProjectManagementTaskProvider extends AXPWorkflowTaskProvider<extraFields$1> {
2689
- private calendarService;
2690
- private dueStatusProviderService;
2691
- private list;
2692
- get name(): string;
2693
- getTitle(): Promise<string>;
2694
- getIcon(): Promise<string>;
2695
- /**
2696
- * Retrieves a list of tasks, applying all provided filters and pagination.
2697
- * @param options Filtering and pagination options.
2698
- * @returns A promise resolving to the paginated list of tasks and the total count of filtered tasks.
2699
- */
2700
- getTasks(options?: AXPTaskFilter): Promise<{
2701
- items: AXPTask<extraFields$1>[];
2702
- total: number;
2703
- }>;
2704
- /**
2705
- * Updates one or more tasks in the provider's list.
2706
- * This method finds each task by its ID and applies the new properties from the input.
2707
- * It also automatically recalculates the `allDay` flag based on the task's duration.
2708
- * @param tasksToUpdate An array of task objects to update. Each object must have an `id`.
2709
- * @returns An array of the tasks that were successfully updated.
2710
- */
2711
- updateTasks(tasksToUpdate: AXPTask<extraFields$1>[]): Promise<AXPTask<extraFields$1>[]>;
2712
- private isDurationMoreThan24Hours;
2713
- executeCommand(command: AXPExecuteCommand): Promise<AXPExecuteCommandResult>;
2714
- getActions(task?: AXPTask<extraFields$1>): Promise<AXPActionMenuItem[]>;
2715
- getExtraFields(): Promise<AXPExtraField[]>;
2716
- getStatuses(): Promise<AXPTaskStatus[]>;
2717
- }
2718
-
2719
2685
  type extraFields = {
2720
2686
  recievedDate: Date;
2721
2687
  };
@@ -4149,5 +4115,5 @@ declare function bypassAllFilters<T extends AXPQueryRequest>(request: T): T;
4149
4115
 
4150
4116
  declare const AXCMockEntityLogListener: AXPDistributedEventListenerProvider<any>;
4151
4117
 
4152
- export { ACTIVITY_CATEGORIES, ACTIVITY_CATEGORY_ID_BY_KEY, ACTIVITY_DEFINITIONS, AI_ASSIST_MOCK, AI_MODEL_MOCK, APPLICATIONS, APPLICATION_CATEGORY_IDS, APPLICATION_CATEGORY_MOCKS, AXCActivityCategorySeeder, AXCActivityDefinitionSeeder, AXCAiAssistSeeder, AXCAiManagementMockModule, AXCAiModelSeeder, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationCategoryDataSeeder, AXCApplicationDataSeeder, AXCApplicationManagementMockModule, AXCAssessmentManagementMockModule, AXCAssetManagementMockModule, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarManagementMockModule, AXCCalendarOccasionDataSeeder, AXCCommandRegistryDataSeeder, AXCCommonMockModule, AXCContactCoreMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCConversationMockUploaderService, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCEditionDataSeeder, AXCEntityDefinitionSeederService, AXCEntityDefinitionsModule, AXCEntityStorageInsertCommand, AXCEntityStorageModule, AXCEntityStorageQueryQuery, AXCFileStorageServiceDexie, AXCFileStorageServiceFirestore, AXCFinancialCoreMockModule, AXCFirestoreEntityStorageService, AXCFormTemplateManagementMockModule, AXCGoogleStrategyMock, AXCHealthCoreMockModule, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCImageCaptchaChallengeProviderMock, AXCIntegrationLifecycleEventsService, AXCIntegrationManagementMockModule, AXCIntegrationOAuthMockService, AXCIntegrationSecretStoreMock, AXCIntegrationTokenRefreshService, AXCJiraManagementMockModule, AXCLearningManagementMockModule, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCMeasurementCoreMockModule, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMetadataCategorySeeder, AXCMiddlewaresModule, AXCMockCaptchaChallengeComponent, AXCMockEntityLogListener, AXCMockModule, AXCMockShowMetaDataFormPopupCommand, AXCNotificationManagementMockModule, AXCOrderManagementMockModule, AXCOrganizationManagementMockModule, AXCPersonCoreMockModule, AXCPlatformManagementMockModule, AXCProcurementManagementMockModule, AXCProductCatalogMockModule, AXCProjectManagementMockModule, AXCQueryRegistryDataSeeder, AXCReportManagementMockModule, AXCSecurityManagementMockModule, AXCStoredEntityDefinitionLoader, AXCSubscriptionManagementMockModule, AXCSupplierManagementMockModule, AXCTaskManagementMockModule, AXCTenantManagementMockModule, AXCTenantSeeder, AXCTextTemplateRenderBackend, AXCTokensDataSeeder, AXCUserPassStrategyMock, AXCVersionDB, AXCVersioningService, AXCWidgetCatalogDataSeeder, AXCWorkflowCategorySeeder, AXCWorkflowDefinitionDataSeeder, AXCWorkflowEngine, AXCWorkflowExecutionDB, AXCWorkflowExecutionStoreDexie, AXCWorkflowExecutionStoreFirestore, AXCWorkflowInstanceCartableDemoSeeder, AXCWorkflowManagementMockModule, AXC_ENTITY_STORAGE_BACKEND_TYPE, AXC_FIRESTORE_CONFIG, AXC_FIRESTORE_DB, AXC_WORKFLOW_EXECUTION_STORE, AXMAiDemisAssistAgentUuid, AXMAiDemisAssistId, AXMAiDemisGeneralAssistId, AXMAiModelStableIds, AXMAiPlatformAssistantAssistId, AXMAutomationDataSeeder, AXMBusinessUnitDataSeeder, AXMCalendarOccasionTypeSeeder, AXMDashboardChartDataSourceDefinition, AXMEmployeeDataSeeder, AXMEmploymentTypeDataSeeder, AXMFormDataSourcesProvider, AXMJiraManagementMockIds, AXMJobDefinitionDataSeeder, AXMJobLevelDataSeeder, AXMLeaveRequestDataSeeder, AXMMeetingDataSeeder, AXMMeetingFilesDataSeeder, AXMMeetingParticipantDataSeeder, AXMMeetingRoleTypeDataSeeder, AXMMeetingSessionDataSeeder, AXMMeetingTypeDataSeeder, AXMMeetingTypeFileTemplateDataSeeder, AXMPositionAssignmentDataSeeder, AXMPositionDataSeeder, AXMQuestionBankItemCategoryDataSeeder, AXMQuestionBankItemDataSeeder, AXMQuestionnaireCategoryDataSeeder, AXMQuestionnaireDataSeeder, AXMResponsibilityDataSeeder, AXMTagDataSeeder, AXMTeamBusinessUnitDataSeeder, AXMTeamDataSeeder, AXMTeamMemberDataSeeder, AXMTeamMemberRoleDataSeeder, AXMWorkflowDashboardChartDataSourceDefinition, AXM_AI_REGISTRY_COMMAND_NAME, AXM_AI_REGISTRY_QUERY_NAME, AXM_CORPORATE_BUSINESS_UNIT_ID, AXPDashboardDataSeeder, AXPIdentifierDB, AXPMessageDataSeeder, AXPMockChecksumProvider, AXPMockClockProvider, AXPMockIdentifierService, AXPMockLookupProvider, AXPMockPolicyProvider, AXPMockSequenceProvider, AXPRoomDataSeeder, AXPSecurityManagementRoleDataSeeder, AXPSecurityManagementUserDataSeeder, AXPTaskBoardPlatformManagementTaskProvider, AXPTaskBoardProjectManagementTaskProvider, AXVChangeType, BCC, BOC, BUSINESS_UNITS_MOCK, COLLABORATION_STANDARD, CP, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYMENT_TYPES_MOCK, ENTITY_DEFINITION_MAP, ENTITY_REGISTRY, G, HR_ENTERPRISE, HW, JOB_DEFINITIONS_CATEGORY_MOCK, JOB_DEFINITIONS_MOCK, JOB_DEFINITION_CATEGORY_KEY_TO_ID, JOB_LEVELS_MOCK, LASER_PLUMBING_TENANT_ID, LEAVE_REQUESTS_MOCK, MAGFA_COMMERCE_STANDARD, MAGFA_CONVERSATION_DASHBOARD, MAGFA_TENANT_ID, METADATA_CATEGORY_IDS, METADATA_GENERAL_CATEGORY_REFS, METADATA_SYSTEM_CATEGORY_REFS, MLC, MOCK_CALENDAR_AUSTRALIA_ID, MOCK_CALENDAR_INTERNATIONAL_GREGORIAN_ID, MOCK_CALENDAR_IRAN_PERSIAN_ID, MOCK_CALENDAR_NEW_ZEALAND_ID, MOCK_DATA_SEED_VERSION, MOCK_ENTITY_SEED_META_KEY, OHR, OWNERSHIP_FILTER_BYPASS, PLATFORM_CONSOLE, PLATFORM_TENANT_ID, PM, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, QCP, QGEN, QHW, QOHR, QPM, QTLE, QUESTIONNAIRE_CATEGORY_MOCK, QUESTION_BANK_ITEM_CATEGORY_MOCK, QWS, RESPONSIBILITIES_CATEGORY_MOCK, RESPONSIBILITIES_MOCK, RESPONSIBILITY_CATEGORY_KEY_TO_ID, SAFETYMINDER_BASIC, SAFETYMINDER_ENTERPRISE, SAFETYMINDER_PROFESSIONAL, TAGS_MOCK, TASKS, TASK_STATUSES, TASK_TEMPLATES, TASK_TYPES, TEAMS_CATEGORY_MOCK, TEAMS_MOCK, TEAM_BUSINESS_UNITS_MOCK, TEAM_CATEGORY_KEY_TO_ID, TEAM_MEMBERS_MOCK, TEAM_MEMBER_ROLES_MOCK, TIMEPLICITY_TENANT_ID, TLA, TOKENS, TPC, VISIBILITY_FILTER_BYPASS, WORKFLOW_CATEGORIES, WS, activityCategoryMocks, activityDefinitionEntityMock, applyEntityDefinitionFirestoreSnapshot, attachmentsInterface, automationCommandMiddleware, automationMock, avatarInterface, axVersionDB, axWorkflowExecutionDB, axcPatchEmployeeActivePrimaryBusinessUnitRefsFromRows, axcPatchEmployeeActivePrimaryPositionRefsFromRows, axcPatchEmployeeManagerRefsFromRows, axcResolveCommandRegistrySeedId, axcResolveQueryRegistrySeedId, axcResolveWidgetCatalogSeedId, bankCategory, buildEntityStorageQuickSearchFilter, buildWorkflowInstanceCartableDemoRows, bypassAllFilters, bypassOwnershipFilter, bypassVisibilityFilter, calendarMock, calendarOccasionMock, calendarOccasionSeedData, calendarOccasionTypeMockData, checkboxInterface, childCountMiddleware, clearEntityDefinitionFirestoreCollections, colorInterface, computeDiff, contactInterface, createFileCastMiddleware, createWidgetLayoutConfig, createWorkflowDefinitionEntityMock, dateInterface, dateTimeInterface, descriptionInterface, documentFolderSyncMiddleware, emailInterface, enrichCalendarOccasionForStorage, enrichWorkflowGraph, entityDefDb, entityValidationMiddleware, finalizeActivityCategoryItemCounts, findEmployeeById, folderStorageMiddleware, groupOrderItemCalculatorMiddleware, historyMiddleware, identifierCommitMiddleware, imageInterface, inspectionOkXNaInterface, loadMockPropertyDefinitions, lockGuardMiddleware, longTextAnswerInterface, lookupInterface, lookupResolverMiddleware, mapInterface, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, mergeQuickSearchIntoRequest, metadataCategoryMocks, mockQuestionBankItemByName, mockRoleDefinitions, mockUsers, multipleChoiceInterface, multipleSelectInterface, normalizeAnyFileArrayForView, normalizeSnapshotFileFieldsForView, numberInterface, parseEntityStorageInsertData, parseEntityStorageQueryRequest, participantIds, passwordInterface, personIdentifierTypeMock, personIds, personLegalIds, personMock, personNaturalIds, phoneInterface, primaryMiddleware, provideMockPropertySetups, qrcodeInterface, questionBankItemMock, questionnaireMock, ratingInterface, richTextInterface, scaleInterface, selectInterface, selectionListInterface, sexAtBirthInterface, signatureInterface, statusDefaultMiddleware, tagInterface, tenantMocks, textAreaInterface, textInterface, timeDurationInterface, titleInterface, toUiRows, toggleInterface, tokenCategoryIds, tokenCategoryMocks, urlInterface, versionInterface, visibilityFilterMiddleware, workflowDefinitionEntityMock, workflowDefinitionIds, workflowDefinitionMock, yesNoInterface };
4118
+ export { ACTIVITY_CATEGORIES, ACTIVITY_CATEGORY_ID_BY_KEY, ACTIVITY_DEFINITIONS, AI_ASSIST_MOCK, AI_MODEL_MOCK, APPLICATIONS, APPLICATION_CATEGORY_IDS, APPLICATION_CATEGORY_MOCKS, AXCActivityCategorySeeder, AXCActivityDefinitionSeeder, AXCAiAssistSeeder, AXCAiManagementMockModule, AXCAiModelSeeder, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationCategoryDataSeeder, AXCApplicationDataSeeder, AXCApplicationManagementMockModule, AXCAssessmentManagementMockModule, AXCAssetManagementMockModule, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarManagementMockModule, AXCCalendarOccasionDataSeeder, AXCCommandRegistryDataSeeder, AXCCommonMockModule, AXCContactCoreMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCConversationMockUploaderService, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCEditionDataSeeder, AXCEntityDefinitionSeederService, AXCEntityDefinitionsModule, AXCEntityStorageInsertCommand, AXCEntityStorageModule, AXCEntityStorageQueryQuery, AXCFileStorageServiceDexie, AXCFileStorageServiceFirestore, AXCFinancialCoreMockModule, AXCFirestoreEntityStorageService, AXCFormTemplateManagementMockModule, AXCGoogleStrategyMock, AXCHealthCoreMockModule, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCImageCaptchaChallengeProviderMock, AXCIntegrationLifecycleEventsService, AXCIntegrationManagementMockModule, AXCIntegrationOAuthMockService, AXCIntegrationSecretStoreMock, AXCIntegrationTokenRefreshService, AXCJiraManagementMockModule, AXCLearningManagementMockModule, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCMeasurementCoreMockModule, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMetadataCategorySeeder, AXCMiddlewaresModule, AXCMockCaptchaChallengeComponent, AXCMockEntityLogListener, AXCMockModule, AXCMockShowMetaDataFormPopupCommand, AXCNotificationManagementMockModule, AXCOrderManagementMockModule, AXCOrganizationManagementMockModule, AXCPersonCoreMockModule, AXCPlatformManagementMockModule, AXCProcurementManagementMockModule, AXCProductCatalogMockModule, AXCProjectManagementMockModule, AXCQueryRegistryDataSeeder, AXCReportManagementMockModule, AXCSecurityManagementMockModule, AXCStoredEntityDefinitionLoader, AXCSubscriptionManagementMockModule, AXCSupplierManagementMockModule, AXCTaskManagementMockModule, AXCTenantManagementMockModule, AXCTenantSeeder, AXCTextTemplateRenderBackend, AXCTokensDataSeeder, AXCUserPassStrategyMock, AXCVersionDB, AXCVersioningService, AXCWidgetCatalogDataSeeder, AXCWorkflowCategorySeeder, AXCWorkflowDefinitionDataSeeder, AXCWorkflowEngine, AXCWorkflowExecutionDB, AXCWorkflowExecutionStoreDexie, AXCWorkflowExecutionStoreFirestore, AXCWorkflowInstanceCartableDemoSeeder, AXCWorkflowManagementMockModule, AXC_ENTITY_STORAGE_BACKEND_TYPE, AXC_FIRESTORE_CONFIG, AXC_FIRESTORE_DB, AXC_WORKFLOW_EXECUTION_STORE, AXMAiDemisAssistAgentUuid, AXMAiDemisAssistId, AXMAiDemisGeneralAssistId, AXMAiModelStableIds, AXMAiPlatformAssistantAssistId, AXMAutomationDataSeeder, AXMBusinessUnitDataSeeder, AXMCalendarOccasionTypeSeeder, AXMDashboardChartDataSourceDefinition, AXMEmployeeDataSeeder, AXMEmploymentTypeDataSeeder, AXMFormDataSourcesProvider, AXMJiraManagementMockIds, AXMJobDefinitionDataSeeder, AXMJobLevelDataSeeder, AXMLeaveRequestDataSeeder, AXMMeetingDataSeeder, AXMMeetingFilesDataSeeder, AXMMeetingParticipantDataSeeder, AXMMeetingRoleTypeDataSeeder, AXMMeetingSessionDataSeeder, AXMMeetingTypeDataSeeder, AXMMeetingTypeFileTemplateDataSeeder, AXMPositionAssignmentDataSeeder, AXMPositionDataSeeder, AXMQuestionBankItemCategoryDataSeeder, AXMQuestionBankItemDataSeeder, AXMQuestionnaireCategoryDataSeeder, AXMQuestionnaireDataSeeder, AXMResponsibilityDataSeeder, AXMTagDataSeeder, AXMTeamBusinessUnitDataSeeder, AXMTeamDataSeeder, AXMTeamMemberDataSeeder, AXMTeamMemberRoleDataSeeder, AXMWorkflowDashboardChartDataSourceDefinition, AXM_AI_REGISTRY_COMMAND_NAME, AXM_AI_REGISTRY_QUERY_NAME, AXM_CORPORATE_BUSINESS_UNIT_ID, AXPDashboardDataSeeder, AXPIdentifierDB, AXPMessageDataSeeder, AXPMockChecksumProvider, AXPMockClockProvider, AXPMockIdentifierService, AXPMockLookupProvider, AXPMockPolicyProvider, AXPMockSequenceProvider, AXPRoomDataSeeder, AXPSecurityManagementRoleDataSeeder, AXPSecurityManagementUserDataSeeder, AXPTaskBoardPlatformManagementTaskProvider, AXVChangeType, BCC, BOC, BUSINESS_UNITS_MOCK, COLLABORATION_STANDARD, CP, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYMENT_TYPES_MOCK, ENTITY_DEFINITION_MAP, ENTITY_REGISTRY, G, HR_ENTERPRISE, HW, JOB_DEFINITIONS_CATEGORY_MOCK, JOB_DEFINITIONS_MOCK, JOB_DEFINITION_CATEGORY_KEY_TO_ID, JOB_LEVELS_MOCK, LASER_PLUMBING_TENANT_ID, LEAVE_REQUESTS_MOCK, MAGFA_COMMERCE_STANDARD, MAGFA_CONVERSATION_DASHBOARD, MAGFA_TENANT_ID, METADATA_CATEGORY_IDS, METADATA_GENERAL_CATEGORY_REFS, METADATA_SYSTEM_CATEGORY_REFS, MLC, MOCK_CALENDAR_AUSTRALIA_ID, MOCK_CALENDAR_INTERNATIONAL_GREGORIAN_ID, MOCK_CALENDAR_IRAN_PERSIAN_ID, MOCK_CALENDAR_NEW_ZEALAND_ID, MOCK_DATA_SEED_VERSION, MOCK_ENTITY_SEED_META_KEY, OHR, OWNERSHIP_FILTER_BYPASS, PLATFORM_CONSOLE, PLATFORM_TENANT_ID, PM, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, QCP, QGEN, QHW, QOHR, QPM, QTLE, QUESTIONNAIRE_CATEGORY_MOCK, QUESTION_BANK_ITEM_CATEGORY_MOCK, QWS, RESPONSIBILITIES_CATEGORY_MOCK, RESPONSIBILITIES_MOCK, RESPONSIBILITY_CATEGORY_KEY_TO_ID, SAFETYMINDER_BASIC, SAFETYMINDER_ENTERPRISE, SAFETYMINDER_PROFESSIONAL, TAGS_MOCK, TASKS, TASK_STATUSES, TASK_TEMPLATES, TASK_TYPES, TEAMS_CATEGORY_MOCK, TEAMS_MOCK, TEAM_BUSINESS_UNITS_MOCK, TEAM_CATEGORY_KEY_TO_ID, TEAM_MEMBERS_MOCK, TEAM_MEMBER_ROLES_MOCK, TIMEPLICITY_TENANT_ID, TLA, TOKENS, TPC, VISIBILITY_FILTER_BYPASS, WORKFLOW_CATEGORIES, WS, activityCategoryMocks, activityDefinitionEntityMock, applyEntityDefinitionFirestoreSnapshot, attachmentsInterface, automationCommandMiddleware, automationMock, avatarInterface, axVersionDB, axWorkflowExecutionDB, axcPatchEmployeeActivePrimaryBusinessUnitRefsFromRows, axcPatchEmployeeActivePrimaryPositionRefsFromRows, axcPatchEmployeeManagerRefsFromRows, axcResolveCommandRegistrySeedId, axcResolveQueryRegistrySeedId, axcResolveWidgetCatalogSeedId, bankCategory, buildEntityStorageQuickSearchFilter, buildWorkflowInstanceCartableDemoRows, bypassAllFilters, bypassOwnershipFilter, bypassVisibilityFilter, calendarMock, calendarOccasionMock, calendarOccasionSeedData, calendarOccasionTypeMockData, checkboxInterface, childCountMiddleware, clearEntityDefinitionFirestoreCollections, colorInterface, computeDiff, contactInterface, createFileCastMiddleware, createWidgetLayoutConfig, createWorkflowDefinitionEntityMock, dateInterface, dateTimeInterface, descriptionInterface, documentFolderSyncMiddleware, emailInterface, enrichCalendarOccasionForStorage, enrichWorkflowGraph, entityDefDb, entityValidationMiddleware, finalizeActivityCategoryItemCounts, findEmployeeById, folderStorageMiddleware, groupOrderItemCalculatorMiddleware, historyMiddleware, identifierCommitMiddleware, imageInterface, inspectionOkXNaInterface, loadMockPropertyDefinitions, lockGuardMiddleware, longTextAnswerInterface, lookupInterface, lookupResolverMiddleware, mapInterface, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, mergeQuickSearchIntoRequest, metadataCategoryMocks, mockQuestionBankItemByName, mockRoleDefinitions, mockUsers, multipleChoiceInterface, multipleSelectInterface, normalizeAnyFileArrayForView, normalizeSnapshotFileFieldsForView, numberInterface, parseEntityStorageInsertData, parseEntityStorageQueryRequest, participantIds, passwordInterface, personIdentifierTypeMock, personIds, personLegalIds, personMock, personNaturalIds, phoneInterface, primaryMiddleware, provideMockPropertySetups, qrcodeInterface, questionBankItemMock, questionnaireMock, ratingInterface, richTextInterface, scaleInterface, selectInterface, selectionListInterface, sexAtBirthInterface, signatureInterface, statusDefaultMiddleware, tagInterface, tenantMocks, textAreaInterface, textInterface, timeDurationInterface, titleInterface, toUiRows, toggleInterface, tokenCategoryIds, tokenCategoryMocks, urlInterface, versionInterface, visibilityFilterMiddleware, workflowDefinitionEntityMock, workflowDefinitionIds, workflowDefinitionMock, yesNoInterface };
4153
4119
  export type { AXCBookmarkEntity, AXCEntityStorageBackendType, AXCEntityStorageInsertInput, AXCEntityStorageInsertOutput, AXCEntityStorageQueryInput, AXCEntityStorageQueryResult, AXCFirestoreConfig, AXCLeaveRequestMockDto, AXCMockEntitySeedMeta, AXCPositionAssignmentMockDto, AXCWorkflowExecutionStore, AXMAiManagementAssistDemisMockMetadata, AXMAiManagementAssistMockModel, AXMAiManagementModelMockModel, AXMApplicationManagementApplicationCategoryMockModel, AXMOrganizationManagementBusinessUnitMockModel, AXMOrganizationManagementJobDefinitionMockModel, AXMOrganizationManagementJobLevelMockModel, AXMOrganizationManagementPositionMockModel, AXMOrganizationManagementResponsibilityMockModel, AXMOrganizationManagementTeamBusinessUnitMockModel, AXMOrganizationManagementTeamMemberMockModel, AXMOrganizationManagementTeamMemberRoleMockModel, AXMOrganizationManagementTeamMockModel, AXMTag, AXPLogRow, AXPRuleRow, AXPSeqRow, AXPTextTemplateRenderRequest, AXPTextTemplateRenderResult, AXPVersionChange, AXPVersionEntry, AXPVersionStream, AutomationCommandDto, AutomationMockDto, CanonicalChange, CanonicalChangeOp, CompleteOAuthMockInput, CreateWorkflowDefinitionEntityMockOptions, EntityDefinitionFirestoreSnapshotFile, FirestoreSnapshotOperation, IntegrationLifecycleEventPayload, MockUserPassCredentials, QuestionBankItemCategoryTitle, QuestionBankItemMockDto, QuestionnaireCategoryTitle, QuestionnaireMockDto, ShowMetaDataFormPopupMockInput, StartOAuthMockInput, Task, TaskStatus, TaskTemplate, TaskType, UIDiffRow, VersionedFileInfo, WorkflowInstanceEntityBookmark };