@tmdjr/user-metadata-contracts 0.0.44 → 0.0.45
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.
|
@@ -191,6 +191,10 @@ export interface operations {
|
|
|
191
191
|
query?: {
|
|
192
192
|
page?: components["schemas"]["Object"];
|
|
193
193
|
limit?: components["schemas"]["Object"];
|
|
194
|
+
/** @description Search by first name, last name, uuid or email */
|
|
195
|
+
query?: string;
|
|
196
|
+
/** @description Filter by user role */
|
|
197
|
+
role?: "regular" | "publisher" | "admin";
|
|
194
198
|
};
|
|
195
199
|
header?: never;
|
|
196
200
|
path?: never;
|