@webex/event-dictionary-ts 1.0.2221 → 1.0.2223

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.
@@ -4047,6 +4047,16 @@
4047
4047
  }
4048
4048
  }
4049
4049
  },
4050
+ "webexAppManagementType": {
4051
+ "type": "string",
4052
+ "description": "Management mode applied to the Webex app.",
4053
+ "enum": [
4054
+ "UNMANAGED",
4055
+ "MDM_ONLY",
4056
+ "MAM_ONLY",
4057
+ "MDM_AND_MAM"
4058
+ ]
4059
+ },
4050
4060
  "emmVendorId": {
4051
4061
  "type": "string"
4052
4062
  },
@@ -600,6 +600,16 @@
600
600
  }
601
601
  }
602
602
  },
603
+ "webexAppManagementType": {
604
+ "type": "string",
605
+ "description": "Management mode applied to the Webex app.",
606
+ "enum": [
607
+ "UNMANAGED",
608
+ "MDM_ONLY",
609
+ "MAM_ONLY",
610
+ "MDM_AND_MAM"
611
+ ]
612
+ },
603
613
  "emmVendorId": {
604
614
  "type": "string"
605
615
  },
@@ -4693,6 +4703,16 @@
4693
4703
  }
4694
4704
  }
4695
4705
  },
4706
+ "webexAppManagementType": {
4707
+ "type": "string",
4708
+ "description": "Management mode applied to the Webex app.",
4709
+ "enum": [
4710
+ "UNMANAGED",
4711
+ "MDM_ONLY",
4712
+ "MAM_ONLY",
4713
+ "MDM_AND_MAM"
4714
+ ]
4715
+ },
4696
4716
  "emmVendorId": {
4697
4717
  "type": "string"
4698
4718
  },
@@ -14231,6 +14251,52 @@
14231
14251
  "clientPublicNetworkPrefix": {
14232
14252
  "type": "string"
14233
14253
  },
14254
+ "calling": {
14255
+ "type": "object",
14256
+ "description": "Result and timing information for Calling Services discovery.",
14257
+ "additionalProperties": true,
14258
+ "required": [
14259
+ "outcome",
14260
+ "reason",
14261
+ "clientRequested",
14262
+ "resolverLatencyMs"
14263
+ ],
14264
+ "properties": {
14265
+ "outcome": {
14266
+ "type": "string",
14267
+ "description": "Outcome of a Calling Services discovery attempt.",
14268
+ "enum": [
14269
+ "skipped",
14270
+ "resolved",
14271
+ "unavailable",
14272
+ "pending",
14273
+ "fail_open"
14274
+ ]
14275
+ },
14276
+ "reason": {
14277
+ "type": "string",
14278
+ "description": "Reason associated with a Calling Services discovery outcome.",
14279
+ "enum": [
14280
+ "none",
14281
+ "method_not_post",
14282
+ "missing_auth_context",
14283
+ "anonymous_user",
14284
+ "missing_org_id",
14285
+ "missing_user_id",
14286
+ "calling_not_enabled",
14287
+ "resolver_exception"
14288
+ ]
14289
+ },
14290
+ "clientRequested": {
14291
+ "type": "boolean"
14292
+ },
14293
+ "resolverLatencyMs": {
14294
+ "type": "number",
14295
+ "minimum": 0.0,
14296
+ "maximum": 9223372036854776000.0
14297
+ }
14298
+ }
14299
+ },
14234
14300
  "timeShotAgeSeconds": {
14235
14301
  "type": "number",
14236
14302
  "multipleOf": 0.1
@@ -349,6 +349,10 @@ export interface Event {
349
349
  totalSize?: number;
350
350
  additionalProperties?: never;
351
351
  };
352
+ /**
353
+ * Management mode applied to the Webex app.
354
+ */
355
+ webexAppManagementType?: "UNMANAGED" | "MDM_ONLY" | "MAM_ONLY" | "MDM_AND_MAM";
352
356
  emmVendorId?: string;
353
357
  isHybridMedia?: boolean;
354
358
  originData?: {};
@@ -2167,6 +2171,10 @@ export interface Event {
2167
2171
  totalSize?: number;
2168
2172
  additionalProperties?: never;
2169
2173
  };
2174
+ /**
2175
+ * Management mode applied to the Webex app.
2176
+ */
2177
+ webexAppManagementType?: "UNMANAGED" | "MDM_ONLY" | "MAM_ONLY" | "MDM_AND_MAM";
2170
2178
  emmVendorId?: string;
2171
2179
  isHybridMedia?: boolean;
2172
2180
  originData?: {};
@@ -6610,6 +6618,30 @@ export interface Event {
6610
6618
  anycastEntryPoint?: string;
6611
6619
  clientReportedIpVersion?: number;
6612
6620
  clientPublicNetworkPrefix?: string;
6621
+ /**
6622
+ * Result and timing information for Calling Services discovery.
6623
+ */
6624
+ calling?: {
6625
+ /**
6626
+ * Outcome of a Calling Services discovery attempt.
6627
+ */
6628
+ outcome: "skipped" | "resolved" | "unavailable" | "pending" | "fail_open";
6629
+ /**
6630
+ * Reason associated with a Calling Services discovery outcome.
6631
+ */
6632
+ reason:
6633
+ | "none"
6634
+ | "method_not_post"
6635
+ | "missing_auth_context"
6636
+ | "anonymous_user"
6637
+ | "missing_org_id"
6638
+ | "missing_user_id"
6639
+ | "calling_not_enabled"
6640
+ | "resolver_exception";
6641
+ clientRequested: boolean;
6642
+ resolverLatencyMs: number;
6643
+ additionalProperties?: never;
6644
+ };
6613
6645
  timeShotAgeSeconds?: number;
6614
6646
  trigger?: string;
6615
6647
  additionalProperties?: never;
@@ -18831,6 +18863,10 @@ export interface ClientEvent {
18831
18863
  totalSize?: number;
18832
18864
  additionalProperties?: never;
18833
18865
  };
18866
+ /**
18867
+ * Management mode applied to the Webex app.
18868
+ */
18869
+ webexAppManagementType?: "UNMANAGED" | "MDM_ONLY" | "MAM_ONLY" | "MDM_AND_MAM";
18834
18870
  emmVendorId?: string;
18835
18871
  isHybridMedia?: boolean;
18836
18872
  originData?: {};
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2221"
35
+ "version": "1.0.2223"
36
36
  }