@webex/event-dictionary-ts 1.0.1347 → 1.0.1348

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.
@@ -2057,6 +2057,19 @@
2057
2057
  "antiFraudBlocked": {
2058
2058
  "type": "boolean"
2059
2059
  },
2060
+ "sipResponseCode": {
2061
+ "type": "string",
2062
+ "enum": [
2063
+ "100_Trying",
2064
+ "183_Ringing",
2065
+ "200_Ok",
2066
+ "404_NotFound",
2067
+ "407_ProxyAuthRequired",
2068
+ "486_BusyHere",
2069
+ "503_ServiceUnavailable",
2070
+ "606_NotAcceptable"
2071
+ ]
2072
+ },
2060
2073
  "name": {
2061
2074
  "enum": [
2062
2075
  "client.alert.displayed",
@@ -2530,6 +2530,19 @@
2530
2530
  "antiFraudBlocked": {
2531
2531
  "type": "boolean"
2532
2532
  },
2533
+ "sipResponseCode": {
2534
+ "type": "string",
2535
+ "enum": [
2536
+ "100_Trying",
2537
+ "183_Ringing",
2538
+ "200_Ok",
2539
+ "404_NotFound",
2540
+ "407_ProxyAuthRequired",
2541
+ "486_BusyHere",
2542
+ "503_ServiceUnavailable",
2543
+ "606_NotAcceptable"
2544
+ ]
2545
+ },
2533
2546
  "name": {
2534
2547
  "enum": [
2535
2548
  "client.alert.displayed",
@@ -9265,6 +9278,19 @@
9265
9278
  "antiFraudBlocked": {
9266
9279
  "type": "boolean"
9267
9280
  },
9281
+ "sipResponseCode": {
9282
+ "type": "string",
9283
+ "enum": [
9284
+ "100_Trying",
9285
+ "183_Ringing",
9286
+ "200_Ok",
9287
+ "404_NotFound",
9288
+ "407_ProxyAuthRequired",
9289
+ "486_BusyHere",
9290
+ "503_ServiceUnavailable",
9291
+ "606_NotAcceptable"
9292
+ ]
9293
+ },
9268
9294
  "remoteAgent": {
9269
9295
  "type": "string"
9270
9296
  },
@@ -13300,6 +13326,19 @@
13300
13326
  "antiFraudBlocked": {
13301
13327
  "type": "boolean"
13302
13328
  },
13329
+ "sipResponseCode": {
13330
+ "type": "string",
13331
+ "enum": [
13332
+ "100_Trying",
13333
+ "183_Ringing",
13334
+ "200_Ok",
13335
+ "404_NotFound",
13336
+ "407_ProxyAuthRequired",
13337
+ "486_BusyHere",
13338
+ "503_ServiceUnavailable",
13339
+ "606_NotAcceptable"
13340
+ ]
13341
+ },
13303
13342
  "trigger": {
13304
13343
  "enum": [
13305
13344
  "dummyTrigger1",
@@ -21571,6 +21610,19 @@
21571
21610
  "antiFraudBlocked": {
21572
21611
  "type": "boolean"
21573
21612
  },
21613
+ "sipResponseCode": {
21614
+ "type": "string",
21615
+ "enum": [
21616
+ "100_Trying",
21617
+ "183_Ringing",
21618
+ "200_Ok",
21619
+ "404_NotFound",
21620
+ "407_ProxyAuthRequired",
21621
+ "486_BusyHere",
21622
+ "503_ServiceUnavailable",
21623
+ "606_NotAcceptable"
21624
+ ]
21625
+ },
21574
21626
  "name": {
21575
21627
  "enum": [
21576
21628
  "client.feature.audio.noise.removal",
@@ -2103,6 +2103,19 @@
2103
2103
  "antiFraudBlocked": {
2104
2104
  "type": "boolean"
2105
2105
  },
2106
+ "sipResponseCode": {
2107
+ "type": "string",
2108
+ "enum": [
2109
+ "100_Trying",
2110
+ "183_Ringing",
2111
+ "200_Ok",
2112
+ "404_NotFound",
2113
+ "407_ProxyAuthRequired",
2114
+ "486_BusyHere",
2115
+ "503_ServiceUnavailable",
2116
+ "606_NotAcceptable"
2117
+ ]
2118
+ },
2106
2119
  "name": {
2107
2120
  "enum": [
2108
2121
  "client.feature.audio.noise.removal",
@@ -2104,6 +2104,19 @@
2104
2104
  "antiFraudBlocked": {
2105
2105
  "type": "boolean"
2106
2106
  },
2107
+ "sipResponseCode": {
2108
+ "type": "string",
2109
+ "enum": [
2110
+ "100_Trying",
2111
+ "183_Ringing",
2112
+ "200_Ok",
2113
+ "404_NotFound",
2114
+ "407_ProxyAuthRequired",
2115
+ "486_BusyHere",
2116
+ "503_ServiceUnavailable",
2117
+ "606_NotAcceptable"
2118
+ ]
2119
+ },
2107
2120
  "trigger": {
2108
2121
  "enum": [
2109
2122
  "dummyTrigger1",
@@ -877,6 +877,15 @@ export interface Event {
877
877
  ivrServiceUcreAttempts?: number;
878
878
  antiFraudPolicyType?: string;
879
879
  antiFraudBlocked?: boolean;
880
+ sipResponseCode?:
881
+ | "100_Trying"
882
+ | "183_Ringing"
883
+ | "200_Ok"
884
+ | "404_NotFound"
885
+ | "407_ProxyAuthRequired"
886
+ | "486_BusyHere"
887
+ | "503_ServiceUnavailable"
888
+ | "606_NotAcceptable";
880
889
  name:
881
890
  | "client.alert.displayed"
882
891
  | "client.alert.removed"
@@ -3880,6 +3889,15 @@ export interface Event {
3880
3889
  ivrServiceUcreAttempts?: number;
3881
3890
  antiFraudPolicyType?: string;
3882
3891
  antiFraudBlocked?: boolean;
3892
+ sipResponseCode?:
3893
+ | "100_Trying"
3894
+ | "183_Ringing"
3895
+ | "200_Ok"
3896
+ | "404_NotFound"
3897
+ | "407_ProxyAuthRequired"
3898
+ | "486_BusyHere"
3899
+ | "503_ServiceUnavailable"
3900
+ | "606_NotAcceptable";
3883
3901
  remoteAgent?: string;
3884
3902
  name:
3885
3903
  | "breakout.breakout-session.move.initiated"
@@ -5521,6 +5539,15 @@ export interface Event {
5521
5539
  ivrServiceUcreAttempts?: number;
5522
5540
  antiFraudPolicyType?: string;
5523
5541
  antiFraudBlocked?: boolean;
5542
+ sipResponseCode?:
5543
+ | "100_Trying"
5544
+ | "183_Ringing"
5545
+ | "200_Ok"
5546
+ | "404_NotFound"
5547
+ | "407_ProxyAuthRequired"
5548
+ | "486_BusyHere"
5549
+ | "503_ServiceUnavailable"
5550
+ | "606_NotAcceptable";
5524
5551
  trigger?: "dummyTrigger1" | "dummyTrigger2" | "media-quality";
5525
5552
  name: "server.mediaquality.event" | "client.mediaquality.event";
5526
5553
  /**
@@ -8508,6 +8535,15 @@ export interface Event {
8508
8535
  ivrServiceUcreAttempts?: number;
8509
8536
  antiFraudPolicyType?: string;
8510
8537
  antiFraudBlocked?: boolean;
8538
+ sipResponseCode?:
8539
+ | "100_Trying"
8540
+ | "183_Ringing"
8541
+ | "200_Ok"
8542
+ | "404_NotFound"
8543
+ | "407_ProxyAuthRequired"
8544
+ | "486_BusyHere"
8545
+ | "503_ServiceUnavailable"
8546
+ | "606_NotAcceptable";
8511
8547
  name:
8512
8548
  | "client.feature.audio.noise.removal"
8513
8549
  | "client.feature.embedded-object-info"
@@ -10104,6 +10140,15 @@ export interface ClientEvent {
10104
10140
  ivrServiceUcreAttempts?: number;
10105
10141
  antiFraudPolicyType?: string;
10106
10142
  antiFraudBlocked?: boolean;
10143
+ sipResponseCode?:
10144
+ | "100_Trying"
10145
+ | "183_Ringing"
10146
+ | "200_Ok"
10147
+ | "404_NotFound"
10148
+ | "407_ProxyAuthRequired"
10149
+ | "486_BusyHere"
10150
+ | "503_ServiceUnavailable"
10151
+ | "606_NotAcceptable";
10107
10152
  name:
10108
10153
  | "client.alert.displayed"
10109
10154
  | "client.alert.removed"
@@ -13014,6 +13059,15 @@ export interface FeatureEvent {
13014
13059
  ivrServiceUcreAttempts?: number;
13015
13060
  antiFraudPolicyType?: string;
13016
13061
  antiFraudBlocked?: boolean;
13062
+ sipResponseCode?:
13063
+ | "100_Trying"
13064
+ | "183_Ringing"
13065
+ | "200_Ok"
13066
+ | "404_NotFound"
13067
+ | "407_ProxyAuthRequired"
13068
+ | "486_BusyHere"
13069
+ | "503_ServiceUnavailable"
13070
+ | "606_NotAcceptable";
13017
13071
  name:
13018
13072
  | "client.feature.audio.noise.removal"
13019
13073
  | "client.feature.embedded-object-info"
@@ -14597,6 +14651,15 @@ export interface MediaQualityEvent {
14597
14651
  ivrServiceUcreAttempts?: number;
14598
14652
  antiFraudPolicyType?: string;
14599
14653
  antiFraudBlocked?: boolean;
14654
+ sipResponseCode?:
14655
+ | "100_Trying"
14656
+ | "183_Ringing"
14657
+ | "200_Ok"
14658
+ | "404_NotFound"
14659
+ | "407_ProxyAuthRequired"
14660
+ | "486_BusyHere"
14661
+ | "503_ServiceUnavailable"
14662
+ | "606_NotAcceptable";
14600
14663
  trigger?: "dummyTrigger1" | "dummyTrigger2" | "media-quality";
14601
14664
  name: "server.mediaquality.event" | "client.mediaquality.event";
14602
14665
  /**
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.1347"
31
+ "version": "1.0.1348"
32
32
  }