@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.
@@ -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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.9",
2
+ "version": "1.0.11",
3
3
  "repository": {
4
4
  "type": "git",
5
5
  "url": "https://github.com/Appfoster/upsnap-strapi"