@dx-do/client 6.4.0 → 7.0.0

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
@@ -64809,6 +64809,23 @@ class AuthorizationService {
64809
64809
  }
64810
64810
  return raw;
64811
64811
  }
64812
+ /**
64813
+ * Returns true if a user with the given identifier exists on the tenant.
64814
+ * Matches case-insensitively against each account's `userId` (the login
64815
+ * principal — usually the upper-cased email) and any of its `emailIds`.
64816
+ *
64817
+ * @remarks Fetches the user list via {@link getUsersV2} (a single page, up
64818
+ * to 5000 accounts). A tenant with more users than that could yield a false
64819
+ * negative for an account beyond the page.
64820
+ */
64821
+ async userExists(userIdentifier) {
64822
+ const needle = userIdentifier.trim().toUpperCase();
64823
+ if (needle.length === 0)
64824
+ return false;
64825
+ const response = await this.getUsersV2(1, 5000);
64826
+ return response.users.some((user) => (user.userId ?? '').toUpperCase() === needle ||
64827
+ (user.emailIds ?? []).some((email) => (email.emailAddr ?? '').toUpperCase() === needle));
64828
+ }
64812
64829
  /** Reformats a cohort id to upper-cased, dashed GUID form (`8-4-4-4-12`). */
64813
64830
  toGuidCohortId(cohortId) {
64814
64831
  const hex = cohortId.replace(/-/g, '').toLowerCase();
@@ -67438,46 +67455,55 @@ const coerce$1 = (version, options) => {
67438
67455
  };
67439
67456
  var coerce_1 = coerce$1;
67440
67457
 
67441
- class LRUCache {
67442
- constructor () {
67443
- this.max = 1000;
67444
- this.map = new Map();
67445
- }
67458
+ var lrucache;
67459
+ var hasRequiredLrucache;
67446
67460
 
67447
- get (key) {
67448
- const value = this.map.get(key);
67449
- if (value === undefined) {
67450
- return undefined
67451
- } else {
67452
- // Remove the key from the map and add it to the end
67453
- this.map.delete(key);
67454
- this.map.set(key, value);
67455
- return value
67456
- }
67457
- }
67461
+ function requireLrucache () {
67462
+ if (hasRequiredLrucache) return lrucache;
67463
+ hasRequiredLrucache = 1;
67458
67464
 
67459
- delete (key) {
67460
- return this.map.delete(key)
67461
- }
67465
+ class LRUCache {
67466
+ constructor () {
67467
+ this.max = 1000;
67468
+ this.map = new Map();
67469
+ }
67462
67470
 
67463
- set (key, value) {
67464
- const deleted = this.delete(key);
67471
+ get (key) {
67472
+ const value = this.map.get(key);
67473
+ if (value === undefined) {
67474
+ return undefined
67475
+ } else {
67476
+ // Remove the key from the map and add it to the end
67477
+ this.map.delete(key);
67478
+ this.map.set(key, value);
67479
+ return value
67480
+ }
67481
+ }
67465
67482
 
67466
- if (!deleted && value !== undefined) {
67467
- // If cache is full, delete the least recently used item
67468
- if (this.map.size >= this.max) {
67469
- const firstKey = this.map.keys().next().value;
67470
- this.delete(firstKey);
67471
- }
67483
+ delete (key) {
67484
+ return this.map.delete(key)
67485
+ }
67472
67486
 
67473
- this.map.set(key, value);
67474
- }
67487
+ set (key, value) {
67488
+ const deleted = this.delete(key);
67475
67489
 
67476
- return this
67477
- }
67478
- }
67490
+ if (!deleted && value !== undefined) {
67491
+ // If cache is full, delete the least recently used item
67492
+ if (this.map.size >= this.max) {
67493
+ const firstKey = this.map.keys().next().value;
67494
+ this.delete(firstKey);
67495
+ }
67496
+
67497
+ this.map.set(key, value);
67498
+ }
67479
67499
 
67480
- var lrucache = LRUCache;
67500
+ return this
67501
+ }
67502
+ }
67503
+
67504
+ lrucache = LRUCache;
67505
+ return lrucache;
67506
+ }
67481
67507
 
67482
67508
  var range;
67483
67509
  var hasRequiredRange;
@@ -67700,7 +67726,7 @@ function requireRange () {
67700
67726
 
67701
67727
  range = Range;
67702
67728
 
67703
- const LRU = lrucache;
67729
+ const LRU = requireLrucache();
67704
67730
  const cache = new LRU();
67705
67731
 
67706
67732
  const parseOptions = parseOptions_1;
@@ -78809,6 +78835,419 @@ class DataStoreNASSService {
78809
78835
  }
78810
78836
  }
78811
78837
 
78838
+ /**
78839
+ * Service Universe models — an **OI-owned universe (view) scoped to a curated
78840
+ * list of services**, managed through the tenant `views/*` API. The wire shape
78841
+ * here matches the real server payload (verified against a live tenant): `views`
78842
+ * is an **array** of typed sub-views and access grants carry a `permissions`
78843
+ * array. (This is deliberately distinct from the object-shaped `ViewBodySchema`
78844
+ * in `./query`, which models a different, unused surface.)
78845
+ */
78846
+ /** Access permission granted on a service universe. */
78847
+ const ServiceUniversePermissionSchema = z
78848
+ .enum(['READ', 'WRITE'])
78849
+ .describe('Permission granted on the universe');
78850
+ /** A single user or group access grant on a service universe. */
78851
+ const ServiceUniverseAccessEntrySchema = z.looseObject({
78852
+ name: z.string().describe('User email or group name being granted access'),
78853
+ permissions: z
78854
+ .array(ServiceUniversePermissionSchema)
78855
+ .optional()
78856
+ .describe('Permissions granted to this principal (READ and/or WRITE)'),
78857
+ canManage: z
78858
+ .boolean()
78859
+ .optional()
78860
+ .describe('Whether the principal may manage (re-share) the universe'),
78861
+ attributeInclude: z
78862
+ .array(z.unknown())
78863
+ .optional()
78864
+ .describe('Attribute-based include scoping for this grant'),
78865
+ attributeExclude: z
78866
+ .array(z.unknown())
78867
+ .optional()
78868
+ .describe('Attribute-based exclude scoping for this grant'),
78869
+ isValid: z
78870
+ .array(z.string())
78871
+ .optional()
78872
+ .describe('Server-side validation hints for the principal (UI-supplied)'),
78873
+ });
78874
+ /** Access policy for a service universe (per-user and per-group grants). */
78875
+ const ServiceUniverseAccessSchema = z.looseObject({
78876
+ users: z
78877
+ .array(ServiceUniverseAccessEntrySchema)
78878
+ .optional()
78879
+ .describe('Per-user access grants'),
78880
+ groups: z
78881
+ .array(ServiceUniverseAccessEntrySchema)
78882
+ .optional()
78883
+ .describe('Per-group access grants'),
78884
+ });
78885
+ /** The TAS scoping of a service universe — its inner filter selects the services. */
78886
+ const ServiceUniverseTasSpecSchema = z.looseObject({
78887
+ filter: TasFilterSchema.optional().describe('TAS filter selecting the topology; for a service universe this is a SERVICE-op filter over the chosen service names'),
78888
+ includeMetricFilter: z
78889
+ .boolean()
78890
+ .optional()
78891
+ .describe('Whether a metric filter is applied; defaults to false'),
78892
+ projection: z
78893
+ .string()
78894
+ .optional()
78895
+ .describe("Projection mode, e.g. 'NO_TYPE'"),
78896
+ projectionFilter: z
78897
+ .looseObject({
78898
+ attributes: z
78899
+ .array(z.string())
78900
+ .optional()
78901
+ .describe('Attributes to project, e.g. ["name"]'),
78902
+ })
78903
+ .optional()
78904
+ .describe('Which vertex attributes to project'),
78905
+ });
78906
+ /** A TAS sub-view of a service universe. */
78907
+ const ServiceUniverseTasViewSchema = z.looseObject({
78908
+ type: z.literal('tas').describe('Discriminator: topology (TAS) sub-view'),
78909
+ filter: ServiceUniverseTasSpecSchema.describe('TAS scoping for this sub-view'),
78910
+ permissions: z
78911
+ .array(ServiceUniversePermissionSchema)
78912
+ .optional()
78913
+ .describe('Permissions on this sub-view'),
78914
+ });
78915
+ /** A NASS (metrics) sub-view of a service universe. */
78916
+ const ServiceUniverseNassViewSchema = z.looseObject({
78917
+ type: z.literal('nass').describe('Discriminator: metrics (NASS) sub-view'),
78918
+ filter: z
78919
+ .looseObject({
78920
+ filter: z
78921
+ .looseObject({ op: z.string().describe('Filter op, e.g. "ALL"') })
78922
+ .optional()
78923
+ .describe('NASS filter tree'),
78924
+ serviceFilter: z
78925
+ .unknown()
78926
+ .optional()
78927
+ .describe('Optional service-scoped NASS filter'),
78928
+ })
78929
+ .optional()
78930
+ .describe('NASS scoping for this sub-view'),
78931
+ permissions: z
78932
+ .array(ServiceUniversePermissionSchema)
78933
+ .optional()
78934
+ .describe('Permissions on this sub-view'),
78935
+ });
78936
+ /** A service universe sub-view: TAS (service-scoped topology) or NASS (metrics). */
78937
+ const ServiceUniverseViewSchema = z
78938
+ .discriminatedUnion('type', [
78939
+ ServiceUniverseTasViewSchema,
78940
+ ServiceUniverseNassViewSchema,
78941
+ ])
78942
+ .describe('A TAS or NASS sub-view of the universe');
78943
+ /** Metadata for a service universe. */
78944
+ const ServiceUniverseAttributesSchema = z.looseObject({
78945
+ owner: z
78946
+ .string()
78947
+ .optional()
78948
+ .describe("Owning product; service universes are 'OI'"),
78949
+ label: z.string().describe('Human-readable universe name'),
78950
+ description: z.string().optional().describe('Universe description'),
78951
+ });
78952
+ /**
78953
+ * The create/update request body for a service universe
78954
+ * (`POST/PUT views/view`).
78955
+ */
78956
+ const ServiceUniverseBodySchema = z.looseObject({
78957
+ inactive: z
78958
+ .boolean()
78959
+ .optional()
78960
+ .describe('Whether the universe is inactive (hidden from active use)'),
78961
+ attributes: ServiceUniverseAttributesSchema.describe('Universe metadata (owner, label, description)'),
78962
+ access: ServiceUniverseAccessSchema.optional().describe('Access policy (users/groups)'),
78963
+ views: z
78964
+ .array(ServiceUniverseViewSchema)
78965
+ .describe('The TAS + NASS sub-views defining the universe scope'),
78966
+ });
78967
+ /**
78968
+ * A summary row from `GET oi/v2/universe/getAllUniverseList`.
78969
+ */
78970
+ const ServiceUniverseListItemSchema = z.looseObject({
78971
+ id: z.string().describe('Universe (view) id, e.g. "VIEW1821"'),
78972
+ name: z.string().optional().describe('Universe label'),
78973
+ description: z.string().optional().describe('Universe description'),
78974
+ owner: z
78975
+ .string()
78976
+ .optional()
78977
+ .describe("Owning product; service universes are 'OI'"),
78978
+ inactive: z.boolean().optional().describe('Whether the universe is inactive'),
78979
+ });
78980
+ const ServiceUniverseListResponseSchema = z
78981
+ .array(ServiceUniverseListItemSchema)
78982
+ .describe('All universes returned by getAllUniverseList');
78983
+ /**
78984
+ * A full service universe as returned by `POST views/queryView` (op:ID).
78985
+ * Loosely modeled — the detail response echoes the body plus server-resolved
78986
+ * fields (viewId, resolved access).
78987
+ */
78988
+ const ServiceUniverseSchema = z.looseObject({
78989
+ viewId: z.string().optional().describe('Server-assigned view id'),
78990
+ inactive: z.boolean().optional().describe('Whether the universe is inactive'),
78991
+ attributes: ServiceUniverseAttributesSchema.optional().describe('Universe metadata'),
78992
+ access: ServiceUniverseAccessSchema.optional().describe('Access policy'),
78993
+ views: z
78994
+ .array(z.unknown())
78995
+ .optional()
78996
+ .describe('The universe sub-views (TAS/NASS)'),
78997
+ });
78998
+ /** Response wrapper for `POST views/queryView`. */
78999
+ const ServiceUniverseQueryResponseSchema = z.looseObject({
79000
+ views: z
79001
+ .array(ServiceUniverseSchema)
79002
+ .optional()
79003
+ .describe('Universes matching the query filter'),
79004
+ });
79005
+
79006
+ /**
79007
+ * Service for **Service Universes** — OI-owned universes (views) scoped to a
79008
+ * curated list of services, managed via the tenant `views/*` API plus the OI
79009
+ * universe-list endpoint. The "View sample" preview runs the SERVICE-op filter
79010
+ * as a TAS graph query.
79011
+ *
79012
+ * @example
79013
+ * ```ts
79014
+ * const svc = new ServiceUniverseService(dxSaasService, log);
79015
+ * const body = ServiceUniverseService.buildBody({ label: 'IoT', serviceNames: ['IoT RDS'] });
79016
+ * await svc.createServiceUniverse(body);
79017
+ * ```
79018
+ */
79019
+ class ServiceUniverseService {
79020
+ dxSaasService;
79021
+ log;
79022
+ constructor(dxSaasService, log) {
79023
+ this.dxSaasService = dxSaasService;
79024
+ this.log = log;
79025
+ }
79026
+ /**
79027
+ * Lists service universes (OI-owned) via
79028
+ * `GET oi/v2/universe/getAllUniverseList` (VIEWALL).
79029
+ *
79030
+ * @remarks Response-validated (mismatch → `log.warn`, raw still returned).
79031
+ */
79032
+ async listServiceUniverses() {
79033
+ const raw = await this.dxSaasService.oiGet('oi/v2/universe/getAllUniverseList');
79034
+ const result = ServiceUniverseListResponseSchema.safeParse(raw);
79035
+ if (!result.success) {
79036
+ this.log.warn('ServiceUniverseListResponse validation warning:', result.error.message);
79037
+ }
79038
+ const all = raw ?? [];
79039
+ return all.filter((u) => (u.owner ?? '').toUpperCase() === 'OI');
79040
+ }
79041
+ /**
79042
+ * Returns a single service universe by its view id via
79043
+ * `POST views/queryView` (op:ID). Throws if not exactly one match.
79044
+ */
79045
+ async getServiceUniverse(viewId) {
79046
+ const raw = await this.dxSaasService.tenantPost('views/queryView', {
79047
+ filter: { op: 'ID', ids: [viewId], input: { op: 'ALL' } },
79048
+ includeInactive: true,
79049
+ });
79050
+ const result = ServiceUniverseQueryResponseSchema.safeParse(raw);
79051
+ if (!result.success) {
79052
+ this.log.warn('ServiceUniverseQueryResponse validation warning:', result.error.message);
79053
+ }
79054
+ const views = raw.views ?? [];
79055
+ if (views.length !== 1) {
79056
+ throw new Error(`Expected exactly one universe with viewId '${viewId}', found ${views.length}.`);
79057
+ }
79058
+ return views[0];
79059
+ }
79060
+ /**
79061
+ * Creates a service universe via `POST views/view`.
79062
+ *
79063
+ * @throws ZodError if the body fails schema validation.
79064
+ */
79065
+ async createServiceUniverse(body) {
79066
+ ServiceUniverseBodySchema.parse(body);
79067
+ return this.dxSaasService.tenantPost('views/view', body);
79068
+ }
79069
+ /**
79070
+ * Updates a service universe via `PUT views/view/{viewId}`.
79071
+ *
79072
+ * @throws ZodError if the body fails schema validation.
79073
+ */
79074
+ async updateServiceUniverse(viewId, body) {
79075
+ ServiceUniverseBodySchema.parse(body);
79076
+ return this.dxSaasService.tenantPut(`views/view/${encodeURIComponent(viewId)}`, body);
79077
+ }
79078
+ /**
79079
+ * PUTs a full universe body to `views/view/{viewId}` **without** re-validating
79080
+ * it against the client schema. Used by the access commands, which round-trip
79081
+ * the universe's existing views verbatim (a UI-created universe may carry view
79082
+ * shapes our builder wouldn't reconstruct); only the `access` policy changes.
79083
+ */
79084
+ async putServiceUniverse(viewId, body) {
79085
+ return this.dxSaasService.tenantPut(`views/view/${encodeURIComponent(viewId)}`, body);
79086
+ }
79087
+ /** Deletes a service universe via `DELETE views/view/{viewId}`. */
79088
+ async deleteServiceUniverse(viewId) {
79089
+ return this.dxSaasService.tenantDelete(`views/view/${encodeURIComponent(viewId)}`);
79090
+ }
79091
+ /**
79092
+ * Checks which of the given service names actually exist on the tenant, via
79093
+ * `GET oi/v2/sa/services/{name}` per name. A 404 means the service does not
79094
+ * exist; any other error is re-thrown (so a transient failure is never
79095
+ * silently reported as "missing").
79096
+ *
79097
+ * @throws Error if any name could not be verified for a non-404 reason.
79098
+ */
79099
+ async resolveServiceNames(serviceNames) {
79100
+ const existing = [];
79101
+ const missing = [];
79102
+ const errored = [];
79103
+ await dist$1.PromisePool.for(serviceNames)
79104
+ .withConcurrency(5)
79105
+ .process(async (name) => {
79106
+ try {
79107
+ await this.dxSaasService.oiGet(`oi/v2/sa/services/${encodeURIComponent(name)}`, { subservices: false });
79108
+ existing.push(name);
79109
+ }
79110
+ catch (err) {
79111
+ if (err.httpCode === 404) {
79112
+ missing.push(name);
79113
+ }
79114
+ else {
79115
+ errored.push({ name, error: err });
79116
+ }
79117
+ }
79118
+ });
79119
+ if (errored.length > 0) {
79120
+ const first = errored[0].error;
79121
+ const reason = first instanceof Error ? first.message : String(first);
79122
+ throw new Error(`Could not verify ${errored.length} service name(s) (${errored
79123
+ .map((e) => e.name)
79124
+ .join(', ')}): ${reason}`);
79125
+ }
79126
+ return { existing, missing };
79127
+ }
79128
+ /**
79129
+ * "View sample": runs the SERVICE-scoped filter as a TAS graph query
79130
+ * (`POST tas/graph/query`) and returns the matching entities — the dry-run
79131
+ * preview of what a universe over `serviceNames` would contain.
79132
+ *
79133
+ * @remarks Response-validated (mismatch → `log.warn`, raw still returned).
79134
+ */
79135
+ async sampleServices(serviceNames, options = {}) {
79136
+ const query = {
79137
+ filter: {
79138
+ op: 'OR',
79139
+ input: [
79140
+ {
79141
+ op: 'SERVICE',
79142
+ values: serviceNames,
79143
+ includeServiceHierarchy: options.includeServiceHierarchy ?? true,
79144
+ excludeSubServices: options.excludeSubServices ?? false,
79145
+ },
79146
+ ],
79147
+ },
79148
+ authorizationView: 'VIEWALL',
79149
+ schema: 'SA',
79150
+ limit: options.limit ?? 200,
79151
+ };
79152
+ TasQuerySchema.parse(query);
79153
+ const raw = await this.dxSaasService.tenantPost('tas/graph/query', query);
79154
+ const result = TasGraphSchema.safeParse(raw);
79155
+ if (!result.success) {
79156
+ this.log.warn('ServiceUniverse sample (TasGraph) validation warning:', result.error.message);
79157
+ }
79158
+ return raw;
79159
+ }
79160
+ /**
79161
+ * Builds a service universe request body: a SERVICE-scoped TAS sub-view over
79162
+ * `serviceNames` (or an ALL view when empty) plus an ALL NASS sub-view. Mirrors
79163
+ * the shape the DXO2 Service Universe UI submits.
79164
+ */
79165
+ /** A user/group access grant: READ+WRITE, no attribute scoping (per current UX). */
79166
+ static accessEntry(name, canManage) {
79167
+ return {
79168
+ name,
79169
+ permissions: ['READ', 'WRITE'],
79170
+ canManage,
79171
+ attributeInclude: [],
79172
+ attributeExclude: [],
79173
+ };
79174
+ }
79175
+ /**
79176
+ * Returns a copy of `existing` with a user/group access grant added (or
79177
+ * updated in place if the principal already has a grant). Preserves the
79178
+ * universe's server-managed fields and views verbatim — only `access`
79179
+ * changes. Pass exactly one of `user` / `group`.
79180
+ */
79181
+ static withAccessEntry(existing, target) {
79182
+ const isGroup = !!target.group;
79183
+ const name = (target.user ?? target.group);
79184
+ const users = [...(existing.access?.users ?? [])];
79185
+ const groups = [...(existing.access?.groups ?? [])];
79186
+ const list = isGroup ? groups : users;
79187
+ const next = list.filter((e) => e.name !== name);
79188
+ next.push(this.accessEntry(name, target.canManage));
79189
+ const access = isGroup
79190
+ ? { users, groups: next }
79191
+ : { users: next, groups };
79192
+ return {
79193
+ ...existing,
79194
+ access,
79195
+ };
79196
+ }
79197
+ /**
79198
+ * Returns a copy of `existing` with a user/group access grant removed.
79199
+ * Preserves everything else verbatim. Pass exactly one of `user` / `group`.
79200
+ */
79201
+ static withoutAccessEntry(existing, target) {
79202
+ const isGroup = !!target.group;
79203
+ const name = (target.user ?? target.group);
79204
+ const users = (existing.access?.users ?? []).filter((e) => isGroup || e.name !== name);
79205
+ const groups = (existing.access?.groups ?? []).filter((e) => !isGroup || e.name !== name);
79206
+ return {
79207
+ ...existing,
79208
+ access: { users, groups },
79209
+ };
79210
+ }
79211
+ static buildBody(input) {
79212
+ const { label, description, serviceNames, inactive, includeServiceHierarchy, excludeSubServices, access, } = input;
79213
+ const tasFilter = serviceNames.length === 0
79214
+ ? { op: 'ALL' }
79215
+ : {
79216
+ op: 'SERVICE',
79217
+ values: serviceNames,
79218
+ includeServiceHierarchy: includeServiceHierarchy ?? true,
79219
+ excludeSubServices: excludeSubServices ?? false,
79220
+ };
79221
+ return {
79222
+ inactive: inactive ?? false,
79223
+ attributes: { owner: 'OI', label, description: description ?? '' },
79224
+ access: access ?? { groups: [], users: [] },
79225
+ views: [
79226
+ {
79227
+ type: 'tas',
79228
+ filter: {
79229
+ filter: tasFilter,
79230
+ includeMetricFilter: false,
79231
+ projection: 'NO_TYPE',
79232
+ projectionFilter: { attributes: ['name'] },
79233
+ },
79234
+ permissions: ['READ', 'WRITE'],
79235
+ },
79236
+ {
79237
+ type: 'nass',
79238
+ filter: {
79239
+ filter: { op: 'ALL' },
79240
+ serviceFilter: serviceNames.length === 0
79241
+ ? undefined
79242
+ : { op: 'SERVICE', values: serviceNames },
79243
+ },
79244
+ permissions: ['READ', 'WRITE'],
79245
+ },
79246
+ ],
79247
+ };
79248
+ }
79249
+ }
79250
+
78812
79251
  var NullSimpleLog = Logging.NullSimpleLog;
78813
79252
  /**
78814
79253
  * Creates and returns a container of all DX client services (ACC, alerts, alarms,
@@ -78843,6 +79282,7 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
78843
79282
  dxDataStoreNASSService: new DataStoreNASSService(dxSaaSService, log),
78844
79283
  dxDataStoreNASSQLService: new DataStoreNASSQLService(dxSaaSService, log),
78845
79284
  dxDataStoreTASService: new DataStoreTASService(dxSaaSService, log),
79285
+ dxServiceUniverseService: new ServiceUniverseService(dxSaaSService, log),
78846
79286
  dxEventService: new EventService(dxSaaSService, log),
78847
79287
  dxExperienceService: new ExperienceService(dxSaaSService, log),
78848
79288
  dxFeaturesService: new DataStoreFeaturesService(dxSaaSService, log),
@@ -78876,5 +79316,5 @@ function createServiceMonolith(dxDoConfiguration, log = new NullSimpleLog()) {
78876
79316
  };
78877
79317
  }
78878
79318
 
78879
- 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 };
79319
+ 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, ServiceUniverseService, 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 };
78880
79320
  //# sourceMappingURL=index.esm.js.map