@microsoft/applicationinsights-properties-js 2.8.5-nightly.2206-04 → 2.8.5-nightly.2206-06

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/browser/applicationinsights-properties-js.integrity.json +9 -9
  2. package/browser/applicationinsights-properties-js.js +676 -526
  3. package/browser/applicationinsights-properties-js.js.map +1 -1
  4. package/browser/applicationinsights-properties-js.min.js +2 -2
  5. package/browser/applicationinsights-properties-js.min.js.map +1 -1
  6. package/dist/applicationinsights-properties-js.api.json +11 -2
  7. package/dist/applicationinsights-properties-js.d.ts +1 -1
  8. package/dist/applicationinsights-properties-js.js +676 -526
  9. package/dist/applicationinsights-properties-js.js.map +1 -1
  10. package/dist/applicationinsights-properties-js.min.js +2 -2
  11. package/dist/applicationinsights-properties-js.min.js.map +1 -1
  12. package/dist/applicationinsights-properties-js.rollup.d.ts +1 -1
  13. package/dist-esm/Context/Application.js +1 -1
  14. package/dist-esm/Context/Device.js +1 -1
  15. package/dist-esm/Context/Internal.js +4 -3
  16. package/dist-esm/Context/Internal.js.map +1 -1
  17. package/dist-esm/Context/Location.js +1 -1
  18. package/dist-esm/Context/Session.js +36 -35
  19. package/dist-esm/Context/Session.js.map +1 -1
  20. package/dist-esm/Context/TelemetryTrace.js +1 -1
  21. package/dist-esm/Context/User.js +32 -31
  22. package/dist-esm/Context/User.js.map +1 -1
  23. package/dist-esm/Interfaces/IPropTelemetryContext.js +1 -1
  24. package/dist-esm/Interfaces/ITelemetryConfig.js +1 -1
  25. package/dist-esm/PropertiesPlugin.js +65 -56
  26. package/dist-esm/PropertiesPlugin.js.map +1 -1
  27. package/dist-esm/TelemetryContext.js +27 -26
  28. package/dist-esm/TelemetryContext.js.map +1 -1
  29. package/dist-esm/__DynamicConstants.js +48 -0
  30. package/dist-esm/__DynamicConstants.js.map +1 -0
  31. package/dist-esm/applicationinsights-properties-js.js +1 -1
  32. package/package.json +7 -4
  33. package/src/Context/Internal.ts +8 -8
  34. package/src/Context/Session.ts +11 -11
  35. package/src/Context/TelemetryTrace.ts +3 -3
  36. package/src/Context/User.ts +11 -10
  37. package/src/PropertiesPlugin.ts +57 -46
  38. package/src/TelemetryContext.ts +25 -19
  39. package/src/__DynamicConstants.ts +46 -0
  40. package/types/Context/User.d.ts +1 -1
  41. package/types/PropertiesPlugin.d.ts +5 -5
  42. package/types/TelemetryContext.d.ts +6 -6
  43. package/types/__DynamicConstants.d.ts +34 -0
  44. package/types/tsdoc-metadata.json +1 -1
@@ -1,12 +1,13 @@
1
- // Copyright (c) Microsoft Corporation. All rights reserved.
2
- // Licensed under the MIT License.
3
-
4
- import dynamicProto from "@microsoft/dynamicproto-js";
5
- import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
6
- import { utlRemoveStorage, IUserContext } from "@microsoft/applicationinsights-common";
7
- import { _eInternalMessageId, eLoggingSeverity, IAppInsightsCore, ICookieMgr, safeGetCookieMgr, safeGetLogger, newId, toISOString, _throwInternal } from "@microsoft/applicationinsights-core-js";
8
-
9
-
1
+ // Copyright (c) Microsoft Corporation. All rights reserved.
2
+ // Licensed under the MIT License.
3
+
4
+ import dynamicProto from "@microsoft/dynamicproto-js";
5
+ import { IUserContext, utlRemoveStorage } from "@microsoft/applicationinsights-common";
6
+ import {
7
+ IAppInsightsCore, ICookieMgr, _eInternalMessageId, _throwInternal, eLoggingSeverity, newId, safeGetCookieMgr, safeGetLogger, toISOString
8
+ } from "@microsoft/applicationinsights-core-js";
9
+ import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
10
+
10
11
  function _validateUserInput(id: string): boolean {
11
12
  // Validate:
12
13
  // 1. Id is a non-empty string.
@@ -218,4 +219,4 @@ export class User implements IUserContext {
218
219
  public update(userId?: string) {
219
220
  // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging
220
221
  }
221
- }
222
+ }
@@ -1,38 +1,43 @@
1
- /**
2
- * PropertiesPlugin.ts
3
- * @copyright Microsoft 2018
4
- */
5
-
6
- import dynamicProto from "@microsoft/dynamicproto-js";
7
- import {
8
- BaseTelemetryPlugin, IConfiguration, isNullOrUndefined,
9
- IAppInsightsCore, IPlugin, ITelemetryItem, IProcessTelemetryContext, _InternalLogMessage, eLoggingSeverity, _eInternalMessageId, getNavigator,
10
- ITelemetryPluginChain, objForEachKey, getSetValue, _logInternalMessage, IProcessTelemetryUnloadContext, ITelemetryUnloadState, IDistributedTraceContext
11
- } from "@microsoft/applicationinsights-core-js";
12
- import { TelemetryContext } from "./TelemetryContext";
13
- import { PageView, IConfig, BreezeChannelIdentifier, PropertiesPluginIdentifier, IPropertiesPlugin, createDistributedTraceContextFromTrace } from "@microsoft/applicationinsights-common";
14
- import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
15
- import { IPropTelemetryContext } from "./Interfaces/IPropTelemetryContext";
16
-
1
+ /**
2
+ * PropertiesPlugin.ts
3
+ * @copyright Microsoft 2018
4
+ */
5
+
6
+ import dynamicProto from "@microsoft/dynamicproto-js";
7
+ import {
8
+ BreezeChannelIdentifier, IConfig, IPropertiesPlugin, PageView, PropertiesPluginIdentifier, createDistributedTraceContextFromTrace
9
+ } from "@microsoft/applicationinsights-common";
10
+ import {
11
+ BaseTelemetryPlugin, IAppInsightsCore, IConfiguration, IDistributedTraceContext, IPlugin, IProcessTelemetryContext,
12
+ IProcessTelemetryUnloadContext, ITelemetryItem, ITelemetryPluginChain, ITelemetryUnloadState, _InternalLogMessage, _eInternalMessageId,
13
+ _logInternalMessage, createProcessTelemetryContext, eLoggingSeverity, getNavigator, getSetValue, isNullOrUndefined, objForEachKey
14
+ } from "@microsoft/applicationinsights-core-js";
15
+ import { IPropTelemetryContext } from "./Interfaces/IPropTelemetryContext";
16
+ import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
17
+ import { TelemetryContext } from "./TelemetryContext";
18
+
17
19
  export default class PropertiesPlugin extends BaseTelemetryPlugin implements IPropertiesPlugin {
18
20
 
19
21
  public static getDefaultConfig(): ITelemetryConfig {
22
+ let defaultValue: string;
23
+ let nullValue: any = null;
24
+
20
25
  const defaultConfig: ITelemetryConfig = {
21
- instrumentationKey: () => undefined,
22
- accountId: () => null,
26
+ instrumentationKey: () => defaultValue,
27
+ accountId: () => nullValue,
23
28
  sessionRenewalMs: () => 30 * 60 * 1000,
24
29
  samplingPercentage: () => 100,
25
30
  sessionExpirationMs: () => 24 * 60 * 60 * 1000,
26
- cookieDomain: () => null,
27
- sdkExtension: () => null,
31
+ cookieDomain: () => nullValue,
32
+ sdkExtension: () => nullValue,
28
33
  isBrowserLinkTrackingEnabled: () => false,
29
- appId: () => null,
30
- getSessionId: () => null,
31
- namePrefix: () => undefined,
32
- sessionCookiePostfix: () => undefined,
33
- userCookiePostfix: () => undefined,
34
+ appId: () => nullValue,
35
+ getSessionId: () => nullValue,
36
+ namePrefix: () => defaultValue,
37
+ sessionCookiePostfix: () => defaultValue,
38
+ userCookiePostfix: () => defaultValue,
34
39
  idLength: () => 22,
35
- getNewId: () => null
40
+ getNewId: () => nullValue
36
41
  };
37
42
 
38
43
  return defaultConfig;
@@ -56,25 +61,7 @@ export default class PropertiesPlugin extends BaseTelemetryPlugin implements IPr
56
61
 
57
62
  _self.initialize = (config: IConfiguration & IConfig, core: IAppInsightsCore, extensions: IPlugin[], pluginChain?:ITelemetryPluginChain) => {
58
63
  _base.initialize(config, core, extensions, pluginChain);
59
- let ctx = _self._getTelCtx();
60
- let identifier = _self.identifier;
61
- const defaultConfig: ITelemetryConfig = PropertiesPlugin.getDefaultConfig();
62
- _extensionConfig = _extensionConfig || {} as ITelemetryConfig;
63
- objForEachKey(defaultConfig, (field, value) => {
64
- _extensionConfig[field] = () => ctx.getConfig(identifier, field, value() as any);
65
- });
66
-
67
- _previousTraceCtx = core.getTraceCtx(false);
68
- _self.context = new TelemetryContext(core, _extensionConfig, _previousTraceCtx);
69
- _distributedTraceCtx = createDistributedTraceContextFromTrace(_self.context.telemetryTrace, _previousTraceCtx);
70
- core.setTraceCtx(_distributedTraceCtx);
71
- _self.context.appId = () => {
72
- let breezeChannel = core.getPlugin<IPlugin>(BreezeChannelIdentifier);
73
- return breezeChannel ? breezeChannel.plugin["_appId"] : null;
74
- };
75
-
76
- // Test hook to allow accessing the internal values -- explicitly not defined as an available property on the class
77
- _self["_extConfig"] = _extensionConfig;
64
+ _populateDefaults(config);
78
65
  };
79
66
 
80
67
  /**
@@ -135,6 +122,30 @@ export default class PropertiesPlugin extends BaseTelemetryPlugin implements IPr
135
122
  _previousTraceCtx = null;
136
123
  }
137
124
 
125
+ function _populateDefaults(config: IConfiguration) {
126
+ let identifier = _self.identifier;
127
+ let core = _self.core;
128
+
129
+ let ctx = createProcessTelemetryContext(null, config, core);
130
+ const defaultConfig: ITelemetryConfig = PropertiesPlugin.getDefaultConfig();
131
+ _extensionConfig = _extensionConfig || {} as ITelemetryConfig;
132
+ objForEachKey(defaultConfig, (field, value) => {
133
+ _extensionConfig[field] = () => ctx.getConfig(identifier, field, value());
134
+ });
135
+
136
+ _previousTraceCtx = core.getTraceCtx(false);
137
+ _self.context = new TelemetryContext(core, _extensionConfig, _previousTraceCtx);
138
+ _distributedTraceCtx = createDistributedTraceContextFromTrace(_self.context.telemetryTrace, _previousTraceCtx);
139
+ core.setTraceCtx(_distributedTraceCtx);
140
+ _self.context.appId = () => {
141
+ let breezeChannel = core.getPlugin<IPlugin>(BreezeChannelIdentifier);
142
+ return breezeChannel ? breezeChannel.plugin["_appId"] : null;
143
+ };
144
+
145
+ // Test hook to allow accessing the internal values -- explicitly not defined as an available property on the class
146
+ _self["_extConfig"] = _extensionConfig;
147
+ }
148
+
138
149
  function _processTelemetryInternal(evt: ITelemetryItem, itemCtx: IProcessTelemetryContext) {
139
150
  // Set Part A fields
140
151
  getSetValue(evt, "tags", []);
@@ -167,4 +178,4 @@ export default class PropertiesPlugin extends BaseTelemetryPlugin implements IPr
167
178
  public processTelemetry(event: ITelemetryItem, itemCtx?: IProcessTelemetryContext) {
168
179
  // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging
169
180
  }
170
- }
181
+ }
@@ -1,21 +1,27 @@
1
- /**
2
- * TelemetryContext.ts
3
- * @copyright Microsoft 2018
4
- */
5
-
6
- import dynamicProto from "@microsoft/dynamicproto-js";
7
- import { ITelemetryItem, IProcessTelemetryContext, IAppInsightsCore, isString, objKeys, hasWindow, _InternalLogMessage, setValue, getSetValue, IDistributedTraceContext } from "@microsoft/applicationinsights-core-js";
8
- import { Session, _SessionManager } from "./Context/Session";
9
- import { Extensions, IOperatingSystem, ITelemetryTrace, IWeb, CtxTagKeys, PageView, IApplication, IDevice, ILocation, IUserContext, IInternal, ISession } from "@microsoft/applicationinsights-common";
10
- import { Application } from "./Context/Application";
11
- import { Device } from "./Context/Device";
12
- import { Internal } from "./Context/Internal";
13
- import { User } from "./Context/User";
14
- import { Location } from "./Context/Location";
15
- import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
16
- import { TelemetryTrace } from "./Context/TelemetryTrace";
17
- import { IPropTelemetryContext } from "./Interfaces/IPropTelemetryContext";
18
-
1
+ /**
2
+ * TelemetryContext.ts
3
+ * @copyright Microsoft 2018
4
+ */
5
+
6
+ import dynamicProto from "@microsoft/dynamicproto-js";
7
+ import {
8
+ CtxTagKeys, Extensions, IApplication, IDevice, IInternal, ILocation, IOperatingSystem, ISession, ITelemetryTrace, IUserContext, IWeb,
9
+ PageView
10
+ } from "@microsoft/applicationinsights-common";
11
+ import {
12
+ IAppInsightsCore, IDistributedTraceContext, IProcessTelemetryContext, ITelemetryItem, _InternalLogMessage, getSetValue, hasWindow,
13
+ isString, objKeys, setValue
14
+ } from "@microsoft/applicationinsights-core-js";
15
+ import { Application } from "./Context/Application";
16
+ import { Device } from "./Context/Device";
17
+ import { Internal } from "./Context/Internal";
18
+ import { Location } from "./Context/Location";
19
+ import { Session, _SessionManager } from "./Context/Session";
20
+ import { TelemetryTrace } from "./Context/TelemetryTrace";
21
+ import { User } from "./Context/User";
22
+ import { IPropTelemetryContext } from "./Interfaces/IPropTelemetryContext";
23
+ import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
24
+
19
25
  const strExt = "ext";
20
26
  const strTags = "tags";
21
27
 
@@ -220,4 +226,4 @@ export class TelemetryContext implements IPropTelemetryContext {
220
226
  public cleanUp(event:ITelemetryItem, itemCtx?: IProcessTelemetryContext): void {
221
227
  // @DynamicProtoStub -- DO NOT add any code as this will be removed during packaging
222
228
  }
223
- }
229
+ }
@@ -0,0 +1,46 @@
1
+ // Copyright (c) Microsoft Corporation. All rights reserved.
2
+ // Licensed under the MIT License.
3
+ // @skip-file-minify
4
+
5
+ // ##############################################################
6
+ // AUTO GENERATED FILE: This file is Auto Generated during build.
7
+ // ##############################################################
8
+
9
+ // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
+ // Note: DON'T Export these const from the package as we are still targeting ES3 this will export a mutable variables that someone could change!!!
11
+ // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
+
13
+ export const _DYN_SESSION_MANAGER = "sessionManager"; // Count: 3
14
+ export const _DYN_UPDATE = "update"; // Count: 4
15
+ export const _DYN_IS_USER_COOKIE_SET = "isUserCookieSet"; // Count: 4
16
+ export const _DYN_IS_NEW_USER = "isNewUser"; // Count: 4
17
+ export const _DYN_GET_TRACE_CTX = "getTraceCtx"; // Count: 3
18
+ export const _DYN_TELEMETRY_TRACE = "telemetryTrace"; // Count: 3
19
+ export const _DYN_APPLY_SESSION_CONTEX0 = "applySessionContext"; // Count: 2
20
+ export const _DYN_APPLY_APPLICATION_CO1 = "applyApplicationContext"; // Count: 2
21
+ export const _DYN_APPLY_DEVICE_CONTEXT = "applyDeviceContext"; // Count: 2
22
+ export const _DYN_APPLY_OPERATION_CONT2 = "applyOperationContext"; // Count: 2
23
+ export const _DYN_APPLY_USER_CONTEXT = "applyUserContext"; // Count: 2
24
+ export const _DYN_APPLY_OPERATING_SYST3 = "applyOperatingSystemContxt"; // Count: 2
25
+ export const _DYN_APPLY_LOCATION_CONTE4 = "applyLocationContext"; // Count: 2
26
+ export const _DYN_APPLY_INTERNAL_CONTE5 = "applyInternalContext"; // Count: 2
27
+ export const _DYN_ACCOUNT_ID = "accountId"; // Count: 8
28
+ export const _DYN_SDK_EXTENSION = "sdkExtension"; // Count: 4
29
+ export const _DYN_GET_SESSION_ID = "getSessionId"; // Count: 4
30
+ export const _DYN_NAME_PREFIX = "namePrefix"; // Count: 7
31
+ export const _DYN_SESSION_COOKIE_POSTF6 = "sessionCookiePostfix"; // Count: 4
32
+ export const _DYN_USER_COOKIE_POSTFIX = "userCookiePostfix"; // Count: 4
33
+ export const _DYN_ID_LENGTH = "idLength"; // Count: 5
34
+ export const _DYN_GET_NEW_ID = "getNewId"; // Count: 6
35
+ export const _DYN_LENGTH = "length"; // Count: 4
36
+ export const _DYN_AUTOMATIC_SESSION = "automaticSession"; // Count: 5
37
+ export const _DYN_AUTHENTICATED_ID = "authenticatedId"; // Count: 6
38
+ export const _DYN_SESSION_EXPIRATION_M7 = "sessionExpirationMs"; // Count: 5
39
+ export const _DYN_SESSION_RENEWAL_MS = "sessionRenewalMs"; // Count: 4
40
+ export const _DYN_CONFIG = "config"; // Count: 4
41
+ export const _DYN_ACQUISITION_DATE = "acquisitionDate"; // Count: 5
42
+ export const _DYN_RENEWAL_DATE = "renewalDate"; // Count: 4
43
+ export const _DYN_COOKIE_DOMAIN = "cookieDomain"; // Count: 3
44
+ export const _DYN_JOIN = "join"; // Count: 5
45
+ export const _DYN_COOKIE_SEPARATOR = "cookieSeparator"; // Count: 5
46
+ export const _DYN_AUTH_USER_COOKIE_NAM8 = "authUserCookieName"; // Count: 3
@@ -1,6 +1,6 @@
1
- import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
2
1
  import { IUserContext } from "@microsoft/applicationinsights-common";
3
2
  import { IAppInsightsCore } from "@microsoft/applicationinsights-core-js";
3
+ import { ITelemetryConfig } from "../Interfaces/ITelemetryConfig";
4
4
  export declare class User implements IUserContext {
5
5
  static cookieSeparator: string;
6
6
  static userCookieName: string;
@@ -1,11 +1,11 @@
1
1
  /**
2
- * PropertiesPlugin.ts
3
- * @copyright Microsoft 2018
4
- */
5
- import { BaseTelemetryPlugin, IConfiguration, IAppInsightsCore, IPlugin, ITelemetryItem, IProcessTelemetryContext, ITelemetryPluginChain } from "@microsoft/applicationinsights-core-js";
2
+ * PropertiesPlugin.ts
3
+ * @copyright Microsoft 2018
4
+ */
6
5
  import { IConfig, IPropertiesPlugin } from "@microsoft/applicationinsights-common";
7
- import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
6
+ import { BaseTelemetryPlugin, IAppInsightsCore, IConfiguration, IPlugin, IProcessTelemetryContext, ITelemetryItem, ITelemetryPluginChain } from "@microsoft/applicationinsights-core-js";
8
7
  import { IPropTelemetryContext } from "./Interfaces/IPropTelemetryContext";
8
+ import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
9
9
  export default class PropertiesPlugin extends BaseTelemetryPlugin implements IPropertiesPlugin {
10
10
  static getDefaultConfig(): ITelemetryConfig;
11
11
  context: IPropTelemetryContext;
@@ -1,12 +1,12 @@
1
1
  /**
2
- * TelemetryContext.ts
3
- * @copyright Microsoft 2018
4
- */
5
- import { ITelemetryItem, IProcessTelemetryContext, IAppInsightsCore, IDistributedTraceContext } from "@microsoft/applicationinsights-core-js";
2
+ * TelemetryContext.ts
3
+ * @copyright Microsoft 2018
4
+ */
5
+ import { IApplication, IDevice, IInternal, ILocation, IOperatingSystem, ISession, ITelemetryTrace, IUserContext, IWeb } from "@microsoft/applicationinsights-common";
6
+ import { IAppInsightsCore, IDistributedTraceContext, IProcessTelemetryContext, ITelemetryItem } from "@microsoft/applicationinsights-core-js";
6
7
  import { _SessionManager } from "./Context/Session";
7
- import { IOperatingSystem, ITelemetryTrace, IWeb, IApplication, IDevice, ILocation, IUserContext, IInternal, ISession } from "@microsoft/applicationinsights-common";
8
- import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
9
8
  import { IPropTelemetryContext } from "./Interfaces/IPropTelemetryContext";
9
+ import { ITelemetryConfig } from "./Interfaces/ITelemetryConfig";
10
10
  export declare class TelemetryContext implements IPropTelemetryContext {
11
11
  application: IApplication;
12
12
  device: IDevice;
@@ -0,0 +1,34 @@
1
+ export declare const _DYN_SESSION_MANAGER = "sessionManager";
2
+ export declare const _DYN_UPDATE = "update";
3
+ export declare const _DYN_IS_USER_COOKIE_SET = "isUserCookieSet";
4
+ export declare const _DYN_IS_NEW_USER = "isNewUser";
5
+ export declare const _DYN_GET_TRACE_CTX = "getTraceCtx";
6
+ export declare const _DYN_TELEMETRY_TRACE = "telemetryTrace";
7
+ export declare const _DYN_APPLY_SESSION_CONTEX0 = "applySessionContext";
8
+ export declare const _DYN_APPLY_APPLICATION_CO1 = "applyApplicationContext";
9
+ export declare const _DYN_APPLY_DEVICE_CONTEXT = "applyDeviceContext";
10
+ export declare const _DYN_APPLY_OPERATION_CONT2 = "applyOperationContext";
11
+ export declare const _DYN_APPLY_USER_CONTEXT = "applyUserContext";
12
+ export declare const _DYN_APPLY_OPERATING_SYST3 = "applyOperatingSystemContxt";
13
+ export declare const _DYN_APPLY_LOCATION_CONTE4 = "applyLocationContext";
14
+ export declare const _DYN_APPLY_INTERNAL_CONTE5 = "applyInternalContext";
15
+ export declare const _DYN_ACCOUNT_ID = "accountId";
16
+ export declare const _DYN_SDK_EXTENSION = "sdkExtension";
17
+ export declare const _DYN_GET_SESSION_ID = "getSessionId";
18
+ export declare const _DYN_NAME_PREFIX = "namePrefix";
19
+ export declare const _DYN_SESSION_COOKIE_POSTF6 = "sessionCookiePostfix";
20
+ export declare const _DYN_USER_COOKIE_POSTFIX = "userCookiePostfix";
21
+ export declare const _DYN_ID_LENGTH = "idLength";
22
+ export declare const _DYN_GET_NEW_ID = "getNewId";
23
+ export declare const _DYN_LENGTH = "length";
24
+ export declare const _DYN_AUTOMATIC_SESSION = "automaticSession";
25
+ export declare const _DYN_AUTHENTICATED_ID = "authenticatedId";
26
+ export declare const _DYN_SESSION_EXPIRATION_M7 = "sessionExpirationMs";
27
+ export declare const _DYN_SESSION_RENEWAL_MS = "sessionRenewalMs";
28
+ export declare const _DYN_CONFIG = "config";
29
+ export declare const _DYN_ACQUISITION_DATE = "acquisitionDate";
30
+ export declare const _DYN_RENEWAL_DATE = "renewalDate";
31
+ export declare const _DYN_COOKIE_DOMAIN = "cookieDomain";
32
+ export declare const _DYN_JOIN = "join";
33
+ export declare const _DYN_COOKIE_SEPARATOR = "cookieSeparator";
34
+ export declare const _DYN_AUTH_USER_COOKIE_NAM8 = "authUserCookieName";
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.25.0"
8
+ "packageVersion": "7.28.1"
9
9
  }
10
10
  ]
11
11
  }