@zennify/sdk-js 1.37.4 → 1.37.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zennify/sdk-js",
3
- "version": "1.37.4",
3
+ "version": "1.37.5",
4
4
  "description": "A simple package to work with https://api.zennify.app",
5
5
  "main": "dist/main.js",
6
6
  "keywords": [],
@@ -8,7 +8,8 @@ export interface PartialStore {
8
8
  expires_at: string,
9
9
  icon_id?: string | null,
10
10
  banner_id?: string | null,
11
- pending_setup?: boolean | null
11
+ pending_setup?: boolean | null,
12
+ is_owner: boolean
12
13
  }
13
14
 
14
15
  export type StoreModeratorPermissions =
@@ -7,6 +7,7 @@ export interface PartialStore {
7
7
  icon_id?: string | null;
8
8
  banner_id?: string | null;
9
9
  pending_setup?: boolean | null;
10
+ is_owner: boolean;
10
11
  }
11
12
  export type StoreModeratorPermissions = 'MANAGE_DISCORD_CART' | 'MANAGE_DISCORD_PANELS' | 'MANAGE_PRODUCTS' | 'MANAGE_COUPONS';
12
13
  export type StoreModerator = {