@dx-do/client 6.3.0 → 6.3.2

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
@@ -46664,6 +46664,94 @@ var OIService;
46664
46664
  };
46665
46665
  })(OIService || (OIService = {}));
46666
46666
 
46667
+ /**
46668
+ * The `ess/users/v2/list` user-account listing.
46669
+ *
46670
+ * Hand-modelled from observed responses (no published schema): every field is
46671
+ * inferred from live data across multiple tenants. `looseObject` is used
46672
+ * throughout so undocumented server fields are tolerated rather than dropped or
46673
+ * rejected, and single-observation fields (e.g. {@link UserSchema.shape.authMethod})
46674
+ * are kept as plain strings rather than locked enums.
46675
+ */
46676
+ var OIUsersV2;
46677
+ (function (OIUsersV2) {
46678
+ /** One email address attached to a user. */
46679
+ OIUsersV2.EmailIdSchema = z.looseObject({
46680
+ emailAddr: z.string().describe('the email address'),
46681
+ qualifier: z
46682
+ .string()
46683
+ .describe('email category; only "EMAILID" observed in live data'),
46684
+ });
46685
+ /** The user's assigned role. */
46686
+ OIUsersV2.RoleSchema = z.looseObject({
46687
+ name: z
46688
+ .string()
46689
+ .describe('role identifier, e.g. "VIEW105" / "TA" / "PU" / "UZ"'),
46690
+ privileges: z
46691
+ .array(z.unknown())
46692
+ .describe('granted privilege entries; empty in all observed data'),
46693
+ level: z.number().describe('role level; 0 in all observed data'),
46694
+ });
46695
+ /** A single user account. */
46696
+ OIUsersV2.UserSchema = z.looseObject({
46697
+ userRefID: z.number().describe('numeric internal user reference id'),
46698
+ userId: z
46699
+ .string()
46700
+ .describe('login principal; usually the email address upper-cased'),
46701
+ cohort: z
46702
+ .string()
46703
+ .describe('per-user cohort id in dashed, upper-cased GUID form'),
46704
+ firstName: z.string().describe('given name'),
46705
+ lastName: z
46706
+ .string()
46707
+ .optional()
46708
+ .describe('family name; occasionally absent'),
46709
+ statusEnum: z
46710
+ .enum(['ACTIVE', 'INACTIVE'])
46711
+ .describe('account status; only ACTIVE/INACTIVE observed'),
46712
+ emailIds: z
46713
+ .array(OIUsersV2.EmailIdSchema)
46714
+ .describe('email addresses associated with the user'),
46715
+ hasImage: z.boolean().describe('whether a profile image is set'),
46716
+ authMethod: z
46717
+ .string()
46718
+ .describe('authentication method; only "BASIC_AUTH" observed'),
46719
+ dateCreated: z
46720
+ .string()
46721
+ .describe('creation timestamp, ISO-8601 with +0000 offset (not "Z")'),
46722
+ dateModified: z
46723
+ .string()
46724
+ .describe('last-modified timestamp, ISO-8601 with +0000 offset'),
46725
+ startLockTime: z
46726
+ .string()
46727
+ .optional()
46728
+ .describe('lock-start timestamp; present only when the account is locked'),
46729
+ internalAttrs: z
46730
+ .array(z.string().nullable())
46731
+ .describe('internal attribute slots; observed as a length-3 array of nullable strings, semantics undocumented'),
46732
+ tenant: z.string().describe('tenant id the user belongs to'),
46733
+ lockStatus: z
46734
+ .boolean()
46735
+ .describe('whether the account is currently locked'),
46736
+ role: OIUsersV2.RoleSchema.describe('the assigned role'),
46737
+ hasAllDataAccess: z
46738
+ .boolean()
46739
+ .describe('whether the user has unrestricted data access'),
46740
+ userType: z
46741
+ .string()
46742
+ .optional()
46743
+ .describe('account type; the list request filters to USER_ACCOUNT, but the field is not always echoed back'),
46744
+ deleted: z.boolean().describe('soft-delete flag'),
46745
+ });
46746
+ /** The list envelope: a page of users plus the server-side total. */
46747
+ OIUsersV2.UserListResponseSchema = z.looseObject({
46748
+ countTotal: z
46749
+ .number()
46750
+ .describe('total users matching the query on the server, for pagination'),
46751
+ users: z.array(OIUsersV2.UserSchema).describe('the returned page of users'),
46752
+ });
46753
+ })(OIUsersV2 || (OIUsersV2 = {}));
46754
+
46667
46755
  /** @internal */
46668
46756
  function createPostmanRequest(request) {
46669
46757
  function createPostmanHeaders(request) {
@@ -48540,6 +48628,182 @@ var Situations;
48540
48628
  (function (Situations) {
48541
48629
  })(Situations || (Situations = {}));
48542
48630
 
48631
+ /**
48632
+ * One row of an SLI's match criteria. SLIs select the metrics they watch by a
48633
+ * list of these AND-ed filters (e.g. "Source contains bd605" AND "Metric ends
48634
+ * with Web Agent Status").
48635
+ */
48636
+ const SliFilterSchema = z.looseObject({
48637
+ fieldDescription: z
48638
+ .string()
48639
+ .describe('Human label for the field, e.g. "Source" or "Metric"'),
48640
+ field: z
48641
+ .string()
48642
+ .describe('Wire field the filter matches on, e.g. "sourceName" or "attributeName"'),
48643
+ value: z.string().describe('Value to match against the field'),
48644
+ condition: z
48645
+ .string()
48646
+ .describe('Match operator, e.g. "contains", "ends_with", "regex"'),
48647
+ });
48648
+ /**
48649
+ * A full SLI "group" as returned by `groups/search` (per `sliGroups[]` entry)
48650
+ * and `groups?groupId=<id>` (single object). This is the **raw** shape that
48651
+ * `sli export` writes to disk and `sli import` reads back.
48652
+ *
48653
+ * The wire terms are `groupName` / `groupId`; the CLI surfaces these to users
48654
+ * as `sliName` / `sliId`. The deeply-nested `sliDefinition` / `sloDefinition` /
48655
+ * `alertDefinition` blocks are kept **opaque** (loose passthrough) so they
48656
+ * round-trip untouched — we model the envelope, not the SLI/SLO math.
48657
+ */
48658
+ const SliGroupSchema = z.looseObject({
48659
+ groupName: z.string().describe('SLI name (surfaced to users as `sliName`)'),
48660
+ groupId: z
48661
+ .number()
48662
+ .describe('Server-assigned SLI id (surfaced to users as `sliId`)'),
48663
+ type: z
48664
+ .string()
48665
+ .nullable()
48666
+ .optional()
48667
+ .describe('Group type; "sli" for SLIs. Save bodies set it; the GET-by-id response returns null'),
48668
+ description: z
48669
+ .string()
48670
+ .nullable()
48671
+ .optional()
48672
+ .describe('Free-text description; may be null or empty'),
48673
+ mgId: z
48674
+ .unknown()
48675
+ .nullable()
48676
+ .optional()
48677
+ .describe('Management-group id; null for SLIs'),
48678
+ filters: z
48679
+ .array(SliFilterSchema)
48680
+ .describe('AND-ed metric match criteria selecting the SLI source metrics'),
48681
+ serviceNames: z
48682
+ .array(z.string())
48683
+ .describe('Service names this SLI is bound to. `sli import` overwrites this with the passed serviceName'),
48684
+ sliDefinition: z
48685
+ .looseObject({ functions: z.array(z.unknown()).optional() })
48686
+ .optional()
48687
+ .describe('Opaque SLI computation spec ({ functions: [...] }); round-tripped verbatim'),
48688
+ sloDefinition: z
48689
+ .looseObject({ functions: z.array(z.unknown()).optional() })
48690
+ .optional()
48691
+ .describe('Opaque SLO computation spec ({ functions: [...] }); round-tripped verbatim'),
48692
+ alertDefinition: z
48693
+ .unknown()
48694
+ .optional()
48695
+ .describe('Opaque alert spec; null or an array. Normalized to [] on import when null'),
48696
+ // Read-only server-managed fields (present on reads, ignored on save).
48697
+ creationTime: z.number().optional().describe('Epoch seconds the SLI was created'),
48698
+ lastModifiedTime: z.number().optional().describe('Epoch seconds the SLI was last modified'),
48699
+ createdBy: z.string().nullable().optional().describe('User that created the SLI'),
48700
+ lastUpdatedBy: z.string().nullable().optional().describe('User that last updated the SLI'),
48701
+ totalMetrics: z.number().optional().describe('Count of metrics currently matched by the SLI'),
48702
+ breached: z.boolean().optional().describe('Whether the SLO is currently breached'),
48703
+ product: z.unknown().nullable().optional().describe('Owning product; usually null'),
48704
+ enabled: z.boolean().optional().describe('Whether the SLI is active'),
48705
+ sliStatusCode: z.number().optional().describe('Registration status code; 0 = healthy'),
48706
+ sliStatusMessage: z.string().optional().describe('Human-readable registration status'),
48707
+ fixRequired: z.boolean().optional().describe('Whether the SLI needs attention to register'),
48708
+ pipelineErrors: z.array(z.unknown()).optional().describe('Per-pipeline error details, if any'),
48709
+ defaultGroup: z.boolean().optional().describe('Whether this is a system default group'),
48710
+ });
48711
+
48712
+ /**
48713
+ * Request body for `POST oi/v2/metricconfig/groups/save`. Mirrors the writable
48714
+ * subset of {@link SliGroupSchema} — read-only server fields (creationTime,
48715
+ * createdBy, totalMetrics, …) are not sent.
48716
+ *
48717
+ * `groupId` is the create/update discriminator: present → update that group;
48718
+ * absent → create a new one. `sli import` always omits it so import is
48719
+ * create-only and can never overwrite an existing SLI.
48720
+ */
48721
+ const SliSaveRequestSchema = z.looseObject({
48722
+ type: z.string().describe('Always "sli" for SLIs'),
48723
+ groupName: z.string().describe('SLI name'),
48724
+ description: z.string().nullable().optional().describe('Free-text description'),
48725
+ mgId: z.unknown().nullable().optional().describe('Management-group id; null for SLIs'),
48726
+ filters: z.array(SliFilterSchema).describe('AND-ed metric match criteria'),
48727
+ serviceNames: z.array(z.string()).describe('Service names the SLI binds to'),
48728
+ sliDefinition: z.unknown().describe('Opaque SLI computation spec, round-tripped from the export'),
48729
+ sloDefinition: z.unknown().describe('Opaque SLO computation spec, round-tripped from the export'),
48730
+ alertDefinition: z.unknown().optional().describe('Opaque alert spec; [] when none'),
48731
+ groupId: z
48732
+ .number()
48733
+ .optional()
48734
+ .describe('Omit to create a new SLI; include to update an existing one'),
48735
+ });
48736
+ /**
48737
+ * Response from `POST oi/v2/metricconfig/groups/save`.
48738
+ */
48739
+ const SliSaveResponseSchema = z.looseObject({
48740
+ groupId: z.number().describe('Id of the created/updated SLI'),
48741
+ message: z.array(z.string()).describe('Server status messages'),
48742
+ status: z.string().describe('"Success" on success'),
48743
+ });
48744
+ /**
48745
+ * Projects a read-model {@link SliGroup} onto the writable {@link SliSaveRequest}
48746
+ * subset — dropping the read-only server fields (creationTime, createdBy,
48747
+ * totalMetrics, …) and normalizing `type` (default `'sli'`) and
48748
+ * `alertDefinition` (`null` → `[]`).
48749
+ *
48750
+ * @param group - The source SLI (e.g. from `getSli` or a raw export file).
48751
+ * @param opts.serviceNames - Override the bound services; defaults to the group's.
48752
+ * @param opts.create - When true, omit `groupId` so the save *creates* a new SLI;
48753
+ * otherwise `groupId` is carried through and the save *updates* in place.
48754
+ */
48755
+ function toSliSaveRequest(group, opts = {}) {
48756
+ const body = {
48757
+ type: group.type ?? 'sli',
48758
+ groupName: group.groupName,
48759
+ description: group.description ?? '',
48760
+ mgId: group.mgId ?? null,
48761
+ filters: group.filters,
48762
+ serviceNames: opts.serviceNames ?? group.serviceNames,
48763
+ sliDefinition: group.sliDefinition,
48764
+ sloDefinition: group.sloDefinition,
48765
+ alertDefinition: group.alertDefinition ?? [],
48766
+ };
48767
+ if (!opts.create) {
48768
+ body.groupId = group.groupId;
48769
+ }
48770
+ return body;
48771
+ }
48772
+
48773
+ /**
48774
+ * Request body for `POST oi/v2/metricconfig/groups/search`. Listing SLIs is a
48775
+ * search scoped to `type: "sli"` with a large `pageSize` (the server returns
48776
+ * all matching groups up to that cap).
48777
+ */
48778
+ const SliSearchRequestSchema = z.looseObject({
48779
+ pageSize: z
48780
+ .number()
48781
+ .describe('Max groups to return. Use a large value (e.g. 5000) to list all SLIs'),
48782
+ type: z
48783
+ .string()
48784
+ .describe('Group type to search; "sli" for SLIs'),
48785
+ });
48786
+ /**
48787
+ * Response from `POST oi/v2/metricconfig/groups/search`. The SLIs are in
48788
+ * `sliGroups`; the surrounding fields are tenant-wide metric-config limits.
48789
+ */
48790
+ const SliSearchResponseSchema = z.looseObject({
48791
+ totalGroups: z.number().optional().describe('Number of groups returned in `sliGroups`'),
48792
+ pageSize: z.number().optional().describe('Effective page size applied by the server'),
48793
+ enabledMetrics: z.number().optional().describe('Total metrics enabled across all SLIs'),
48794
+ allowedMetricGroupsPerService: z
48795
+ .number()
48796
+ .optional()
48797
+ .describe('Tenant cap on SLI groups per service'),
48798
+ allowedMetricsPerGroup: z
48799
+ .number()
48800
+ .optional()
48801
+ .describe('Tenant cap on metrics per SLI group'),
48802
+ sliGroups: z
48803
+ .array(SliGroupSchema)
48804
+ .describe('The SLI groups matching the search'),
48805
+ });
48806
+
48543
48807
  var TAS;
48544
48808
  (function (TAS) {
48545
48809
  /** @internal */
@@ -64065,6 +64329,50 @@ class AuthorizationService {
64065
64329
  getUsers() {
64066
64330
  return this.dxSaaSService.tenantGet('oi/v2/api/users');
64067
64331
  }
64332
+ /**
64333
+ * Lists users via the ESS users v2 endpoint.
64334
+ *
64335
+ * The path's trailing segment is the cohort id in upper-cased, dashed GUID
64336
+ * form (e.g. `6E82C5F4-8F16-4CD9-8BF0-6263F83054D5`). `oiGet` already injects
64337
+ * the lowercase, dash-less cohort id as the base path segment, so we rebuild
64338
+ * the GUID form here independently of how the config stores it.
64339
+ *
64340
+ * The response type is hand-modelled from observed data ({@link OIUsersV2});
64341
+ * validation is defensive (`safeParse` + `log.warn`), so a server-side shape
64342
+ * change logs a warning but still returns the raw payload to the caller.
64343
+ *
64344
+ * @remarks Response is validated, not thrown — see {@link OIUsersV2}.
64345
+ */
64346
+ async getUsersV2(startIndex = 1, endIndex = 500) {
64347
+ const cohortGuid = this.toGuidCohortId(this.dxSaaSService.getCohortIDForURL());
64348
+ const raw = await this.dxSaaSService.oiGet(`ess/users/v2/list/${cohortGuid}`, {
64349
+ cachebuster: Math.random(),
64350
+ preventCache: Math.random(),
64351
+ start_index: startIndex,
64352
+ end_index: endIndex,
64353
+ sort_by_field: 'DATEMODIFIED',
64354
+ sort_order: 'desc',
64355
+ user_type: 'USER_ACCOUNT',
64356
+ });
64357
+ const result = OIUsersV2.UserListResponseSchema.safeParse(raw);
64358
+ if (!result.success) {
64359
+ this.log.warn('OIUsersV2 response validation warning: ' + result.error.message);
64360
+ }
64361
+ return raw;
64362
+ }
64363
+ /** Reformats a cohort id to upper-cased, dashed GUID form (`8-4-4-4-12`). */
64364
+ toGuidCohortId(cohortId) {
64365
+ const hex = cohortId.replace(/-/g, '').toLowerCase();
64366
+ return [
64367
+ hex.slice(0, 8),
64368
+ hex.slice(8, 12),
64369
+ hex.slice(12, 16),
64370
+ hex.slice(16, 20),
64371
+ hex.slice(20, 32),
64372
+ ]
64373
+ .join('-')
64374
+ .toUpperCase();
64375
+ }
64068
64376
  }
64069
64377
 
64070
64378
  /**
@@ -66681,56 +66989,47 @@ const coerce$1 = (version, options) => {
66681
66989
  };
66682
66990
  var coerce_1 = coerce$1;
66683
66991
 
66684
- var lrucache;
66685
- var hasRequiredLrucache;
66686
-
66687
- function requireLrucache () {
66688
- if (hasRequiredLrucache) return lrucache;
66689
- hasRequiredLrucache = 1;
66690
-
66691
- class LRUCache {
66692
- constructor () {
66693
- this.max = 1000;
66694
- this.map = new Map();
66695
- }
66696
-
66697
- get (key) {
66698
- const value = this.map.get(key);
66699
- if (value === undefined) {
66700
- return undefined
66701
- } else {
66702
- // Remove the key from the map and add it to the end
66703
- this.map.delete(key);
66704
- this.map.set(key, value);
66705
- return value
66706
- }
66707
- }
66992
+ class LRUCache {
66993
+ constructor () {
66994
+ this.max = 1000;
66995
+ this.map = new Map();
66996
+ }
66708
66997
 
66709
- delete (key) {
66710
- return this.map.delete(key)
66711
- }
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
+ }
66712
67009
 
66713
- set (key, value) {
66714
- const deleted = this.delete(key);
67010
+ delete (key) {
67011
+ return this.map.delete(key)
67012
+ }
66715
67013
 
66716
- if (!deleted && value !== undefined) {
66717
- // If cache is full, delete the least recently used item
66718
- if (this.map.size >= this.max) {
66719
- const firstKey = this.map.keys().next().value;
66720
- this.delete(firstKey);
66721
- }
67014
+ set (key, value) {
67015
+ const deleted = this.delete(key);
66722
67016
 
66723
- this.map.set(key, value);
66724
- }
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
+ }
66725
67023
 
66726
- return this
66727
- }
66728
- }
67024
+ this.map.set(key, value);
67025
+ }
66729
67026
 
66730
- lrucache = LRUCache;
66731
- return lrucache;
67027
+ return this
67028
+ }
66732
67029
  }
66733
67030
 
67031
+ var lrucache = LRUCache;
67032
+
66734
67033
  var range;
66735
67034
  var hasRequiredRange;
66736
67035
 
@@ -66952,7 +67251,7 @@ function requireRange () {
66952
67251
 
66953
67252
  range = Range;
66954
67253
 
66955
- const LRU = requireLrucache();
67254
+ const LRU = lrucache;
66956
67255
  const cache = new LRU();
66957
67256
 
66958
67257
  const parseOptions = parseOptions_1;
@@ -75965,6 +76264,80 @@ class ServiceService {
75965
76264
  }
75966
76265
  }
75967
76266
 
76267
+ /**
76268
+ * Service for SLIs (Service Level Indicators), modeled by the OI metricconfig
76269
+ * API as metric "groups" of `type: "sli"` under `oi/v2/metricconfig/groups/*`.
76270
+ *
76271
+ * These endpoints require the `x-authorizationview: VIEWALL` header, so this
76272
+ * service uses {@link DxSaasService.oiPost} / {@link DxSaasService.oiGet}
76273
+ * (which inject it) rather than the plain `tenant*` methods.
76274
+ *
76275
+ * Requests are validated against their input schema (throws `ZodError`);
76276
+ * responses are `safeParse`-validated (warn-on-mismatch, raw still returned).
76277
+ * Backs the `sli list` / `sli export` / `sli import` CLI commands.
76278
+ */
76279
+ class SLIService {
76280
+ dxSaasService;
76281
+ log;
76282
+ /**
76283
+ * @param dxSaasService - An authenticated {@link DxSaasService} for the target tenant.
76284
+ * @param log - Logger conforming to {@link SimpleLog} from `@dx-do/util`.
76285
+ */
76286
+ constructor(dxSaasService, log) {
76287
+ this.dxSaasService = dxSaasService;
76288
+ this.log = log;
76289
+ }
76290
+ /**
76291
+ * Lists SLIs via `POST oi/v2/metricconfig/groups/search`.
76292
+ *
76293
+ * @remarks Defaults to `{ pageSize: 5000, type: 'sli' }`; pass a partial
76294
+ * override to change the cap. Response is validated but returned raw on
76295
+ * mismatch.
76296
+ * @throws ZodError if the (merged) request fails schema validation.
76297
+ */
76298
+ async searchSlis(request) {
76299
+ const body = { pageSize: 5000, type: 'sli', ...request };
76300
+ SliSearchRequestSchema.parse(body);
76301
+ const raw = await this.dxSaasService.oiPost('oi/v2/metricconfig/groups/search', body);
76302
+ const result = SliSearchResponseSchema.safeParse(raw);
76303
+ if (!result.success) {
76304
+ this.log.warn('SliSearchResponse validation warning:', result.error.message);
76305
+ }
76306
+ return raw;
76307
+ }
76308
+ /**
76309
+ * Retrieves a single SLI by id via `GET oi/v2/metricconfig/groups?groupId=<id>`.
76310
+ * The returned object is the **raw** group `sli export` writes to disk.
76311
+ *
76312
+ * @remarks Response is validated but returned raw on mismatch.
76313
+ */
76314
+ async getSli(sliId) {
76315
+ const raw = await this.dxSaasService.oiGet('oi/v2/metricconfig/groups', { groupId: sliId });
76316
+ const result = SliGroupSchema.safeParse(raw);
76317
+ if (!result.success) {
76318
+ this.log.warn('SliGroup validation warning:', result.error.message);
76319
+ }
76320
+ return raw;
76321
+ }
76322
+ /**
76323
+ * Creates or updates an SLI via `POST oi/v2/metricconfig/groups/save`. Omit
76324
+ * `groupId` on the body to create; include it to update.
76325
+ *
76326
+ * @remarks Request is validated against {@link SliSaveRequestSchema}
76327
+ * (throws on bad input); response validated but returned raw on mismatch.
76328
+ * @throws ZodError if the request fails schema validation.
76329
+ */
76330
+ async saveSli(body) {
76331
+ SliSaveRequestSchema.parse(body);
76332
+ const raw = await this.dxSaasService.oiPost('oi/v2/metricconfig/groups/save', body);
76333
+ const result = SliSaveResponseSchema.safeParse(raw);
76334
+ if (!result.success) {
76335
+ this.log.warn('SliSaveResponse validation warning:', result.error.message);
76336
+ }
76337
+ return raw;
76338
+ }
76339
+ }
76340
+
75968
76341
  /**
75969
76342
  * Service for cluster/situation alarms: search, overview, lifecycle, inspection,
75970
76343
  * and triggering notifications for situations.
@@ -77949,6 +78322,7 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
77949
78322
  dxServiceService: new ServiceService(dxSaaSService, log),
77950
78323
  dxSessionService: new SessionService(dxSaaSService),
77951
78324
  dxSituationService: new SituationService(dxSaaSService, log),
78325
+ dxSLIService: new SLIService(dxSaaSService, log),
77952
78326
  dxSQLService: new SQLService(dxSaaSService),
77953
78327
  dxStatesService: new DataStoreStatesService(dxSaaSService, log),
77954
78328
  dxTASService,
@@ -77957,5 +78331,5 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
77957
78331
  };
77958
78332
  }
77959
78333
 
77960
- 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, 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, SQLService, ServiceExport, ServiceFilterSpecifierSchema, ServiceService, ServiceTransform, SessionService, SimpleHTTPError, SituationLifecycle, SituationService, Situations, 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, userBlockDelete, userBlockPut, userDelete, userGet, userLockDelete, userPut, userSubaccountsGet, userSubaccountsPost, verifyAndDumpLegacyConfiguration, verifyAndDumpVersion3Configuration, verifyAndDumpVersion4Configuration, vertexMatchesFilters };
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 };
77961
78335
  //# sourceMappingURL=index.esm.js.map