@vendasta/conversation 0.57.0 → 0.58.0

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.
@@ -970,6 +970,12 @@ class Widget {
970
970
  if (typeof this.textColor !== 'undefined') {
971
971
  toReturn['textColor'] = this.textColor;
972
972
  }
973
+ if (typeof this.accentColor !== 'undefined') {
974
+ toReturn['accentColor'] = this.accentColor;
975
+ }
976
+ if (typeof this.accentTextColor !== 'undefined') {
977
+ toReturn['accentTextColor'] = this.accentTextColor;
978
+ }
973
979
  return toReturn;
974
980
  }
975
981
  }
@@ -1452,6 +1458,12 @@ class CreateWidgetRequest {
1452
1458
  if (typeof this.textColor !== 'undefined') {
1453
1459
  toReturn['textColor'] = this.textColor;
1454
1460
  }
1461
+ if (typeof this.accentColor !== 'undefined') {
1462
+ toReturn['accentColor'] = this.accentColor;
1463
+ }
1464
+ if (typeof this.accentTextColor !== 'undefined') {
1465
+ toReturn['accentTextColor'] = this.accentTextColor;
1466
+ }
1455
1467
  return toReturn;
1456
1468
  }
1457
1469
  }
@@ -2304,6 +2316,12 @@ class GetWidgetConfigResponse {
2304
2316
  if (typeof this.textColor !== 'undefined') {
2305
2317
  toReturn['textColor'] = this.textColor;
2306
2318
  }
2319
+ if (typeof this.accentColor !== 'undefined') {
2320
+ toReturn['accentColor'] = this.accentColor;
2321
+ }
2322
+ if (typeof this.accentTextColor !== 'undefined') {
2323
+ toReturn['accentTextColor'] = this.accentTextColor;
2324
+ }
2307
2325
  return toReturn;
2308
2326
  }
2309
2327
  }
@@ -3344,6 +3362,12 @@ class UpdateWidgetRequest {
3344
3362
  if (typeof this.textColor !== 'undefined') {
3345
3363
  toReturn['textColor'] = this.textColor;
3346
3364
  }
3365
+ if (typeof this.accentColor !== 'undefined') {
3366
+ toReturn['accentColor'] = this.accentColor;
3367
+ }
3368
+ if (typeof this.accentTextColor !== 'undefined') {
3369
+ toReturn['accentTextColor'] = this.accentTextColor;
3370
+ }
3347
3371
  return toReturn;
3348
3372
  }
3349
3373
  }