@malevich-studio/strapi-sdk-typescript 1.1.0 → 1.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/dist/cli.cjs +3 -3
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +3 -3
- package/dist/cli.mjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ type Query<Fields, Sort, Filters, Populate> = {
|
|
|
108
108
|
limit?: number;
|
|
109
109
|
});
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type DynamiczoneComponent<ComponentName, ComponentInputType> = ComponentInputType & {
|
|
112
112
|
__component: ComponentName;
|
|
113
113
|
};
|
|
114
114
|
type DynamiczonePopulate<T> = {
|
|
@@ -139,4 +139,4 @@ declare class Strapi {
|
|
|
139
139
|
private baseFetch;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
export { type
|
|
142
|
+
export { type DynamiczoneComponent, type DynamiczonePopulate, type File, type FilterValue, type Filters, type Folder, type Query, type RelationInput, Strapi };
|