@diffsome/sdk 3.3.1 → 3.3.2

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.
package/dist/index.d.mts CHANGED
@@ -15122,6 +15122,15 @@ interface SendMessageData {
15122
15122
  interface ChatAvailability {
15123
15123
  available: boolean;
15124
15124
  agents_online: number;
15125
+ within_operating_hours: boolean;
15126
+ offline_message?: string;
15127
+ operating_hours?: {
15128
+ timezone: string;
15129
+ today: {
15130
+ start: string;
15131
+ end: string;
15132
+ } | null;
15133
+ };
15125
15134
  }
15126
15135
  interface PollResponse {
15127
15136
  messages: ChatMessage[];
package/dist/index.d.ts CHANGED
@@ -15122,6 +15122,15 @@ interface SendMessageData {
15122
15122
  interface ChatAvailability {
15123
15123
  available: boolean;
15124
15124
  agents_online: number;
15125
+ within_operating_hours: boolean;
15126
+ offline_message?: string;
15127
+ operating_hours?: {
15128
+ timezone: string;
15129
+ today: {
15130
+ start: string;
15131
+ end: string;
15132
+ } | null;
15133
+ };
15125
15134
  }
15126
15135
  interface PollResponse {
15127
15136
  messages: ChatMessage[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diffsome/sdk",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Diffsome SDK for JavaScript/TypeScript - Different + Awesome",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",