@acorex/connectivity 20.9.6 → 20.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{acorex-connectivity-mock-acorex-connectivity-mock-g0RVU1Og.mjs → acorex-connectivity-mock-acorex-connectivity-mock-BK5apYT7.mjs} +56 -28
- package/fesm2022/acorex-connectivity-mock-acorex-connectivity-mock-BK5apYT7.mjs.map +1 -0
- package/fesm2022/{acorex-connectivity-mock-assign-to-manager.activity-CTrrsAvF.mjs → acorex-connectivity-mock-assign-to-manager.activity-G6ya7tsP.mjs} +2 -2
- package/fesm2022/{acorex-connectivity-mock-assign-to-manager.activity-CTrrsAvF.mjs.map → acorex-connectivity-mock-assign-to-manager.activity-G6ya7tsP.mjs.map} +1 -1
- package/fesm2022/{acorex-connectivity-mock-chat-generate-image.command-CSbgiZEm.mjs → acorex-connectivity-mock-chat-generate-image.command-DL4FUtwq.mjs} +2 -2
- package/fesm2022/{acorex-connectivity-mock-chat-generate-image.command-CSbgiZEm.mjs.map → acorex-connectivity-mock-chat-generate-image.command-DL4FUtwq.mjs.map} +1 -1
- package/fesm2022/{acorex-connectivity-mock-chat-synthesize-speech.command-CjdySQzM.mjs → acorex-connectivity-mock-chat-synthesize-speech.command-nqjt0VUH.mjs} +2 -2
- package/fesm2022/{acorex-connectivity-mock-chat-synthesize-speech.command-CjdySQzM.mjs.map → acorex-connectivity-mock-chat-synthesize-speech.command-nqjt0VUH.mjs.map} +1 -1
- package/fesm2022/{acorex-connectivity-mock-chat-transcribe-speech.command-Wm1Ao81s.mjs → acorex-connectivity-mock-chat-transcribe-speech.command-KuWDfHkV.mjs} +2 -2
- package/fesm2022/{acorex-connectivity-mock-chat-transcribe-speech.command-Wm1Ao81s.mjs.map → acorex-connectivity-mock-chat-transcribe-speech.command-KuWDfHkV.mjs.map} +1 -1
- package/fesm2022/{acorex-connectivity-mock-user-roles-for-list-column.query-wRFHOp-X.mjs → acorex-connectivity-mock-user-roles-for-list-column.query-24pilE4B.mjs} +2 -2
- package/fesm2022/{acorex-connectivity-mock-user-roles-for-list-column.query-wRFHOp-X.mjs.map → acorex-connectivity-mock-user-roles-for-list-column.query-24pilE4B.mjs.map} +1 -1
- package/fesm2022/acorex-connectivity-mock.mjs +1 -1
- package/package.json +2 -2
- package/types/acorex-connectivity-mock.d.ts +8 -0
- package/fesm2022/acorex-connectivity-mock-acorex-connectivity-mock-g0RVU1Og.mjs.map +0 -1
|
@@ -12,6 +12,7 @@ import { getApps, getApp, initializeApp } from 'firebase/app';
|
|
|
12
12
|
import * as i1$1 from 'firebase/firestore';
|
|
13
13
|
import { collection, getDocs, query, limit, writeBatch, where, doc, getDoc, updateDoc, deleteDoc, setDoc, getFirestore, orderBy, addDoc } from 'firebase/firestore';
|
|
14
14
|
import { AXPDataGenerator, isLocaleStringMap, resolveMultiLanguageString, createMultiLanguageString, AXPSystemStatusType, AXPFileStorageStatus, AXPWidgetsCatalog, AXPPlatformScope, getSmart, AXPWidgetsList, AXP_INTEGRATION_AUTH_METHOD_TYPE, AXP_INTEGRATION_CONNECTION_STATUS, AXPSystemStatuses } from '@acorex/platform/contracts';
|
|
15
|
+
import { delay } from '@acorex/core/utils';
|
|
15
16
|
import Dexie from 'dexie';
|
|
16
17
|
import { collectEntityQuickSearchFieldPaths, AXPEntityCommandScope, buildAXPRecordWorkflowInfo } from '@acorex/platform/layout/entity-contracts';
|
|
17
18
|
import { get, castArray, isString, isEmpty, trim, defaultTo, orderBy as orderBy$1, isArray, set } from 'lodash-es';
|
|
@@ -124,10 +125,14 @@ const MOCK_ENTITY_SEED_META_KEY = 'entity-mock-seed';
|
|
|
124
125
|
|
|
125
126
|
/** Rows loaded into memory for aggregation on mock backends (safety cap). */
|
|
126
127
|
const ENTITY_AGGREGATE_MAX_ROWS$1 = 500_000;
|
|
128
|
+
/** Simulated network latency for mock read operations (ms). */
|
|
129
|
+
const MOCK_API_DELAY_MS = 100;
|
|
127
130
|
class AXCDexieEntityStorageService extends Dexie {
|
|
128
131
|
constructor() {
|
|
129
132
|
super('ACoreXPlatform');
|
|
130
133
|
this.sessionService = inject(AXPSessionService);
|
|
134
|
+
/** When > 0, simulated read latency is skipped (startup mock seeding). */
|
|
135
|
+
this.seedingDepth = 0;
|
|
131
136
|
this.version(1).stores({
|
|
132
137
|
'entity-store': '++id, entityName, [entityName+id]',
|
|
133
138
|
});
|
|
@@ -230,7 +235,29 @@ class AXCDexieEntityStorageService extends Dexie {
|
|
|
230
235
|
return row.value;
|
|
231
236
|
}
|
|
232
237
|
//#endregion
|
|
238
|
+
//#region ---- Seeding mode ----
|
|
239
|
+
/**
|
|
240
|
+
* Runs work with mock read latency disabled.
|
|
241
|
+
* Used during startup entity seeding so artificial delays do not stack per operation.
|
|
242
|
+
*/
|
|
243
|
+
async runDuringSeeding(work) {
|
|
244
|
+
this.seedingDepth++;
|
|
245
|
+
try {
|
|
246
|
+
return await work();
|
|
247
|
+
}
|
|
248
|
+
finally {
|
|
249
|
+
this.seedingDepth--;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
async mockApiDelay() {
|
|
253
|
+
if (this.seedingDepth > 0) {
|
|
254
|
+
return;
|
|
255
|
+
}
|
|
256
|
+
await delay(MOCK_API_DELAY_MS);
|
|
257
|
+
}
|
|
258
|
+
//#endregion
|
|
233
259
|
async getOne(entityName, id) {
|
|
260
|
+
await this.mockApiDelay();
|
|
234
261
|
return await this.table('entity-store').where({ entityName, id: id }).first();
|
|
235
262
|
}
|
|
236
263
|
async updateOne(entityName, id, keyValue) {
|
|
@@ -251,6 +278,7 @@ class AXCDexieEntityStorageService extends Dexie {
|
|
|
251
278
|
return await this.table('entity-store').where({ entityName }).toArray();
|
|
252
279
|
}
|
|
253
280
|
async query(entityName, request) {
|
|
281
|
+
await this.mockApiDelay();
|
|
254
282
|
return runEntityQuery(entityName, request, this.createQueryAdapters(), request.params?.['locale']);
|
|
255
283
|
}
|
|
256
284
|
async count(entityName, request) {
|
|
@@ -23071,7 +23099,7 @@ class AXCAiManagementMockModule {
|
|
|
23071
23099
|
provideCommandSetups([
|
|
23072
23100
|
{
|
|
23073
23101
|
key: 'AiManagement:ChatGenerateImage',
|
|
23074
|
-
command: () => import('./acorex-connectivity-mock-chat-generate-image.command-
|
|
23102
|
+
command: () => import('./acorex-connectivity-mock-chat-generate-image.command-DL4FUtwq.mjs').then((c) => c.AiManagementChatGenerateImageCommand),
|
|
23075
23103
|
},
|
|
23076
23104
|
{
|
|
23077
23105
|
key: 'AiManagement:ExtractDocumentText',
|
|
@@ -23083,11 +23111,11 @@ class AXCAiManagementMockModule {
|
|
|
23083
23111
|
},
|
|
23084
23112
|
{
|
|
23085
23113
|
key: 'AiManagement:ChatTranscribeSpeech',
|
|
23086
|
-
command: () => import('./acorex-connectivity-mock-chat-transcribe-speech.command-
|
|
23114
|
+
command: () => import('./acorex-connectivity-mock-chat-transcribe-speech.command-KuWDfHkV.mjs').then((c) => c.AiManagementChatTranscribeSpeechCommand),
|
|
23087
23115
|
},
|
|
23088
23116
|
{
|
|
23089
23117
|
key: 'AiManagement:ChatSynthesizeSpeech',
|
|
23090
|
-
command: () => import('./acorex-connectivity-mock-chat-synthesize-speech.command-
|
|
23118
|
+
command: () => import('./acorex-connectivity-mock-chat-synthesize-speech.command-nqjt0VUH.mjs').then((c) => c.AiManagementChatSynthesizeSpeechCommand),
|
|
23091
23119
|
},
|
|
23092
23120
|
]),
|
|
23093
23121
|
] }); }
|
|
@@ -23140,7 +23168,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
23140
23168
|
provideCommandSetups([
|
|
23141
23169
|
{
|
|
23142
23170
|
key: 'AiManagement:ChatGenerateImage',
|
|
23143
|
-
command: () => import('./acorex-connectivity-mock-chat-generate-image.command-
|
|
23171
|
+
command: () => import('./acorex-connectivity-mock-chat-generate-image.command-DL4FUtwq.mjs').then((c) => c.AiManagementChatGenerateImageCommand),
|
|
23144
23172
|
},
|
|
23145
23173
|
{
|
|
23146
23174
|
key: 'AiManagement:ExtractDocumentText',
|
|
@@ -23152,11 +23180,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
23152
23180
|
},
|
|
23153
23181
|
{
|
|
23154
23182
|
key: 'AiManagement:ChatTranscribeSpeech',
|
|
23155
|
-
command: () => import('./acorex-connectivity-mock-chat-transcribe-speech.command-
|
|
23183
|
+
command: () => import('./acorex-connectivity-mock-chat-transcribe-speech.command-KuWDfHkV.mjs').then((c) => c.AiManagementChatTranscribeSpeechCommand),
|
|
23156
23184
|
},
|
|
23157
23185
|
{
|
|
23158
23186
|
key: 'AiManagement:ChatSynthesizeSpeech',
|
|
23159
|
-
command: () => import('./acorex-connectivity-mock-chat-synthesize-speech.command-
|
|
23187
|
+
command: () => import('./acorex-connectivity-mock-chat-synthesize-speech.command-nqjt0VUH.mjs').then((c) => c.AiManagementChatSynthesizeSpeechCommand),
|
|
23160
23188
|
},
|
|
23161
23189
|
]),
|
|
23162
23190
|
],
|
|
@@ -50928,7 +50956,7 @@ class AXMFormDataSourcesProvider {
|
|
|
50928
50956
|
source: () => {
|
|
50929
50957
|
return new AXDataSource({
|
|
50930
50958
|
pageSize: 10,
|
|
50931
|
-
key: '
|
|
50959
|
+
key: 'id',
|
|
50932
50960
|
load: async () => {
|
|
50933
50961
|
return {
|
|
50934
50962
|
items: [
|
|
@@ -50978,7 +51006,7 @@ class AXMFormDataSourcesProvider {
|
|
|
50978
51006
|
source: () => {
|
|
50979
51007
|
return new AXDataSource({
|
|
50980
51008
|
pageSize: 10,
|
|
50981
|
-
key: '
|
|
51009
|
+
key: 'id',
|
|
50982
51010
|
load: async () => {
|
|
50983
51011
|
return {
|
|
50984
51012
|
items: [
|
|
@@ -51029,7 +51057,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51029
51057
|
source: () => {
|
|
51030
51058
|
return new AXDataSource({
|
|
51031
51059
|
pageSize: 10,
|
|
51032
|
-
key: '
|
|
51060
|
+
key: 'id',
|
|
51033
51061
|
load: async () => {
|
|
51034
51062
|
return {
|
|
51035
51063
|
items: [
|
|
@@ -51081,7 +51109,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51081
51109
|
source: () => {
|
|
51082
51110
|
return new AXDataSource({
|
|
51083
51111
|
pageSize: 10,
|
|
51084
|
-
key: '
|
|
51112
|
+
key: 'id',
|
|
51085
51113
|
load: async () => {
|
|
51086
51114
|
return {
|
|
51087
51115
|
items: [
|
|
@@ -51138,7 +51166,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51138
51166
|
source: () => {
|
|
51139
51167
|
return new AXDataSource({
|
|
51140
51168
|
pageSize: 10,
|
|
51141
|
-
key: '
|
|
51169
|
+
key: 'id',
|
|
51142
51170
|
load: async () => {
|
|
51143
51171
|
return {
|
|
51144
51172
|
items: [
|
|
@@ -51195,7 +51223,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51195
51223
|
source: () => {
|
|
51196
51224
|
return new AXDataSource({
|
|
51197
51225
|
pageSize: 10,
|
|
51198
|
-
key: '
|
|
51226
|
+
key: 'id',
|
|
51199
51227
|
load: async () => {
|
|
51200
51228
|
return {
|
|
51201
51229
|
items: [
|
|
@@ -51257,7 +51285,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51257
51285
|
source: () => {
|
|
51258
51286
|
return new AXDataSource({
|
|
51259
51287
|
pageSize: 10,
|
|
51260
|
-
key: '
|
|
51288
|
+
key: 'id',
|
|
51261
51289
|
load: async () => {
|
|
51262
51290
|
return {
|
|
51263
51291
|
items: [
|
|
@@ -51322,7 +51350,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51322
51350
|
source: () => {
|
|
51323
51351
|
return new AXDataSource({
|
|
51324
51352
|
pageSize: 10,
|
|
51325
|
-
key: '
|
|
51353
|
+
key: 'id',
|
|
51326
51354
|
load: async () => {
|
|
51327
51355
|
return {
|
|
51328
51356
|
items: [
|
|
@@ -51383,7 +51411,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51383
51411
|
source: () => {
|
|
51384
51412
|
return new AXDataSource({
|
|
51385
51413
|
pageSize: 10,
|
|
51386
|
-
key: '
|
|
51414
|
+
key: 'id',
|
|
51387
51415
|
load: async () => {
|
|
51388
51416
|
return {
|
|
51389
51417
|
items: [
|
|
@@ -51435,7 +51463,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51435
51463
|
source: () => {
|
|
51436
51464
|
return new AXDataSource({
|
|
51437
51465
|
pageSize: 10,
|
|
51438
|
-
key: '
|
|
51466
|
+
key: 'id',
|
|
51439
51467
|
load: async () => {
|
|
51440
51468
|
return {
|
|
51441
51469
|
items: [
|
|
@@ -51487,7 +51515,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51487
51515
|
source: () => {
|
|
51488
51516
|
return new AXDataSource({
|
|
51489
51517
|
pageSize: 10,
|
|
51490
|
-
key: '
|
|
51518
|
+
key: 'id',
|
|
51491
51519
|
load: async () => {
|
|
51492
51520
|
return {
|
|
51493
51521
|
items: [
|
|
@@ -51540,7 +51568,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51540
51568
|
source: () => {
|
|
51541
51569
|
return new AXDataSource({
|
|
51542
51570
|
pageSize: 10,
|
|
51543
|
-
key: '
|
|
51571
|
+
key: 'id',
|
|
51544
51572
|
load: async () => {
|
|
51545
51573
|
return {
|
|
51546
51574
|
items: [
|
|
@@ -51595,7 +51623,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51595
51623
|
source: () => {
|
|
51596
51624
|
return new AXDataSource({
|
|
51597
51625
|
pageSize: 10,
|
|
51598
|
-
key: '
|
|
51626
|
+
key: 'id',
|
|
51599
51627
|
load: async () => {
|
|
51600
51628
|
return {
|
|
51601
51629
|
items: [
|
|
@@ -51652,7 +51680,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51652
51680
|
source: () => {
|
|
51653
51681
|
return new AXDataSource({
|
|
51654
51682
|
pageSize: 10,
|
|
51655
|
-
key: '
|
|
51683
|
+
key: 'id',
|
|
51656
51684
|
load: async () => {
|
|
51657
51685
|
return {
|
|
51658
51686
|
items: [
|
|
@@ -51711,7 +51739,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51711
51739
|
source: () => {
|
|
51712
51740
|
return new AXDataSource({
|
|
51713
51741
|
pageSize: 10,
|
|
51714
|
-
key: '
|
|
51742
|
+
key: 'id',
|
|
51715
51743
|
load: async () => {
|
|
51716
51744
|
return {
|
|
51717
51745
|
items: [
|
|
@@ -51770,7 +51798,7 @@ class AXMFormDataSourcesProvider {
|
|
|
51770
51798
|
];
|
|
51771
51799
|
return new AXDataSource({
|
|
51772
51800
|
pageSize: 10,
|
|
51773
|
-
key: '
|
|
51801
|
+
key: 'id',
|
|
51774
51802
|
load: async () => ({ items, total: items.length }),
|
|
51775
51803
|
byKey: async (key) => items.find(item => item.id === key),
|
|
51776
51804
|
});
|
|
@@ -76024,7 +76052,7 @@ class AXCSecurityManagementMockModule {
|
|
|
76024
76052
|
provideQuerySetups([
|
|
76025
76053
|
{
|
|
76026
76054
|
key: 'SecurityManagement:User:RolesForListColumn',
|
|
76027
|
-
loader: () => import('./acorex-connectivity-mock-user-roles-for-list-column.query-
|
|
76055
|
+
loader: () => import('./acorex-connectivity-mock-user-roles-for-list-column.query-24pilE4B.mjs').then((m) => m.UserRolesForListColumnQuery),
|
|
76028
76056
|
},
|
|
76029
76057
|
]),
|
|
76030
76058
|
] }); }
|
|
@@ -76068,7 +76096,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
76068
76096
|
provideQuerySetups([
|
|
76069
76097
|
{
|
|
76070
76098
|
key: 'SecurityManagement:User:RolesForListColumn',
|
|
76071
|
-
loader: () => import('./acorex-connectivity-mock-user-roles-for-list-column.query-
|
|
76099
|
+
loader: () => import('./acorex-connectivity-mock-user-roles-for-list-column.query-24pilE4B.mjs').then((m) => m.UserRolesForListColumnQuery),
|
|
76072
76100
|
},
|
|
76073
76101
|
]),
|
|
76074
76102
|
],
|
|
@@ -83929,7 +83957,7 @@ class AXCWorkflowManagementMockModule {
|
|
|
83929
83957
|
provideCommandSetups([
|
|
83930
83958
|
{
|
|
83931
83959
|
key: 'workflow-activity:assign-to-manager',
|
|
83932
|
-
command: () => import('./acorex-connectivity-mock-assign-to-manager.activity-
|
|
83960
|
+
command: () => import('./acorex-connectivity-mock-assign-to-manager.activity-G6ya7tsP.mjs').then((c) => c.AssignToManagerActivity),
|
|
83933
83961
|
},
|
|
83934
83962
|
{
|
|
83935
83963
|
key: 'workflow-activity:get-current-user-manager',
|
|
@@ -84024,7 +84052,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
84024
84052
|
provideCommandSetups([
|
|
84025
84053
|
{
|
|
84026
84054
|
key: 'workflow-activity:assign-to-manager',
|
|
84027
|
-
command: () => import('./acorex-connectivity-mock-assign-to-manager.activity-
|
|
84055
|
+
command: () => import('./acorex-connectivity-mock-assign-to-manager.activity-G6ya7tsP.mjs').then((c) => c.AssignToManagerActivity),
|
|
84028
84056
|
},
|
|
84029
84057
|
{
|
|
84030
84058
|
key: 'workflow-activity:get-current-user-manager',
|
|
@@ -90339,7 +90367,7 @@ class AXCMockModule {
|
|
|
90339
90367
|
return;
|
|
90340
90368
|
}
|
|
90341
90369
|
const seedStartedAt = performance.now();
|
|
90342
|
-
await seederService.seed();
|
|
90370
|
+
await dexieStorage.runDuringSeeding(() => seederService.seed());
|
|
90343
90371
|
const durationSec = (performance.now() - seedStartedAt) / 1000;
|
|
90344
90372
|
await dexieStorage.markMockEntitySeedComplete(durationSec);
|
|
90345
90373
|
const seedMeta = await dexieStorage.getMockEntitySeedMeta();
|
|
@@ -90676,4 +90704,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.9", ngImpor
|
|
|
90676
90704
|
*/
|
|
90677
90705
|
|
|
90678
90706
|
export { AXCFirestoreEntityStorageService as $, AXCAiChatRouterService as A, AXCAssetManagementMockModule as B, AXCAuthMockModule as C, AXCCalendarDataSeeder as D, AXCCalendarManagementMockModule as E, AXCCalendarOccasionDataSeeder as F, AXCCommandRegistryDataSeeder as G, AXCCommonMockModule as H, AXCContactCoreMockModule as I, AXCContentManagementMockModule as J, AXCConversationMockModule as K, AXCConversationMockUploaderService as L, AXCCustomerManagementMockModule as M, AXCDashboardManagementMockModule as N, OPENROUTER_GEMINI_FLASH_TTS_DEFAULT_FORMAT as O, AXCDataManagementMockModule as P, AXCDexieEntityStorageService as Q, AXCDocumentManagementMockModule as R, AXCEditionDataSeeder as S, AXCEntityDefinitionSeederService as T, AXCEntityDefinitionsModule as U, AXCEntityStorageInsertCommand as V, AXCEntityStorageModule as W, AXCEntityStorageQueryQuery as X, AXCFileStorageServiceDexie as Y, AXCFileStorageServiceFirestore as Z, AXCFinancialCoreMockModule as _, AXMAiModelStableIds as a, AXMAiDemisGeneralAssistId as a$, AXCFormTemplateManagementMockModule as a0, AXCGoogleStrategyMock as a1, AXCHealthCoreMockModule as a2, AXCHelpDeskMockModule as a3, AXCHumanCapitalManagementMockModule as a4, AXCIdentifierManagementMockModule as a5, AXCImageCaptchaChallengeProviderMock as a6, AXCIntegrationLifecycleEventsService as a7, AXCIntegrationManagementMockModule as a8, AXCIntegrationOAuthMockService as a9, AXCSecurityManagementMockModule as aA, AXCStoredEntityDefinitionLoader as aB, AXCSubscriptionManagementMockModule as aC, AXCSupplierManagementMockModule as aD, AXCTaskManagementMockModule as aE, AXCTenantManagementMockModule as aF, AXCTenantSeeder as aG, AXCTextTemplateRenderBackend as aH, AXCTokensDataSeeder as aI, AXCUserPassStrategyMock as aJ, AXCVersionDB as aK, AXCVersioningService as aL, AXCWidgetCatalogDataSeeder as aM, AXCWorkflowCategorySeeder as aN, AXCWorkflowDefinitionDataSeeder as aO, AXCWorkflowEngine as aP, AXCWorkflowExecutionDB as aQ, AXCWorkflowExecutionStoreDexie as aR, AXCWorkflowExecutionStoreFirestore as aS, AXCWorkflowInstanceCartableDemoSeeder as aT, AXCWorkflowManagementMockModule as aU, AXC_ENTITY_STORAGE_BACKEND_TYPE as aV, AXC_FIRESTORE_CONFIG as aW, AXC_FIRESTORE_DB as aX, AXC_WORKFLOW_EXECUTION_STORE as aY, AXMAiDemisAssistAgentUuid as aZ, AXMAiDemisAssistId as a_, AXCIntegrationSecretStoreMock as aa, AXCIntegrationTokenRefreshService as ab, AXCJiraManagementMockModule as ac, AXCLearningManagementMockModule as ad, AXCLocaleManagementMockModule as ae, AXCLocationManagementMockModule as af, AXCLockService as ag, AXCMeasurementCoreMockModule as ah, AXCMeetingManagementMockModule as ai, AXCMetaDataDefinitionDataSeeder as aj, AXCMetadataCategorySeeder as ak, AXCMiddlewaresModule as al, AXCMockCaptchaChallengeComponent as am, AXCMockEntityLogListener as an, AXCMockModule as ao, AXCMockShowMetaDataFormPopupCommand as ap, AXCNotificationManagementMockModule as aq, AXCOrderManagementMockModule as ar, AXCOrganizationManagementMockModule as as, AXCPersonCoreMockModule as at, AXCPlatformManagementMockModule as au, AXCProcurementManagementMockModule as av, AXCProductCatalogMockModule as aw, AXCProjectManagementMockModule as ax, AXCQueryRegistryDataSeeder as ay, AXCReportManagementMockModule as az, resolveAssistSpeechModelId as b, JOB_DEFINITIONS_CATEGORY_MOCK as b$, AXMAiPlatformAssistantAssistId as b0, AXMAutomationDataSeeder as b1, AXMBusinessUnitDataSeeder as b2, AXMCalendarOccasionTypeSeeder as b3, AXMDashboardChartDataSourceDefinition as b4, AXMEmployeeDataSeeder as b5, AXMEmploymentTypeDataSeeder as b6, AXMFormDataSourcesProvider as b7, AXMJiraManagementMockIds as b8, AXMJobDefinitionDataSeeder as b9, AXPIdentifierDB as bA, AXPMessageDataSeeder as bB, AXPMockChecksumProvider as bC, AXPMockClockProvider as bD, AXPMockIdentifierService as bE, AXPMockLookupProvider as bF, AXPMockPolicyProvider as bG, AXPMockSequenceProvider as bH, AXPRoomDataSeeder as bI, AXPSecurityManagementRoleDataSeeder as bJ, AXPSecurityManagementUserDataSeeder as bK, AXPTaskBoardPlatformManagementTaskProvider as bL, AXVChangeType as bM, BCC as bN, BOC as bO, BUSINESS_UNITS_MOCK as bP, COLLABORATION_STANDARD as bQ, CP as bR, DASHBOARDS as bS, EDITIONS as bT, EMPLOYEES_MOCK as bU, EMPLOYMENT_TYPES_MOCK as bV, ENTITY_DEFINITION_MAP as bW, ENTITY_REGISTRY as bX, G as bY, HR_ENTERPRISE as bZ, HW as b_, AXMJobLevelDataSeeder as ba, AXMLeaveRequestDataSeeder as bb, AXMMeetingDataSeeder as bc, AXMMeetingFilesDataSeeder as bd, AXMMeetingParticipantDataSeeder as be, AXMMeetingRoleTypeDataSeeder as bf, AXMMeetingSessionDataSeeder as bg, AXMMeetingTypeDataSeeder as bh, AXMMeetingTypeFileTemplateDataSeeder as bi, AXMPositionAssignmentDataSeeder as bj, AXMPositionDataSeeder as bk, AXMQuestionBankItemCategoryDataSeeder as bl, AXMQuestionBankItemDataSeeder as bm, AXMQuestionnaireCategoryDataSeeder as bn, AXMQuestionnaireDataSeeder as bo, AXMResponsibilityDataSeeder as bp, AXMTagDataSeeder as bq, AXMTeamBusinessUnitDataSeeder as br, AXMTeamDataSeeder as bs, AXMTeamMemberDataSeeder as bt, AXMTeamMemberRoleDataSeeder as bu, AXMWorkflowDashboardChartDataSourceDefinition as bv, AXM_AI_REGISTRY_COMMAND_NAME as bw, AXM_AI_REGISTRY_QUERY_NAME as bx, AXM_CORPORATE_BUSINESS_UNIT_ID as by, AXPDashboardDataSeeder as bz, resolveDelegatedAssistOptionString as c, automationCommandMiddleware as c$, JOB_DEFINITIONS_MOCK as c0, JOB_DEFINITION_CATEGORY_KEY_TO_ID as c1, JOB_LEVELS_MOCK as c2, LASER_PLUMBING_TENANT_ID as c3, LEAVE_REQUESTS_MOCK as c4, MAGFA_COMMERCE_STANDARD as c5, MAGFA_CONVERSATION_DASHBOARD as c6, MAGFA_TENANT_ID as c7, METADATA_CATEGORY_IDS as c8, METADATA_GENERAL_CATEGORY_REFS as c9, RESPONSIBILITIES_MOCK as cA, RESPONSIBILITY_CATEGORY_KEY_TO_ID as cB, SAFETYMINDER_BASIC as cC, SAFETYMINDER_ENTERPRISE as cD, SAFETYMINDER_PROFESSIONAL as cE, TAGS_MOCK as cF, TASKS as cG, TASK_STATUSES as cH, TASK_TEMPLATES as cI, TASK_TYPES as cJ, TEAMS_CATEGORY_MOCK as cK, TEAMS_MOCK as cL, TEAM_BUSINESS_UNITS_MOCK as cM, TEAM_CATEGORY_KEY_TO_ID as cN, TEAM_MEMBERS_MOCK as cO, TEAM_MEMBER_ROLES_MOCK as cP, TIMEPLICITY_TENANT_ID as cQ, TLA as cR, TOKENS as cS, TPC as cT, VISIBILITY_FILTER_BYPASS as cU, WORKFLOW_CATEGORIES as cV, WS as cW, activityCategoryMocks as cX, activityDefinitionEntityMock as cY, applyEntityDefinitionFirestoreSnapshot as cZ, attachmentsInterface as c_, METADATA_SYSTEM_CATEGORY_REFS as ca, MLC as cb, MOCK_CALENDAR_AUSTRALIA_ID as cc, MOCK_CALENDAR_INTERNATIONAL_GREGORIAN_ID as cd, MOCK_CALENDAR_IRAN_PERSIAN_ID as ce, MOCK_CALENDAR_NEW_ZEALAND_ID as cf, MOCK_DATA_SEED_VERSION as cg, MOCK_ENTITY_SEED_META_KEY as ch, OHR as ci, OWNERSHIP_FILTER_BYPASS as cj, PLATFORM_CONSOLE as ck, PLATFORM_TENANT_ID as cl, PM as cm, POSITIONS_CATEGORY_MOCK as cn, POSITIONS_MOCK as co, POSITION_ASSIGNMENTS_MOCK as cp, QCP as cq, QGEN as cr, QHW as cs, QOHR as ct, QPM as cu, QTLE as cv, QUESTIONNAIRE_CATEGORY_MOCK as cw, QUESTION_BANK_ITEM_CATEGORY_MOCK as cx, QWS as cy, RESPONSIBILITIES_CATEGORY_MOCK as cz, resolveOpenAiCompatibleTtsVoice as d, mergeQuickSearchIntoRequest as d$, automationMock as d0, avatarInterface as d1, axVersionDB as d2, axWorkflowExecutionDB as d3, axcPatchEmployeeActivePrimaryBusinessUnitRefsFromRows as d4, axcPatchEmployeeActivePrimaryPositionRefsFromRows as d5, axcPatchEmployeeManagerRefsFromRows as d6, axcResolveCommandRegistrySeedId as d7, axcResolveQueryRegistrySeedId as d8, axcResolveWidgetCatalogSeedId as d9, enrichWorkflowGraph as dA, entityDefDb as dB, entityValidationMiddleware as dC, finalizeActivityCategoryItemCounts as dD, findEmployeeById as dE, folderStorageMiddleware as dF, groupOrderItemCalculatorMiddleware as dG, historyMiddleware as dH, identifierCommitMiddleware as dI, imageInterface as dJ, inspectionOkXNaInterface as dK, loadMockPropertyDefinitions as dL, lockGuardMiddleware as dM, longTextAnswerInterface as dN, lookupInterface as dO, lookupResolverMiddleware as dP, mapInterface as dQ, meetingFilesMock as dR, meetingIds as dS, meetingMock as dT, meetingParticipantMock as dU, meetingRoleTypeMock as dV, meetingSessionMock as dW, meetingTimeSlotMock as dX, meetingTypeFileTemplateMock as dY, meetingTypeMock as dZ, mergeDetailRelationMiddleware as d_, bankCategory as da, buildEntityStorageQuickSearchFilter as db, buildWorkflowInstanceCartableDemoRows as dc, bypassAllFilters as dd, bypassOwnershipFilter as de, bypassVisibilityFilter as df, calendarMock as dg, calendarOccasionMock as dh, calendarOccasionSeedData as di, calendarOccasionTypeMockData as dj, checkboxInterface as dk, childCountMiddleware as dl, clearEntityDefinitionFirestoreCollections as dm, colorInterface as dn, computeDiff as dp, contactInterface as dq, createFileCastMiddleware as dr, createWidgetLayoutConfig as ds, createWorkflowDefinitionEntityMock as dt, dateInterface as du, dateTimeInterface as dv, descriptionInterface as dw, documentFolderSyncMiddleware as dx, emailInterface as dy, enrichCalendarOccasionForStorage as dz, axcSyncSingleEmployeeDenormalizedOrgFields as e, metadataCategoryMocks as e0, mockQuestionBankItemByName as e1, mockRoleDefinitions as e2, multipleChoiceInterface as e3, multipleSelectInterface as e4, normalizeAnyFileArrayForView as e5, normalizeSnapshotFileFieldsForView as e6, numberInterface as e7, parseEntityStorageInsertData as e8, parseEntityStorageQueryRequest as e9, titleInterface as eA, toUiRows as eB, toggleInterface as eC, tokenCategoryIds as eD, tokenCategoryMocks as eE, urlInterface as eF, versionInterface as eG, visibilityFilterMiddleware as eH, workflowDefinitionEntityMock as eI, workflowDefinitionIds as eJ, workflowDefinitionMock as eK, yesNoInterface as eL, participantIds as ea, passwordInterface as eb, personIdentifierTypeMock as ec, personIds as ed, personLegalIds as ee, personMock as ef, personNaturalIds as eg, phoneInterface as eh, primaryMiddleware as ei, provideMockPropertySetups as ej, qrcodeInterface as ek, questionBankItemMock as el, questionnaireMock as em, ratingInterface as en, richTextInterface as eo, scaleInterface as ep, selectInterface as eq, selectionListInterface as er, sexAtBirthInterface as es, signatureInterface as et, statusDefaultMiddleware as eu, tagInterface as ev, tenantMocks as ew, textAreaInterface as ex, textInterface as ey, timeDurationInterface as ez, ACTIVITY_CATEGORIES as f, ACTIVITY_CATEGORY_ID_BY_KEY as g, ACTIVITY_DEFINITIONS as h, AI_ASSIST_MOCK as i, AI_MODEL_MOCK as j, APPLICATIONS as k, APPLICATION_CATEGORY_IDS as l, mockUsers as m, APPLICATION_CATEGORY_MOCKS as n, AXCActivityCategorySeeder as o, AXCActivityDefinitionSeeder as p, AXCAiAssistSeeder as q, resolveDelegatedAssistOptionModel as r, AXCAiManagementMockModule as s, AXCAiModelSeeder as t, AXCAppTermDataSeeder as u, AXCAppVersionDataSeeder as v, AXCApplicationCategoryDataSeeder as w, AXCApplicationDataSeeder as x, AXCApplicationManagementMockModule as y, AXCAssessmentManagementMockModule as z };
|
|
90679
|
-
//# sourceMappingURL=acorex-connectivity-mock-acorex-connectivity-mock-
|
|
90707
|
+
//# sourceMappingURL=acorex-connectivity-mock-acorex-connectivity-mock-BK5apYT7.mjs.map
|