zdk 0.2.0 → 0.2.1
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 +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -153,14 +153,14 @@ interface IConnectionList {
|
|
|
153
153
|
connections: IConnection[];
|
|
154
154
|
}
|
|
155
155
|
interface ITicketUpdateForm {
|
|
156
|
-
status
|
|
157
|
-
userId
|
|
158
|
-
queueId
|
|
156
|
+
status?: TicketStatus;
|
|
157
|
+
userId?: number;
|
|
158
|
+
queueId?: number;
|
|
159
159
|
}
|
|
160
160
|
interface ITicketTransferForm {
|
|
161
|
-
queueId
|
|
162
|
-
userId
|
|
163
|
-
connectionId
|
|
161
|
+
queueId?: number;
|
|
162
|
+
userId?: number;
|
|
163
|
+
connectionId?: number;
|
|
164
164
|
}
|
|
165
165
|
interface ITicketResolveForm {
|
|
166
166
|
feedbackOption: FeedbackOption;
|
package/dist/index.d.ts
CHANGED
|
@@ -153,14 +153,14 @@ interface IConnectionList {
|
|
|
153
153
|
connections: IConnection[];
|
|
154
154
|
}
|
|
155
155
|
interface ITicketUpdateForm {
|
|
156
|
-
status
|
|
157
|
-
userId
|
|
158
|
-
queueId
|
|
156
|
+
status?: TicketStatus;
|
|
157
|
+
userId?: number;
|
|
158
|
+
queueId?: number;
|
|
159
159
|
}
|
|
160
160
|
interface ITicketTransferForm {
|
|
161
|
-
queueId
|
|
162
|
-
userId
|
|
163
|
-
connectionId
|
|
161
|
+
queueId?: number;
|
|
162
|
+
userId?: number;
|
|
163
|
+
connectionId?: number;
|
|
164
164
|
}
|
|
165
165
|
interface ITicketResolveForm {
|
|
166
166
|
feedbackOption: FeedbackOption;
|