@webex/event-dictionary-ts 1.0.2019 → 1.0.2021

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.
@@ -36921,7 +36921,8 @@
36921
36921
  "SessionOpenNoAgentsAvailable",
36922
36922
  "SessionOpenTimeout",
36923
36923
  "SessionOpenFailed",
36924
- "RecordingCreateFailed"
36924
+ "RecordingCreateFailed",
36925
+ "TimeoutWaitingForEvent"
36925
36926
  ]
36926
36927
  },
36927
36928
  "failureDescription": {
@@ -36932,7 +36933,7 @@
36932
36933
  "type": "object",
36933
36934
  "additionalProperties": true,
36934
36935
  "required": [
36935
- "correlationId"
36936
+ "recordingId"
36936
36937
  ],
36937
36938
  "properties": {
36938
36939
  "aggregatedBreakoutMoveId": {
@@ -36965,6 +36966,9 @@
36965
36966
  "type": "string",
36966
36967
  "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
36967
36968
  },
36969
+ "correlationId": {
36970
+ "type": "string"
36971
+ },
36968
36972
  "cpaasIdentifiers": {
36969
36973
  "type": "object",
36970
36974
  "description": "Set of identifiers dedicated to CPaaS clients\nIn general, these should be populated whenever possible. Subtypes may make a particular key required.\n",
@@ -37216,9 +37220,6 @@
37216
37220
  "webexWebDomain": {
37217
37221
  "type": "string"
37218
37222
  },
37219
- "recordingId": {
37220
- "type": "string"
37221
- },
37222
37223
  "clientCorrelationId": {
37223
37224
  "type": "string"
37224
37225
  },
@@ -37228,7 +37229,7 @@
37228
37229
  "customerOrgId": {
37229
37230
  "type": "string"
37230
37231
  },
37231
- "correlationId": {
37232
+ "recordingId": {
37232
37233
  "type": "string"
37233
37234
  }
37234
37235
  }
@@ -15358,7 +15358,8 @@ export interface Event {
15358
15358
  | "SessionOpenNoAgentsAvailable"
15359
15359
  | "SessionOpenTimeout"
15360
15360
  | "SessionOpenFailed"
15361
- | "RecordingCreateFailed";
15361
+ | "RecordingCreateFailed"
15362
+ | "TimeoutWaitingForEvent";
15362
15363
  failureDescription?: string;
15363
15364
  /**
15364
15365
  * Base type for the various identifiers used to connect the dots.
@@ -15374,6 +15375,7 @@ export interface Event {
15374
15375
  breakoutSessionId?: string;
15375
15376
  ciExchangeTokenUrl?: string;
15376
15377
  confluenceId?: string;
15378
+ correlationId?: string;
15377
15379
  /**
15378
15380
  * Set of identifiers dedicated to CPaaS clients
15379
15381
  * In general, these should be populated whenever possible. Subtypes may make a particular key required.
@@ -15451,11 +15453,10 @@ export interface Event {
15451
15453
  webexSiteUuid?: string;
15452
15454
  webexUserId?: number;
15453
15455
  webexWebDomain?: string;
15454
- recordingId?: string;
15455
15456
  clientCorrelationId?: string;
15456
15457
  idForEndpointAB?: string;
15457
15458
  customerOrgId?: string;
15458
- correlationId: string;
15459
+ recordingId: string;
15459
15460
  additionalProperties?: false;
15460
15461
  };
15461
15462
  /**
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.2019"
30
+ "version": "1.0.2021"
31
31
  }