@deliverart/sdk-js-user 0.1.0 → 0.1.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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/requests/GetUsers.ts +1 -5
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/requests/GetUsers.ts
CHANGED
|
@@ -26,11 +26,7 @@ export type GetUsersResponse = z.infer<typeof getUsersResponseSchema>
|
|
|
26
26
|
|
|
27
27
|
export const getUsersInputSchema = z.undefined()
|
|
28
28
|
|
|
29
|
-
export class
|
|
30
|
-
void,
|
|
31
|
-
GetUsersResponse,
|
|
32
|
-
GetUsersQueryParams
|
|
33
|
-
> {
|
|
29
|
+
export class GetUsers extends AbstractApiRequest<void, GetUsersResponse, GetUsersQueryParams> {
|
|
34
30
|
readonly method = 'GET'
|
|
35
31
|
readonly contentType = 'application/json'
|
|
36
32
|
readonly accept = 'application/json'
|