@upsnap/strapi 1.0.9 → 1.0.11
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/README.md +13 -26
- package/dist/admin/{App-CZcDoGMB.mjs → App-BIxhBt5_.mjs} +1606 -504
- package/dist/admin/{App-CEvUaGYv.js → App-CH5fBeNI.js} +1605 -503
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/dist/server/index.js +249 -81
- package/dist/server/index.mjs +249 -81
- package/dist/server/src/index.d.ts +11 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ declare const _default: {
|
|
|
4
4
|
}) => void;
|
|
5
5
|
bootstrap: ({ strapi }: {
|
|
6
6
|
strapi: import('@strapi/types/dist/core').Strapi;
|
|
7
|
-
}) => void
|
|
7
|
+
}) => Promise<void>;
|
|
8
8
|
destroy: ({ strapi }: {
|
|
9
9
|
strapi: import('@strapi/types/dist/core').Strapi;
|
|
10
10
|
}) => void;
|
|
@@ -91,6 +91,15 @@ declare const _default: {
|
|
|
91
91
|
updateNotificationChannel(ctx: any): Promise<void>;
|
|
92
92
|
deleteNotificationChannel(ctx: any): Promise<void>;
|
|
93
93
|
};
|
|
94
|
+
tags: ({ strapi }: {
|
|
95
|
+
strapi: import('@strapi/types/dist/core').Strapi;
|
|
96
|
+
}) => {
|
|
97
|
+
getTags(ctx: any): Promise<void>;
|
|
98
|
+
getTagsByID(ctx: any): Promise<void>;
|
|
99
|
+
createTag(ctx: any): Promise<void>;
|
|
100
|
+
updateTags(ctx: any): Promise<void>;
|
|
101
|
+
deleteTags(ctx: any): Promise<void>;
|
|
102
|
+
};
|
|
94
103
|
};
|
|
95
104
|
routes: {
|
|
96
105
|
admin: {
|
|
@@ -137,6 +146,7 @@ declare const _default: {
|
|
|
137
146
|
};
|
|
138
147
|
getToken(): Promise<string>;
|
|
139
148
|
makeBackendRequest(endpoint: string, options: RequestInit, forValidation?: boolean, sessionToken?: string): Promise<unknown>;
|
|
149
|
+
trackInstallation(): Promise<void>;
|
|
140
150
|
};
|
|
141
151
|
userDetailsService: ({ strapi }: {
|
|
142
152
|
strapi: import('@strapi/types/dist/core').Strapi;
|
package/package.json
CHANGED