@malevich-studio/strapi-sdk-typescript 1.2.26 → 1.2.28
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 +251 -268
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +251 -268
- package/dist/cli.mjs.map +1 -1
- package/dist/index.cjs +249 -267
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +249 -267
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -2
package/dist/index.d.ts
CHANGED
|
@@ -192,6 +192,9 @@ declare class Strapi {
|
|
|
192
192
|
uploadForm(form: FormData): Promise<File[]>;
|
|
193
193
|
private baseFetch;
|
|
194
194
|
private permissionsList?;
|
|
195
|
+
private mergePermissionsPreferChild;
|
|
196
|
+
private fetchRolePermissions;
|
|
197
|
+
private collectRolePermissions;
|
|
195
198
|
can(uid: string, controller: string, action: string): Promise<boolean>;
|
|
196
199
|
}
|
|
197
200
|
|