@dx-do/client 6.3.2 → 6.3.3

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/dist/index.esm.js CHANGED
@@ -45872,6 +45872,308 @@ var LogQuery;
45872
45872
  LogQuery.createLogQueryRequestBody = createLogQueryRequestBody;
45873
45873
  })(LogQuery || (LogQuery = {}));
45874
45874
 
45875
+ /**
45876
+ * One leaf match condition inside a maintenance target filter, e.g.
45877
+ * `{ field: "alarm_name", condition: "starts_with", value: "Rabbit" }`.
45878
+ */
45879
+ const MaintenanceFilterLeafSchema = z.looseObject({
45880
+ field: z.string().describe('Wire field to match, e.g. "agent", "type", "alarm_name", "name"'),
45881
+ fieldDescription: z
45882
+ .string()
45883
+ .optional()
45884
+ .describe('Human label for the field, e.g. "Agent", "Type", "Alert Name"'),
45885
+ condition: z
45886
+ .string()
45887
+ .describe('Match operator: "regex", "equals", "contains", "starts_with", "ends_with"'),
45888
+ value: z.string().describe('Value to match against the field'),
45889
+ });
45890
+ /**
45891
+ * A maintenance target filter — the nested `and(or(leaf…))` tree shared by
45892
+ * every `*Filter` field on a maintenance schedule (serviceFilter, agentFilter,
45893
+ * deviceFilter, groupFilter, metricPathFilter). Outer AND of inner ORs of leaves.
45894
+ */
45895
+ const MaintenanceFilterSchema = z.looseObject({
45896
+ and: z.looseObject({
45897
+ expressions: z
45898
+ .array(z.looseObject({
45899
+ or: z.looseObject({
45900
+ expressions: z.array(MaintenanceFilterLeafSchema),
45901
+ }),
45902
+ }))
45903
+ .describe('AND-ed groups; each group is an OR of leaf conditions'),
45904
+ }),
45905
+ });
45906
+ /**
45907
+ * Builds a single-leaf {@link MaintenanceFilter} (the common case: one match
45908
+ * condition wrapped in the required `and(or(…))` envelope). Pass more leaves to
45909
+ * OR them together within the single AND group.
45910
+ */
45911
+ function maintenanceFilter(...leaves) {
45912
+ return { and: { expressions: [{ or: { expressions: leaves } }] } };
45913
+ }
45914
+
45915
+ /** CI type of a maintenance target member. */
45916
+ const MaintenanceMemberTypeSchema = z
45917
+ .enum(['SERVICE', 'Agent', 'Device', 'Group', 'Interface', 'Application'])
45918
+ .describe('Configuration-item type of the member');
45919
+ /** Source product a maintenance member originates from. */
45920
+ const MaintenanceMemberSourceSchema = z
45921
+ .enum(['OI', 'APM', 'UIM', 'SPECTRUM', 'CAPM', 'CUSTOM', 'NFA', 'ADA'])
45922
+ .describe('Source product of the member');
45923
+ /**
45924
+ * An explicit maintenance target member (as opposed to a `*Filter`). For a
45925
+ * service this is `{ id: <service externalId>, name, type: "SERVICE",
45926
+ * source: "OI", parent: "Y" }`.
45927
+ */
45928
+ const MaintenanceMemberSchema = z.looseObject({
45929
+ id: z
45930
+ .string()
45931
+ .describe('Resource identifier; for services this is the externalId (SA:<cohort>:<uuid>)'),
45932
+ name: z.string().describe('Display name of the member'),
45933
+ type: MaintenanceMemberTypeSchema,
45934
+ source: MaintenanceMemberSourceSchema.optional(),
45935
+ parent: z
45936
+ .string()
45937
+ .optional()
45938
+ .describe('"Y" when this member is a parent/root (services)'),
45939
+ ciUniqueId: z.string().optional().describe('CI unique id, when applicable'),
45940
+ });
45941
+ /** A member to exclude from an otherwise-matched maintenance target set. */
45942
+ const MaintenanceExcludedMemberSchema = z.looseObject({
45943
+ id: z.string().describe('Excluded member id'),
45944
+ name: z.string().optional().describe('Excluded member name'),
45945
+ type: z.string().optional().describe('CI type of the excluded member'),
45946
+ });
45947
+
45948
+ /** Recurrence pattern code used in the **create** schedule body. */
45949
+ const RecurrencePattern = {
45950
+ Once: 1,
45951
+ Daily: 2,
45952
+ Weekly: 3,
45953
+ Monthly: 4,
45954
+ Yearly: 5,
45955
+ };
45956
+ /**
45957
+ * The `schedule` object of a maintenance create/preview request.
45958
+ *
45959
+ * Note the create-side encoding (differs from search/detail responses):
45960
+ * `recurrencePattern` is numeric (1–5), `startTime`/`endTime` are wall-clock
45961
+ * strings `"YYYY-M-D H:M:S"` interpreted in `timeZone`, and `duration` is minutes.
45962
+ */
45963
+ const MaintenanceScheduleSchema = z.looseObject({
45964
+ startTime: z
45965
+ .string()
45966
+ .describe('Wall-clock start "YYYY-M-D H:M:S" interpreted in timeZone, e.g. "2026-6-27 6:47:0"'),
45967
+ duration: z.number().describe('Window length in minutes'),
45968
+ endTime: z
45969
+ .string()
45970
+ .nullable()
45971
+ .optional()
45972
+ .describe('Wall-clock end; null/absent = run forever'),
45973
+ timeZone: z.string().describe('IANA timezone, e.g. "America/Los_Angeles"'),
45974
+ recurrencePattern: z
45975
+ .number()
45976
+ .int()
45977
+ .describe('1 Once · 2 Daily · 3 Weekly · 4 Monthly · 5 Yearly'),
45978
+ recurrencePeriod: z
45979
+ .number()
45980
+ .int()
45981
+ .optional()
45982
+ .describe('Repeat every N (daily: N days; monthly: N months)'),
45983
+ recurrenceDaysOfTheWeek: z
45984
+ .string()
45985
+ .optional()
45986
+ .describe('Weekly days, comma-separated 1..7 where 1=Sun..7=Sat, e.g. "2,3"'),
45987
+ recurrenceDayOfTheMonth: z
45988
+ .string()
45989
+ .optional()
45990
+ .describe('Monthly day-of-month (1..31) as a string'),
45991
+ recurrenceInstance: z
45992
+ .number()
45993
+ .int()
45994
+ .optional()
45995
+ .describe('Monthly ordinal week 1..5 (first..last) for "4th Tuesday" style'),
45996
+ });
45997
+
45998
+ /**
45999
+ * Unified request body for `POST /oi/v2/api/maintenance` (create). A single
46000
+ * endpoint covers all target types — the per-target CLI commands each populate
46001
+ * exactly one targeting mechanism (members, or one of the `*Filter`s).
46002
+ */
46003
+ const MaintenanceCreateRequestSchema = z.looseObject({
46004
+ name: z.string().describe('Schedule name; must be unique per tenant'),
46005
+ description: z.string().optional().describe('Free-text description'),
46006
+ schedule: MaintenanceScheduleSchema,
46007
+ // ----- targeting (combine as needed; commands set one) -----
46008
+ members: z
46009
+ .array(MaintenanceMemberSchema)
46010
+ .optional()
46011
+ .describe('Explicit target CIs (services use this, with externalId ids)'),
46012
+ excludedMembers: z
46013
+ .array(MaintenanceExcludedMemberSchema)
46014
+ .optional()
46015
+ .describe('CIs to exclude from an otherwise-matched set'),
46016
+ serviceFilter: MaintenanceFilterSchema.optional().describe('Filter-based service targeting'),
46017
+ agentFilter: MaintenanceFilterSchema.optional().describe('Agent targeting (regex on field "agent")'),
46018
+ deviceFilter: MaintenanceFilterSchema.optional().describe('Device/entity targeting'),
46019
+ groupFilter: MaintenanceFilterSchema.optional().describe('Group targeting'),
46020
+ metricPathFilter: MaintenanceFilterSchema.optional().describe('Raw-alarm targeting (on field "alarm_name")'),
46021
+ includeSubservices: z
46022
+ .boolean()
46023
+ .optional()
46024
+ .describe('Include child services of targeted services'),
46025
+ selectAllServices: z.boolean().optional(),
46026
+ selectAllAgents: z.boolean().optional(),
46027
+ selectAllGroups: z.boolean().optional(),
46028
+ selectAllDevices: z.boolean().optional(),
46029
+ // ----- behavior -----
46030
+ muteOldAlarms: z
46031
+ .boolean()
46032
+ .optional()
46033
+ .describe('Mute alarms that were already open when the window starts'),
46034
+ alarmsExitOnEnd: z
46035
+ .boolean()
46036
+ .optional()
46037
+ .describe('Clear alarm state when the window ends'),
46038
+ restrictSLOOnMaintenance: z
46039
+ .boolean()
46040
+ .optional()
46041
+ .describe('Exclude the window from SLO calculations'),
46042
+ forceStop: z.boolean().optional(),
46043
+ });
46044
+ /** Response from `POST /oi/v2/api/maintenance`. */
46045
+ const MaintenanceCreateResponseSchema = z.looseObject({
46046
+ message: z.string().describe('Confirmation message'),
46047
+ scheduleId: z.string().describe('UUID of the created schedule'),
46048
+ });
46049
+
46050
+ /** Request body for `POST /oi/v2/api/maintenance/delete?forceStop=…` (bulk). */
46051
+ const MaintenanceDeleteRequestSchema = z.looseObject({
46052
+ scheduleIds: z
46053
+ .array(z.string())
46054
+ .describe('Schedule ids to delete (bulk-capable)'),
46055
+ });
46056
+ /**
46057
+ * Response from the bulk delete endpoint (modeled loosely). Named with a
46058
+ * `BulkDelete` prefix to avoid clashing with the ASM client's generated
46059
+ * `MaintenanceDeleteResponse` in the flattened `@dx-do/client` barrel.
46060
+ */
46061
+ const MaintenanceBulkDeleteResponseSchema = z.looseObject({
46062
+ message: z.union([z.string(), z.array(z.string())]).optional(),
46063
+ status: z.string().optional(),
46064
+ });
46065
+
46066
+ /**
46067
+ * A single schedule from `GET /oi/v2/api/maintenance/{id}` (detail). Read-side
46068
+ * encoding: `recurrencePattern` numeric, `startTime` a wall-clock string with
46069
+ * `startTimeInMillis`/`endTimeInMillis` epoch companions, plus whichever
46070
+ * `*Filter`/`members` targeting it was created with.
46071
+ */
46072
+ const MaintenanceDetailSchema = z.looseObject({
46073
+ scheduleId: z.string(),
46074
+ name: z.string().nullable().optional().describe('null for a non-existent id (the GET echoes the id with null fields)'),
46075
+ description: z.string().nullable().optional(),
46076
+ status: z.string().optional().describe('e.g. "SCHEDULED"'),
46077
+ startTime: z.string().optional().describe('Wall-clock start, e.g. "2026-12-25 00:00:00.0"'),
46078
+ startTimeInMillis: z.number().optional(),
46079
+ endTimeInMillis: z.number().nullable().optional(),
46080
+ duration: z.number().optional().describe('Minutes'),
46081
+ timeZone: z.string().optional(),
46082
+ recurrencePattern: z
46083
+ .union([z.number(), z.string()])
46084
+ .optional()
46085
+ .describe('Numeric recurrence code on detail (1..5)'),
46086
+ recurrencePeriod: z.number().optional(),
46087
+ recurrenceDaysOfTheWeek: z.string().optional(),
46088
+ recurrenceDayOfTheMonth: z.string().optional(),
46089
+ recurrenceInstance: z.number().optional(),
46090
+ members: z.array(MaintenanceMemberSchema).optional(),
46091
+ excludedMembers: z.array(MaintenanceExcludedMemberSchema).optional(),
46092
+ serviceFilter: MaintenanceFilterSchema.nullable().optional(),
46093
+ agentFilter: MaintenanceFilterSchema.nullable().optional(),
46094
+ deviceFilter: MaintenanceFilterSchema.nullable().optional(),
46095
+ groupFilter: MaintenanceFilterSchema.nullable().optional(),
46096
+ metricPathFilter: MaintenanceFilterSchema.nullable().optional(),
46097
+ includeSubservices: z.boolean().optional(),
46098
+ muteOldAlarms: z.boolean().optional(),
46099
+ alarmsExitOnEnd: z.boolean().optional(),
46100
+ restrictSLOOnMaintenance: z.boolean().optional(),
46101
+ });
46102
+
46103
+ /**
46104
+ * Request body for `POST /oi/v2/api/maintenance/get-next-windows-preview` —
46105
+ * a (proposed or existing) schedule; the server returns its upcoming windows.
46106
+ */
46107
+ const MaintenancePreviewRequestSchema = z.looseObject({
46108
+ name: z.string().optional(),
46109
+ description: z.string().optional(),
46110
+ schedule: MaintenanceScheduleSchema,
46111
+ });
46112
+ /**
46113
+ * Response from `get-next-windows-preview`: `startTime` is an array of upcoming
46114
+ * window-start wall-clock strings ("yyyy-MM-dd HH:mm:ss.S") in the schedule's
46115
+ * timezone; each window runs for `schedule.duration` minutes.
46116
+ */
46117
+ const MaintenancePreviewResponseSchema = z.looseObject({
46118
+ scheduleId: z.string().nullable().optional(),
46119
+ startTime: z
46120
+ .array(z.string())
46121
+ .optional()
46122
+ .describe('Upcoming window start times (wall-clock, in the schedule timezone)'),
46123
+ });
46124
+
46125
+ /** Request body for `POST /oi/v2/api/maintenance/_search` (list). */
46126
+ const MaintenanceSearchRequestSchema = z.looseObject({
46127
+ pageNumber: z.number().int().describe('Zero-based page index'),
46128
+ pageSize: z.number().int().describe('Page size'),
46129
+ sortColDir: z
46130
+ .array(z.string())
46131
+ .optional()
46132
+ .describe('Sort spec, e.g. ["creationDate;desc"]'),
46133
+ includeCompletedSchedules: z
46134
+ .boolean()
46135
+ .optional()
46136
+ .describe('Include schedules whose windows have all passed'),
46137
+ customFilter: z.array(z.unknown()).optional().describe('Optional server-side filters'),
46138
+ });
46139
+ /**
46140
+ * One schedule as summarized by `_search`. Note the response-side encoding:
46141
+ * `recurrencePattern` is a label string ("Daily"), `recurrencePattern_1` the
46142
+ * numeric code, and times are epoch ms (contrast the create body).
46143
+ */
46144
+ const MaintenanceSummarySchema = z.looseObject({
46145
+ scheduleId: z.string(),
46146
+ scheduleName: z.string().describe('Schedule name (may be padded with spaces)'),
46147
+ description: z.string().nullable().optional(),
46148
+ startTime: z.number().optional().describe('Start, epoch ms'),
46149
+ duration: z.number().optional().describe('Window length, minutes'),
46150
+ recurrencePattern: z.string().optional().describe('Recurrence label, e.g. "Daily"'),
46151
+ recurrencePattern_1: z.number().optional().describe('Numeric recurrence code (1..5)'),
46152
+ recurrencePeriod: z.number().optional(),
46153
+ timezone: z.string().optional(),
46154
+ status: z.string().optional().describe('e.g. "SCHEDULED"'),
46155
+ createdBy: z.string().nullable().optional(),
46156
+ creationDate: z.number().optional(),
46157
+ lastUpdatedBy: z.string().nullable().optional(),
46158
+ lastUpdateDate: z.number().optional(),
46159
+ windowTime: z
46160
+ .looseObject({
46161
+ startTime: z.number().optional(),
46162
+ endTime: z.number().optional(),
46163
+ })
46164
+ .optional()
46165
+ .describe('Next/active window bounds, epoch ms'),
46166
+ deleted: z.string().optional().describe('"Y"/"N"'),
46167
+ });
46168
+ /** Response from `POST /oi/v2/api/maintenance/_search`. */
46169
+ const MaintenanceSearchResponseSchema = z.looseObject({
46170
+ schedules: z.array(MaintenanceSummarySchema).describe('The matched schedules'),
46171
+ totalCount: z.number().optional(),
46172
+ scheduleCount: z.number().optional(),
46173
+ pageNumber: z.number().optional(),
46174
+ pageSize: z.number().optional(),
46175
+ });
46176
+
45875
46177
  var NASS;
45876
46178
  (function (NASS) {
45877
46179
  function getAgentMetricCountQueryBody(agent) {
@@ -66989,46 +67291,55 @@ const coerce$1 = (version, options) => {
66989
67291
  };
66990
67292
  var coerce_1 = coerce$1;
66991
67293
 
66992
- class LRUCache {
66993
- constructor () {
66994
- this.max = 1000;
66995
- this.map = new Map();
66996
- }
67294
+ var lrucache;
67295
+ var hasRequiredLrucache;
66997
67296
 
66998
- get (key) {
66999
- const value = this.map.get(key);
67000
- if (value === undefined) {
67001
- return undefined
67002
- } else {
67003
- // Remove the key from the map and add it to the end
67004
- this.map.delete(key);
67005
- this.map.set(key, value);
67006
- return value
67007
- }
67008
- }
67297
+ function requireLrucache () {
67298
+ if (hasRequiredLrucache) return lrucache;
67299
+ hasRequiredLrucache = 1;
67009
67300
 
67010
- delete (key) {
67011
- return this.map.delete(key)
67012
- }
67301
+ class LRUCache {
67302
+ constructor () {
67303
+ this.max = 1000;
67304
+ this.map = new Map();
67305
+ }
67013
67306
 
67014
- set (key, value) {
67015
- const deleted = this.delete(key);
67307
+ get (key) {
67308
+ const value = this.map.get(key);
67309
+ if (value === undefined) {
67310
+ return undefined
67311
+ } else {
67312
+ // Remove the key from the map and add it to the end
67313
+ this.map.delete(key);
67314
+ this.map.set(key, value);
67315
+ return value
67316
+ }
67317
+ }
67016
67318
 
67017
- if (!deleted && value !== undefined) {
67018
- // If cache is full, delete the least recently used item
67019
- if (this.map.size >= this.max) {
67020
- const firstKey = this.map.keys().next().value;
67021
- this.delete(firstKey);
67022
- }
67319
+ delete (key) {
67320
+ return this.map.delete(key)
67321
+ }
67023
67322
 
67024
- this.map.set(key, value);
67025
- }
67323
+ set (key, value) {
67324
+ const deleted = this.delete(key);
67026
67325
 
67027
- return this
67028
- }
67029
- }
67326
+ if (!deleted && value !== undefined) {
67327
+ // If cache is full, delete the least recently used item
67328
+ if (this.map.size >= this.max) {
67329
+ const firstKey = this.map.keys().next().value;
67330
+ this.delete(firstKey);
67331
+ }
67332
+
67333
+ this.map.set(key, value);
67334
+ }
67030
67335
 
67031
- var lrucache = LRUCache;
67336
+ return this
67337
+ }
67338
+ }
67339
+
67340
+ lrucache = LRUCache;
67341
+ return lrucache;
67342
+ }
67032
67343
 
67033
67344
  var range;
67034
67345
  var hasRequiredRange;
@@ -67251,7 +67562,7 @@ function requireRange () {
67251
67562
 
67252
67563
  range = Range;
67253
67564
 
67254
- const LRU = lrucache;
67565
+ const LRU = requireLrucache();
67255
67566
  const cache = new LRU();
67256
67567
 
67257
67568
  const parseOptions = parseOptions_1;
@@ -74313,6 +74624,97 @@ class LogsService {
74313
74624
  }
74314
74625
  }
74315
74626
 
74627
+ /**
74628
+ * Service for DXO2 maintenance windows (schedules) under
74629
+ * `oi/v2/api/maintenance/*`. A maintenance window suppresses alarms/SLOs for
74630
+ * its targets (services, agents, devices/entities, or raw alarms) over a fixed
74631
+ * or recurring schedule. Backs the `maintenance` CLI command group.
74632
+ *
74633
+ * Uses `oiPost`/`oiGet` (OI namespace). Requests are validated with `parse`
74634
+ * (throws); responses with `safeParse` (warn + return raw on mismatch).
74635
+ */
74636
+ class MaintenanceService {
74637
+ dxSaasService;
74638
+ log;
74639
+ constructor(dxSaasService, log) {
74640
+ this.dxSaasService = dxSaasService;
74641
+ this.log = log;
74642
+ }
74643
+ /** Lists maintenance schedules via `POST …/_search`. Defaults to one large page, newest first. */
74644
+ async search(request) {
74645
+ const body = {
74646
+ pageNumber: 0,
74647
+ pageSize: 1000,
74648
+ sortColDir: ['creationDate;desc'],
74649
+ includeCompletedSchedules: false,
74650
+ customFilter: [],
74651
+ ...request,
74652
+ };
74653
+ const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance/_search', body);
74654
+ const result = MaintenanceSearchResponseSchema.safeParse(raw);
74655
+ if (!result.success) {
74656
+ this.log.warn('MaintenanceSearchResponse validation warning:', result.error.message);
74657
+ }
74658
+ return raw;
74659
+ }
74660
+ /** Retrieves a single schedule via `GET …/{id}`. */
74661
+ async get(scheduleId) {
74662
+ const raw = await this.dxSaasService.oiGet(`oi/v2/api/maintenance/${scheduleId}`);
74663
+ const result = MaintenanceDetailSchema.safeParse(raw);
74664
+ if (!result.success) {
74665
+ this.log.warn('MaintenanceDetail validation warning:', result.error.message);
74666
+ }
74667
+ return raw;
74668
+ }
74669
+ /**
74670
+ * Previews the upcoming windows for a (proposed or existing) schedule via
74671
+ * `POST …/get-next-windows-preview`.
74672
+ *
74673
+ * @throws ZodError if the request fails schema validation.
74674
+ */
74675
+ async getNextWindows(request) {
74676
+ MaintenancePreviewRequestSchema.parse(request);
74677
+ return this.dxSaasService.oiPost('oi/v2/api/maintenance/get-next-windows-preview', request);
74678
+ }
74679
+ /**
74680
+ * Checks a schedule name via `GET …/validateScheduleName`. Returns the
74681
+ * server's bare boolean (semantics confirmed empirically by the caller).
74682
+ */
74683
+ async validateName(name) {
74684
+ const raw = await this.dxSaasService.oiGet('oi/v2/api/maintenance/validateScheduleName', { scheduleName: name });
74685
+ const result = z.boolean().safeParse(raw);
74686
+ if (!result.success) {
74687
+ this.log.warn('validateScheduleName returned a non-boolean:', JSON.stringify(raw));
74688
+ }
74689
+ return Boolean(raw);
74690
+ }
74691
+ /**
74692
+ * Creates a maintenance schedule via `POST …`.
74693
+ *
74694
+ * @throws ZodError if the request fails schema validation.
74695
+ */
74696
+ async create(body) {
74697
+ MaintenanceCreateRequestSchema.parse(body);
74698
+ const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance', body);
74699
+ const result = MaintenanceCreateResponseSchema.safeParse(raw);
74700
+ if (!result.success) {
74701
+ this.log.warn('MaintenanceCreateResponse validation warning:', result.error.message);
74702
+ }
74703
+ return raw;
74704
+ }
74705
+ /**
74706
+ * Deletes one or more schedules via `POST …/delete?forceStop=…` (bulk).
74707
+ */
74708
+ async delete(scheduleIds, options = {}) {
74709
+ const raw = await this.dxSaasService.oiPost('oi/v2/api/maintenance/delete', { scheduleIds }, { forceStop: options.forceStop ?? true });
74710
+ const result = MaintenanceBulkDeleteResponseSchema.safeParse(raw);
74711
+ if (!result.success) {
74712
+ this.log.warn('MaintenanceBulkDeleteResponse validation warning:', result.error.message);
74713
+ }
74714
+ return raw;
74715
+ }
74716
+ }
74717
+
74316
74718
  /**
74317
74719
  * Service for management modules (and their calculators): list, create, update,
74318
74720
  * copy, import, delete, and query by ID.
@@ -78306,6 +78708,7 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
78306
78708
  dxInventoryService: new InventoryService(dxSaaSService, dxNASSService, dxTASService, log),
78307
78709
  dxJSExtensionService: new JsExtensionService(dxSaaSService),
78308
78710
  dxLogsService: new LogsService(dxSaaSService),
78711
+ dxMaintenanceService: new MaintenanceService(dxSaaSService, log),
78309
78712
  dxManagementModuleService: dxManagementModuleService,
78310
78713
  dxMetricBatchService: new MetricBatchService(dxSaaSService),
78311
78714
  dxMetricGroupingService: new MetricGroupingService(dxSaaSService, dxManagementModuleService),
@@ -78331,5 +78734,5 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
78331
78734
  };
78332
78735
  }
78333
78736
 
78334
- export { AXAActivities, AccService, AgentService, AgentTrace, AlarmEnrichment, AlarmEnrichmentFilter, AlarmService, AlertDefinitionResponse, AlertResponse, AlertResponseV2, AlertService, AlignmentSchema, ApmUniverseService, AsmService, AttributeExpressionComparatorSchema, AttributeExpressionOperatorSchema, AttributeExpressionSchema, AttributeFilterOperator, AttributeNameAllSpecifierSchema, AttributeNameAndSpecifierSchema, AttributeNameAnyNumericSpecifierSchema, AttributeNameAttributeSpecifierSchema, AttributeNameChildrenSpecifierSchema, AttributeNameExactSpecifierSchema, AttributeNameFolderSpecifierSchema, AttributeNameNoneSpecifierSchema, AttributeNameNotSpecifierSchema, AttributeNameOperatorSpecifierSchema, AttributeNameOrSpecifierSchema, AttributeNameRegExSpecifierSchema, AttributeNameSpecifierSchema, AttributeNameTypeSpecifierSchema, AttributeService, AttributeValueAsFieldSchema, AuthorizationService, AxaService, BlobAllFilterSchema, BlobAsyncCommandSchema, BlobAsyncDeleteSchemaCommandSchema, BlobAsyncResultEntrySchema, BlobAsyncResultRequestSchema, BlobAsyncResultResponseSchema, BlobAsyncResultStateSchema, BlobAttributeExpressionSchema, BlobAttributeFilterSchema, BlobAttributesSchema, BlobBulkDeleteEntrySchema, BlobBulkDeleteRequestSchema, BlobBulkDeleteResponseSchema, BlobBulkItemSchema, BlobBulkStoreRequestSchema, BlobBulkStoreResponseSchema, BlobDeleteParamsSchema, BlobDeleteResponseSchema, BlobDeleteSchemaResultSchema, BlobExecuteAsyncRequestSchema, BlobExecuteAsyncResponseSchema, BlobFetchParamsSchema, BlobFileEnvelopeSchema, BlobFilterSchema, BlobMetadataSchema, BlobQueryRequestSchema, BlobQueryResponseSchema, BlobSchemaItemSchema, BlobSchemaListRequestSchema, BlobSchemaListResponseSchema, BlobService, BlobStoreParamsSchema, BlobStoreResponseSchema, CalendarIntervalSchema, ChannelService, DEFAULT_EXPERIENCE_REQUEST_BODY, DXChannel, DashboardPermissionsUpdateRequest, DashboardSearch, DashboardService, DataStoreAuditService, DataStoreAuthViewsService, DataStoreBlobStorageService, DataStoreFeaturesService, DataStoreMetricsMetadataService, DataStoreNASSQLService, DataStoreNASSService, DataStoreStatesService, DataStoreTASService, DataStoreTokensService, DxSaasService, DxoiService, EdgeNumericIdSchema, EventService, ExperienceService, FillModeSchema, FilterOperation, FolderNameAllSpecifierSchema, FolderNameAndSpecifierSchema, FolderNameChildrenSpecifierSchema, FolderNameExactSpecifierSchema, FolderNameNoneSpecifierSchema, FolderNameNotSpecifierSchema, FolderNameOrSpecifierSchema, FolderNameRegExSpecifierSchema, FolderNameSpecifierSchema, GraphResponse, GraphService, Inventory, InventoryAttributes, InventoryService, JoinTypeSchema, JsExtensionService, LogIngest, LogQuery, LogsService, METRIC_TYPE_ENUM, METRIC_TYPE_ENUM_NAMES, METRIC_TYPE_REGION, MServe, ManagementModuleIdSchema, ManagementModuleService, MatchType, MetadataMetricQueryResponseV2Schema, MetadataMetricQuerySchema, MetricAttributeSchema, MetricBatchService, MetricFolderSchema, MetricGroupingService, MetricRegisterRequestSchema, MetricRegisterResponseSchema, MetricRegisterSchema, MetricRegisterSourceSchema, MetricTypeEnumNameSchema, NASS, NASSService, NassDatapointSchema, NassExtensionDatapointSchema, NassRegularDatapointSchema, NassStoreRequestSchema, NassStoreResponseSchema, NassValueTypeSchema, NotificationService, NumericOperatorSchema, O2NotificationService, O2UniverseService, OIAlarm, OIService, OIUsersV2, OperatorSchema, PerspectiveService, PlatformAlertService, PlatformFilters, PlatformManagementModuleService, PlatformMetricGroupingService, QuantileMethodSchema, QueryAllSpecifierSchema, QueryAndSpecifierSchema, QueryAttributeExpressionSchema, QueryAttributeSpecifierSchema, QueryColumnTypeSpecSchema, QueryFilterPredicateSpecSchema, QueryFunctionSpecSchema, QueryHintForceRangeSchema, QueryHintSchema, QueryIdSpecifierSchema, QueryMetricGroupSpecifierSchema, QueryMetricIdSchema, QueryNoneSpecifierSchema, QueryNotSpecifierSchema, QueryOrSpecifierSchema, QueryRangeSpecSchema, QueryRequestSchema, QueryResultSchema, QuerySpecSpecifierSchema, QuerySpecifierSchema, SLIService, SQLService, ServiceExport, ServiceFilterSpecifierSchema, ServiceService, ServiceTransform, SessionService, SimpleHTTPError, SituationLifecycle, SituationService, Situations, SliFilterSchema, SliGroupSchema, SliSaveRequestSchema, SliSaveResponseSchema, SliSearchRequestSchema, SliSearchResponseSchema, SourceNameAllSpecifierSchema, SourceNameAndSpecifierSchema, SourceNameExactSpecifierSchema, SourceNameNoneSpecifierSchema, SourceNameNotSpecifierSchema, SourceNameOrSpecifierSchema, SourceNamePartOperatorSpecifierSchema, SourceNameRegExSpecifierSchema, SourceNameSpecifierSchema, TAS, TASGraph, TASService, TasAddFlowsFilterSchema, TasAddTransitioningEdgesFilterSchema, TasAddWireContextFilterSchema, TasAddWiresFilterSchema, TasAllFilterSchema, TasAnalyticBaseSchema, TasAnalyticResultSchema, TasAndFilterSchema, TasAttributeAlertStatisticsSchema, TasAttributeFilterModeSchema, TasAttributeFilterSchema, TasAttributeNameSchema, TasAttributeTypeSchema, TasCollectAttributeNamesFilterSchema, TasCollectAttributeNamesResultSchema, TasCollectAttributeResultSchema, TasCollectAttributesFilterSchema, TasCollectCardInfoFilterSchema, TasCollectCardInfoResultSchema, TasCollectCardInfoTierSchema, TasCollectCountsFilterSchema, TasCollectCountsResultSchema, TasCollectExperienceAttributesFilterSchema, TasCollectExperienceSelectorSchema, TasCollectGroupingInfoFilterSchema, TasCollectGroupingInfoResultSchema, TasCollectVertexIdFilterSchema, TasCoverageFilterSchema, TasEdgeSchema, TasEmptyFilterSchema, TasExternalIdSchema, TasFilterSchema, TasFollowPathFilterSchema, TasFollowPathFlowFilterSchema, TasFollowPathTypeSchema, TasGraphSchema, TasGroupingAlertStatisticsSchema, TasGroupingInfoSchema, TasGroupingItemSchema, TasJoinFilterSchema, TasJoinTypeSchema, TasLayerFilterSchema, TasLegacyFilterSchema, TasLuceneFilterSchema, TasNotFilterSchema, TasOrFilterSchema, TasOrderSchema, TasProjectionFilterSchema, TasQuerySchema, TasServiceFilterSchema, TasStatusFilterSchema, TasStoreChangeSchema, TasStoreGraphInputSchema, TasStoreGraphResponseSchema, TasTakeEdgesFilterSchema, TasTakeFlowsFilterSchema, TasTakeVerticesFilterSchema, TasTraverseFilterSchema, TasVariableFilterSchema, TasVariableSchema, TasVertexIdFilterSchema, TasVertexSchema, TasViewSchema, Trace, TraversalEdgeFilterSchema, TraversalVertexFilterSchema, TraverseCollectSchema, TraverseDirectionSchema, TraverseSchema, VertexMappingConfigurationModule, VertexService, VertexStateExternalIdSchema, VertexStateNumericIdSchema, VertexStateSchema, VertexStatusChanges, ags, agsresponse, apiTokenCreate, apiTokenDelete, apiTokenGet, apiTokenList, apiTokenUpdate, checkGet, composeMetricTypeBits, contactActivate, contactDelete, contactTestSend, contactsBlockDelete, contactsBlockPut, contactsConfirm, contactsCreate, contactsGet, contactsGetDetail, contactsReplaceNotificationsWith, contactsRequestConfirmationCode, contactsUpdate, convertLegacyConfiguration, createPostmanRequest, createServiceMonolith, decodeMetricTypeBits, escapeRegExp, example, excludedAttributes, folderAccessGet, folderDelete, folderGet, folderPost, folderUpdate, foldersList, getDataStoreSchema, getUserTokenSub, getUserTokenTid, getVertexAttributeValue, getVertexAttributeValueOrNull, hasVertexAttribute, inventorizePreview, inventorizeResponse, inventorySearchRequestBodyExample, inventorySearchResponseBody, isDataStoreSchemaType, isTenantToken, isUserToken, listDataStoreSchemaOps, locationsCreate, locationsDelete, locationsGet, locationsGetAll, locationsGetByType, locationsLeafGetFilter, locationsPost, logGet, logGetEvent, maintenanceDelete, maintenanceDeleteWindows, maintenanceGet, maintenanceGetDetail, maintenanceGetWindows, maintenanceGetWindowsDetail, maintenanceUpdateWindowsDetail, maintenancesCreate, maintenancesImmediateDelete, maintenancesImmediatePut, maintenancesPostWindows, maintenancesUpdate, messageGet, messagesList, monitorActivate, monitorCreate, monitorDeactivate, monitorDelete, monitorGet, monitorGetAll, monitorUpdate, oauthClientTokensCreate, oauthClientTokensDelete, oauthClientTokensGet, oauthClientTokensList, oauthClientTokensUpdate, oauthCreateToken, oauthGetRefreshTokenList, oauthGetTokenList, oauthRefreshTokenDeleteId, oauthTokenCognateDelete, oauthTokenCognateDeleteCurrent, oauthTokenDelete, oauthTokenDeleteCurrent, parseFilter, sampleServiceDetailRequestBody, searchUniverse, serviceDetailResponseBody, settingsGet, settingsGetDetail, settingsUpdate, stationDelete, stationsAgentType, stationsCreate, stationsDeleteMaintenance, stationsGet, stationsGetAgents, stationsLatest, stationsList, stationsOnpremiseConnected, stationsOnpremiseConnectedAll, stationsOnpremiseList, stationsPutMaintenance, stationsUpdate, statistic, summarizeDataStoreSchema, tagsGetAll, timezonesList, toSliSaveRequest, userBlockDelete, userBlockPut, userDelete, userGet, userLockDelete, userPut, userSubaccountsGet, userSubaccountsPost, verifyAndDumpLegacyConfiguration, verifyAndDumpVersion3Configuration, verifyAndDumpVersion4Configuration, vertexMatchesFilters };
78737
+ export { AXAActivities, AccService, AgentService, AgentTrace, AlarmEnrichment, AlarmEnrichmentFilter, AlarmService, AlertDefinitionResponse, AlertResponse, AlertResponseV2, AlertService, AlignmentSchema, ApmUniverseService, AsmService, AttributeExpressionComparatorSchema, AttributeExpressionOperatorSchema, AttributeExpressionSchema, AttributeFilterOperator, AttributeNameAllSpecifierSchema, AttributeNameAndSpecifierSchema, AttributeNameAnyNumericSpecifierSchema, AttributeNameAttributeSpecifierSchema, AttributeNameChildrenSpecifierSchema, AttributeNameExactSpecifierSchema, AttributeNameFolderSpecifierSchema, AttributeNameNoneSpecifierSchema, AttributeNameNotSpecifierSchema, AttributeNameOperatorSpecifierSchema, AttributeNameOrSpecifierSchema, AttributeNameRegExSpecifierSchema, AttributeNameSpecifierSchema, AttributeNameTypeSpecifierSchema, AttributeService, AttributeValueAsFieldSchema, AuthorizationService, AxaService, BlobAllFilterSchema, BlobAsyncCommandSchema, BlobAsyncDeleteSchemaCommandSchema, BlobAsyncResultEntrySchema, BlobAsyncResultRequestSchema, BlobAsyncResultResponseSchema, BlobAsyncResultStateSchema, BlobAttributeExpressionSchema, BlobAttributeFilterSchema, BlobAttributesSchema, BlobBulkDeleteEntrySchema, BlobBulkDeleteRequestSchema, BlobBulkDeleteResponseSchema, BlobBulkItemSchema, BlobBulkStoreRequestSchema, BlobBulkStoreResponseSchema, BlobDeleteParamsSchema, BlobDeleteResponseSchema, BlobDeleteSchemaResultSchema, BlobExecuteAsyncRequestSchema, BlobExecuteAsyncResponseSchema, BlobFetchParamsSchema, BlobFileEnvelopeSchema, BlobFilterSchema, BlobMetadataSchema, BlobQueryRequestSchema, BlobQueryResponseSchema, BlobSchemaItemSchema, BlobSchemaListRequestSchema, BlobSchemaListResponseSchema, BlobService, BlobStoreParamsSchema, BlobStoreResponseSchema, CalendarIntervalSchema, ChannelService, DEFAULT_EXPERIENCE_REQUEST_BODY, DXChannel, DashboardPermissionsUpdateRequest, DashboardSearch, DashboardService, DataStoreAuditService, DataStoreAuthViewsService, DataStoreBlobStorageService, DataStoreFeaturesService, DataStoreMetricsMetadataService, DataStoreNASSQLService, DataStoreNASSService, DataStoreStatesService, DataStoreTASService, DataStoreTokensService, DxSaasService, DxoiService, EdgeNumericIdSchema, EventService, ExperienceService, FillModeSchema, FilterOperation, FolderNameAllSpecifierSchema, FolderNameAndSpecifierSchema, FolderNameChildrenSpecifierSchema, FolderNameExactSpecifierSchema, FolderNameNoneSpecifierSchema, FolderNameNotSpecifierSchema, FolderNameOrSpecifierSchema, FolderNameRegExSpecifierSchema, FolderNameSpecifierSchema, GraphResponse, GraphService, Inventory, InventoryAttributes, InventoryService, JoinTypeSchema, JsExtensionService, LogIngest, LogQuery, LogsService, METRIC_TYPE_ENUM, METRIC_TYPE_ENUM_NAMES, METRIC_TYPE_REGION, MServe, MaintenanceBulkDeleteResponseSchema, MaintenanceCreateRequestSchema, MaintenanceCreateResponseSchema, MaintenanceDeleteRequestSchema, MaintenanceDetailSchema, MaintenanceExcludedMemberSchema, MaintenanceFilterLeafSchema, MaintenanceFilterSchema, MaintenanceMemberSchema, MaintenanceMemberSourceSchema, MaintenanceMemberTypeSchema, MaintenancePreviewRequestSchema, MaintenancePreviewResponseSchema, MaintenanceScheduleSchema, MaintenanceSearchRequestSchema, MaintenanceSearchResponseSchema, MaintenanceService, MaintenanceSummarySchema, ManagementModuleIdSchema, ManagementModuleService, MatchType, MetadataMetricQueryResponseV2Schema, MetadataMetricQuerySchema, MetricAttributeSchema, MetricBatchService, MetricFolderSchema, MetricGroupingService, MetricRegisterRequestSchema, MetricRegisterResponseSchema, MetricRegisterSchema, MetricRegisterSourceSchema, MetricTypeEnumNameSchema, NASS, NASSService, NassDatapointSchema, NassExtensionDatapointSchema, NassRegularDatapointSchema, NassStoreRequestSchema, NassStoreResponseSchema, NassValueTypeSchema, NotificationService, NumericOperatorSchema, O2NotificationService, O2UniverseService, OIAlarm, OIService, OIUsersV2, OperatorSchema, PerspectiveService, PlatformAlertService, PlatformFilters, PlatformManagementModuleService, PlatformMetricGroupingService, QuantileMethodSchema, QueryAllSpecifierSchema, QueryAndSpecifierSchema, QueryAttributeExpressionSchema, QueryAttributeSpecifierSchema, QueryColumnTypeSpecSchema, QueryFilterPredicateSpecSchema, QueryFunctionSpecSchema, QueryHintForceRangeSchema, QueryHintSchema, QueryIdSpecifierSchema, QueryMetricGroupSpecifierSchema, QueryMetricIdSchema, QueryNoneSpecifierSchema, QueryNotSpecifierSchema, QueryOrSpecifierSchema, QueryRangeSpecSchema, QueryRequestSchema, QueryResultSchema, QuerySpecSpecifierSchema, QuerySpecifierSchema, RecurrencePattern, SLIService, SQLService, ServiceExport, ServiceFilterSpecifierSchema, ServiceService, ServiceTransform, SessionService, SimpleHTTPError, SituationLifecycle, SituationService, Situations, SliFilterSchema, SliGroupSchema, SliSaveRequestSchema, SliSaveResponseSchema, SliSearchRequestSchema, SliSearchResponseSchema, SourceNameAllSpecifierSchema, SourceNameAndSpecifierSchema, SourceNameExactSpecifierSchema, SourceNameNoneSpecifierSchema, SourceNameNotSpecifierSchema, SourceNameOrSpecifierSchema, SourceNamePartOperatorSpecifierSchema, SourceNameRegExSpecifierSchema, SourceNameSpecifierSchema, TAS, TASGraph, TASService, TasAddFlowsFilterSchema, TasAddTransitioningEdgesFilterSchema, TasAddWireContextFilterSchema, TasAddWiresFilterSchema, TasAllFilterSchema, TasAnalyticBaseSchema, TasAnalyticResultSchema, TasAndFilterSchema, TasAttributeAlertStatisticsSchema, TasAttributeFilterModeSchema, TasAttributeFilterSchema, TasAttributeNameSchema, TasAttributeTypeSchema, TasCollectAttributeNamesFilterSchema, TasCollectAttributeNamesResultSchema, TasCollectAttributeResultSchema, TasCollectAttributesFilterSchema, TasCollectCardInfoFilterSchema, TasCollectCardInfoResultSchema, TasCollectCardInfoTierSchema, TasCollectCountsFilterSchema, TasCollectCountsResultSchema, TasCollectExperienceAttributesFilterSchema, TasCollectExperienceSelectorSchema, TasCollectGroupingInfoFilterSchema, TasCollectGroupingInfoResultSchema, TasCollectVertexIdFilterSchema, TasCoverageFilterSchema, TasEdgeSchema, TasEmptyFilterSchema, TasExternalIdSchema, TasFilterSchema, TasFollowPathFilterSchema, TasFollowPathFlowFilterSchema, TasFollowPathTypeSchema, TasGraphSchema, TasGroupingAlertStatisticsSchema, TasGroupingInfoSchema, TasGroupingItemSchema, TasJoinFilterSchema, TasJoinTypeSchema, TasLayerFilterSchema, TasLegacyFilterSchema, TasLuceneFilterSchema, TasNotFilterSchema, TasOrFilterSchema, TasOrderSchema, TasProjectionFilterSchema, TasQuerySchema, TasServiceFilterSchema, TasStatusFilterSchema, TasStoreChangeSchema, TasStoreGraphInputSchema, TasStoreGraphResponseSchema, TasTakeEdgesFilterSchema, TasTakeFlowsFilterSchema, TasTakeVerticesFilterSchema, TasTraverseFilterSchema, TasVariableFilterSchema, TasVariableSchema, TasVertexIdFilterSchema, TasVertexSchema, TasViewSchema, Trace, TraversalEdgeFilterSchema, TraversalVertexFilterSchema, TraverseCollectSchema, TraverseDirectionSchema, TraverseSchema, VertexMappingConfigurationModule, VertexService, VertexStateExternalIdSchema, VertexStateNumericIdSchema, VertexStateSchema, VertexStatusChanges, ags, agsresponse, apiTokenCreate, apiTokenDelete, apiTokenGet, apiTokenList, apiTokenUpdate, checkGet, composeMetricTypeBits, contactActivate, contactDelete, contactTestSend, contactsBlockDelete, contactsBlockPut, contactsConfirm, contactsCreate, contactsGet, contactsGetDetail, contactsReplaceNotificationsWith, contactsRequestConfirmationCode, contactsUpdate, convertLegacyConfiguration, createPostmanRequest, createServiceMonolith, decodeMetricTypeBits, escapeRegExp, example, excludedAttributes, folderAccessGet, folderDelete, folderGet, folderPost, folderUpdate, foldersList, getDataStoreSchema, getUserTokenSub, getUserTokenTid, getVertexAttributeValue, getVertexAttributeValueOrNull, hasVertexAttribute, inventorizePreview, inventorizeResponse, inventorySearchRequestBodyExample, inventorySearchResponseBody, isDataStoreSchemaType, isTenantToken, isUserToken, listDataStoreSchemaOps, locationsCreate, locationsDelete, locationsGet, locationsGetAll, locationsGetByType, locationsLeafGetFilter, locationsPost, logGet, logGetEvent, maintenanceDelete, maintenanceDeleteWindows, maintenanceFilter, maintenanceGet, maintenanceGetDetail, maintenanceGetWindows, maintenanceGetWindowsDetail, maintenanceUpdateWindowsDetail, maintenancesCreate, maintenancesImmediateDelete, maintenancesImmediatePut, maintenancesPostWindows, maintenancesUpdate, messageGet, messagesList, monitorActivate, monitorCreate, monitorDeactivate, monitorDelete, monitorGet, monitorGetAll, monitorUpdate, oauthClientTokensCreate, oauthClientTokensDelete, oauthClientTokensGet, oauthClientTokensList, oauthClientTokensUpdate, oauthCreateToken, oauthGetRefreshTokenList, oauthGetTokenList, oauthRefreshTokenDeleteId, oauthTokenCognateDelete, oauthTokenCognateDeleteCurrent, oauthTokenDelete, oauthTokenDeleteCurrent, parseFilter, sampleServiceDetailRequestBody, searchUniverse, serviceDetailResponseBody, settingsGet, settingsGetDetail, settingsUpdate, stationDelete, stationsAgentType, stationsCreate, stationsDeleteMaintenance, stationsGet, stationsGetAgents, stationsLatest, stationsList, stationsOnpremiseConnected, stationsOnpremiseConnectedAll, stationsOnpremiseList, stationsPutMaintenance, stationsUpdate, statistic, summarizeDataStoreSchema, tagsGetAll, timezonesList, toSliSaveRequest, userBlockDelete, userBlockPut, userDelete, userGet, userLockDelete, userPut, userSubaccountsGet, userSubaccountsPost, verifyAndDumpLegacyConfiguration, verifyAndDumpVersion3Configuration, verifyAndDumpVersion4Configuration, vertexMatchesFilters };
78335
78738
  //# sourceMappingURL=index.esm.js.map