@medrunner/api-client 0.7.0-beta.1 → 0.7.0-beta.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 +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -176,7 +176,11 @@ declare class AuthEndpoint extends ApiEndpoint {
|
|
|
176
176
|
deleteApiToken(id: string): Promise<ApiResponse>;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
interface
|
|
179
|
+
interface WritableDbItem extends DbItem {
|
|
180
|
+
updated: string;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
interface ChatMessage extends WritableDbItem {
|
|
180
184
|
/**
|
|
181
185
|
* The emergency associated with the chat message
|
|
182
186
|
* */
|
|
@@ -295,10 +299,6 @@ interface EmergencyStats {
|
|
|
295
299
|
canceled: number;
|
|
296
300
|
}
|
|
297
301
|
|
|
298
|
-
interface WritableDbItem extends DbItem {
|
|
299
|
-
updated: string;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
302
|
interface Person extends WritableDbItem {
|
|
303
303
|
discordId: string;
|
|
304
304
|
rsiHandle?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -176,7 +176,11 @@ declare class AuthEndpoint extends ApiEndpoint {
|
|
|
176
176
|
deleteApiToken(id: string): Promise<ApiResponse>;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
interface
|
|
179
|
+
interface WritableDbItem extends DbItem {
|
|
180
|
+
updated: string;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
interface ChatMessage extends WritableDbItem {
|
|
180
184
|
/**
|
|
181
185
|
* The emergency associated with the chat message
|
|
182
186
|
* */
|
|
@@ -295,10 +299,6 @@ interface EmergencyStats {
|
|
|
295
299
|
canceled: number;
|
|
296
300
|
}
|
|
297
301
|
|
|
298
|
-
interface WritableDbItem extends DbItem {
|
|
299
|
-
updated: string;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
302
|
interface Person extends WritableDbItem {
|
|
303
303
|
discordId: string;
|
|
304
304
|
rsiHandle?: string;
|