@skravets/eapi 0.0.26 → 0.0.29
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/api-types.d.cts +1 -1
- package/dist/api-types.d.ts +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/api-types.d.cts
CHANGED
package/dist/api-types.d.ts
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -95,7 +95,7 @@ interface PublishersStatusQueueInputJoin {
|
|
|
95
95
|
firstName?: string;
|
|
96
96
|
lastName?: string;
|
|
97
97
|
};
|
|
98
|
-
status: "UNAVAILABLE" | "ALREADY_JOINED" | "JOINED" | "FLOOD_WAIT" | "INVITE_REQUEST_SENT";
|
|
98
|
+
status: "UNAVAILABLE" | "ALREADY_JOINED" | "JOINED" | "FLOOD_WAIT" | "INVITE_REQUEST_SENT" | "USERNAME_BELONGS_TO_USER";
|
|
99
99
|
seconds?: number;
|
|
100
100
|
}
|
|
101
101
|
interface PublishersStatusQueueInputJoinResult extends PublishersStatusQueueInputJoin {
|
|
@@ -107,7 +107,8 @@ interface PublishersStatusQueueInputSend {
|
|
|
107
107
|
};
|
|
108
108
|
chat: {
|
|
109
109
|
id: number;
|
|
110
|
-
|
|
110
|
+
type: "chat" | "channel" | "user";
|
|
111
|
+
username?: string;
|
|
111
112
|
};
|
|
112
113
|
account: {
|
|
113
114
|
id: number;
|
|
@@ -144,6 +145,7 @@ interface PublishersStatusQueueInputAgentPrivateMessage {
|
|
|
144
145
|
username?: string;
|
|
145
146
|
first_name?: string;
|
|
146
147
|
last_name?: string;
|
|
148
|
+
is_bot?: boolean;
|
|
147
149
|
};
|
|
148
150
|
message: AgentMessage;
|
|
149
151
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -95,7 +95,7 @@ interface PublishersStatusQueueInputJoin {
|
|
|
95
95
|
firstName?: string;
|
|
96
96
|
lastName?: string;
|
|
97
97
|
};
|
|
98
|
-
status: "UNAVAILABLE" | "ALREADY_JOINED" | "JOINED" | "FLOOD_WAIT" | "INVITE_REQUEST_SENT";
|
|
98
|
+
status: "UNAVAILABLE" | "ALREADY_JOINED" | "JOINED" | "FLOOD_WAIT" | "INVITE_REQUEST_SENT" | "USERNAME_BELONGS_TO_USER";
|
|
99
99
|
seconds?: number;
|
|
100
100
|
}
|
|
101
101
|
interface PublishersStatusQueueInputJoinResult extends PublishersStatusQueueInputJoin {
|
|
@@ -107,7 +107,8 @@ interface PublishersStatusQueueInputSend {
|
|
|
107
107
|
};
|
|
108
108
|
chat: {
|
|
109
109
|
id: number;
|
|
110
|
-
|
|
110
|
+
type: "chat" | "channel" | "user";
|
|
111
|
+
username?: string;
|
|
111
112
|
};
|
|
112
113
|
account: {
|
|
113
114
|
id: number;
|
|
@@ -144,6 +145,7 @@ interface PublishersStatusQueueInputAgentPrivateMessage {
|
|
|
144
145
|
username?: string;
|
|
145
146
|
first_name?: string;
|
|
146
147
|
last_name?: string;
|
|
148
|
+
is_bot?: boolean;
|
|
147
149
|
};
|
|
148
150
|
message: AgentMessage;
|
|
149
151
|
}
|