@acorex/connectivity 21.0.0-next.90 → 21.0.0-next.92

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-Lp5JVZi8.mjs → acorex-connectivity-mock-acorex-connectivity-mock-B5bnzTKN.mjs} +746 -658
  3. package/fesm2022/acorex-connectivity-mock-acorex-connectivity-mock-B5bnzTKN.mjs.map +1 -0
  4. package/fesm2022/{acorex-connectivity-mock-assign-to-manager.activity-dDsWQSTk.mjs → acorex-connectivity-mock-assign-to-manager.activity-Dv7Jzdhf.mjs} +2 -2
  5. package/fesm2022/{acorex-connectivity-mock-assign-to-manager.activity-dDsWQSTk.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-sPuslYfP.mjs → acorex-connectivity-mock-chat-generate-image.command-C_1j3JPR.mjs} +2 -2
  9. package/fesm2022/{acorex-connectivity-mock-chat-generate-image.command-sPuslYfP.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-CNWePQu6.mjs → acorex-connectivity-mock-chat-synthesize-speech.command-0y5swsxw.mjs} +2 -2
  11. package/fesm2022/{acorex-connectivity-mock-chat-synthesize-speech.command-CNWePQu6.mjs.map → acorex-connectivity-mock-chat-synthesize-speech.command-0y5swsxw.mjs.map} +1 -1
  12. package/fesm2022/{acorex-connectivity-mock-chat-transcribe-speech.command-C5b1_mDb.mjs → acorex-connectivity-mock-chat-transcribe-speech.command-D59NedG-.mjs} +2 -2
  13. package/fesm2022/{acorex-connectivity-mock-chat-transcribe-speech.command-C5b1_mDb.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-_M6LBuCV.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-_M6LBuCV.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 +3 -3
  32. package/fesm2022/acorex-connectivity-mock-acorex-connectivity-mock-Lp5JVZi8.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-Lp5JVZi8.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-_M6LBuCV.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-_M6LBuCV.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 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-Lp5JVZi8.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.90",
3
+ "version": "21.0.0-next.92",
4
4
  "peerDependencies": {
5
- "@acorex/modules": "21.0.0-next.90"
5
+ "@acorex/modules": "21.0.0-next.92"
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';