glitch-javascript-sdk 3.8.2 → 3.8.3

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/index.d.ts CHANGED
@@ -7066,6 +7066,14 @@ interface DiscordUserCommandStatus {
7066
7066
  command_name: string;
7067
7067
  setup_path: string;
7068
7068
  configured: boolean;
7069
+ command_ready: boolean;
7070
+ credentials_configured: boolean;
7071
+ user_install_enabled: boolean;
7072
+ interactions_endpoint_configured: boolean;
7073
+ command_registered: boolean;
7074
+ command_id?: string | null;
7075
+ configuration_error?: string | null;
7076
+ checked_at?: string | null;
7069
7077
  }
7070
7078
  type DiscordMediaCaptureStatus = 'processing' | 'ready' | 'complete' | 'failed' | 'expired';
7071
7079
  type DiscordMediaCaptureAttachmentStatus = 'processing' | 'ready' | 'duplicate' | 'unsupported' | 'failed' | 'imported';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glitch-javascript-sdk",
3
- "version": "3.8.2",
3
+ "version": "3.8.3",
4
4
  "description": "Javascript SDK for Glitch",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -112,6 +112,14 @@ export interface DiscordUserCommandStatus {
112
112
  command_name: string;
113
113
  setup_path: string;
114
114
  configured: boolean;
115
+ command_ready: boolean;
116
+ credentials_configured: boolean;
117
+ user_install_enabled: boolean;
118
+ interactions_endpoint_configured: boolean;
119
+ command_registered: boolean;
120
+ command_id?: string | null;
121
+ configuration_error?: string | null;
122
+ checked_at?: string | null;
115
123
  }
116
124
 
117
125
  export type DiscordMediaCaptureStatus = 'processing' | 'ready' | 'complete' | 'failed' | 'expired';