@webex/event-dictionary-ts 1.0.1587 → 1.0.1588

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.
@@ -11858,6 +11858,81 @@
11858
11858
  }
11859
11859
  }
11860
11860
  }
11861
+ },
11862
+ "designatedClusters": {
11863
+ "type": "array",
11864
+ "items": {
11865
+ "type": "object",
11866
+ "description": "metadata associated with a media cluster.",
11867
+ "additionalProperties": true,
11868
+ "required": [
11869
+ "serverOrgId",
11870
+ "serverGroupId",
11871
+ "isHybridMedia"
11872
+ ],
11873
+ "properties": {
11874
+ "serverOrgId": {
11875
+ "type": "string"
11876
+ },
11877
+ "serverGroupId": {
11878
+ "type": "string"
11879
+ },
11880
+ "isHybridMedia": {
11881
+ "type": "boolean"
11882
+ },
11883
+ "clusterAlreadyInVenue": {
11884
+ "type": "boolean"
11885
+ },
11886
+ "transportTypes": {
11887
+ "type": "array",
11888
+ "items": {
11889
+ "type": "string",
11890
+ "description": "indicates transport type used",
11891
+ "enum": [
11892
+ "UDP",
11893
+ "TCP",
11894
+ "xTLS",
11895
+ "TLS"
11896
+ ]
11897
+ }
11898
+ },
11899
+ "latency": {
11900
+ "type": "integer"
11901
+ },
11902
+ "skippedReason": {
11903
+ "enum": [
11904
+ "CAPACITY",
11905
+ "CLIENT_EXCLUSION",
11906
+ "LATENCY",
11907
+ "OFFLINE",
11908
+ "UNREACHABLE",
11909
+ "CAPACITY_OR_UNREACHABLE",
11910
+ "PRIVATE_MEETING_CLUSTER"
11911
+ ],
11912
+ "type": "string"
11913
+ },
11914
+ "reason": {
11915
+ "enum": [
11916
+ "CLOUD_INGRESS_REGION",
11917
+ "CLIENT_SOURCE_REGION",
11918
+ "CALLER_CLUSTER",
11919
+ "DESIGNATED_CLUSTER",
11920
+ "GEO_HINT",
11921
+ "LINUS_SELECT",
11922
+ "OVERRIDE_PREFERRED_CLUSTER",
11923
+ "PREFERRED_CLUSTER",
11924
+ "REACHABILITY",
11925
+ "USER_SETTING",
11926
+ "FAILOVER_CLUSTER",
11927
+ "DEFAULT_CLUSTER"
11928
+ ],
11929
+ "type": "string"
11930
+ },
11931
+ "region": {
11932
+ "type": "string"
11933
+ }
11934
+ }
11935
+ }
11861
11936
  }
11862
11937
  }
11863
11938
  },
@@ -5249,6 +5249,37 @@ export interface Event {
5249
5249
  region?: string;
5250
5250
  additionalProperties?: false;
5251
5251
  }[];
5252
+ designatedClusters?: {
5253
+ serverOrgId: string;
5254
+ serverGroupId: string;
5255
+ isHybridMedia: boolean;
5256
+ clusterAlreadyInVenue?: boolean;
5257
+ transportTypes?: ("UDP" | "TCP" | "xTLS" | "TLS")[];
5258
+ latency?: number;
5259
+ skippedReason?:
5260
+ | "CAPACITY"
5261
+ | "CLIENT_EXCLUSION"
5262
+ | "LATENCY"
5263
+ | "OFFLINE"
5264
+ | "UNREACHABLE"
5265
+ | "CAPACITY_OR_UNREACHABLE"
5266
+ | "PRIVATE_MEETING_CLUSTER";
5267
+ reason?:
5268
+ | "CLOUD_INGRESS_REGION"
5269
+ | "CLIENT_SOURCE_REGION"
5270
+ | "CALLER_CLUSTER"
5271
+ | "DESIGNATED_CLUSTER"
5272
+ | "GEO_HINT"
5273
+ | "LINUS_SELECT"
5274
+ | "OVERRIDE_PREFERRED_CLUSTER"
5275
+ | "PREFERRED_CLUSTER"
5276
+ | "REACHABILITY"
5277
+ | "USER_SETTING"
5278
+ | "FAILOVER_CLUSTER"
5279
+ | "DEFAULT_CLUSTER";
5280
+ region?: string;
5281
+ additionalProperties?: false;
5282
+ }[];
5252
5283
  additionalProperties?: false;
5253
5284
  };
5254
5285
  /**
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1587"
31
+ "version": "1.0.1588"
32
32
  }