simple-strapi 1.0.0-alpha.20 → 1.0.0-alpha.21
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/client.d.ts +2 -0
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ declare class Client {
|
|
|
95
95
|
pageSize?: number;
|
|
96
96
|
};
|
|
97
97
|
populate?: any;
|
|
98
|
+
filters?: Record<string, any>;
|
|
98
99
|
}>): Promise<{
|
|
99
100
|
data: InferSchemaWithDefaults<S>[];
|
|
100
101
|
meta: any;
|
|
@@ -105,6 +106,7 @@ declare class Client {
|
|
|
105
106
|
pageSize?: number;
|
|
106
107
|
};
|
|
107
108
|
populate?: any;
|
|
109
|
+
filters?: Record<string, any>;
|
|
108
110
|
}>): Promise<{
|
|
109
111
|
data: any[];
|
|
110
112
|
meta: any;
|