@zennify/sdk-js 1.33.0 → 1.34.0

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.33.0",
3
+ "version": "1.34.0",
4
4
  "description": "A simple package to work with https://api.zennify.app",
5
5
  "main": "dist/main.js",
6
6
  "keywords": [],
@@ -22,8 +22,8 @@ type DiscordOrder = {
22
22
  discord_guild_id: string,
23
23
  discord_channel_id: string,
24
24
  discord_channel_message_id: string
25
- discord_sale_channel_id?: string | null,
26
- discord_sale_message_id?: string | null,
25
+ discord_sale_message?: `${string}-${string}-${string}` | null,
26
+ discord_feedback_message?: `${string}-${string}-${string}` | null,
27
27
  }
28
28
 
29
29
  type SaleTransaction = {
@@ -21,8 +21,8 @@ type DiscordOrder = {
21
21
  discord_guild_id: string;
22
22
  discord_channel_id: string;
23
23
  discord_channel_message_id: string;
24
- discord_sale_channel_id?: string | null;
25
- discord_sale_message_id?: string | null;
24
+ discord_sale_message?: `${string}-${string}-${string}` | null;
25
+ discord_feedback_message?: `${string}-${string}-${string}` | null;
26
26
  };
27
27
  type SaleTransaction = {
28
28
  type: 'sale';