@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 +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
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[];
|