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.
@@ -100,6 +100,14 @@ export interface DiscordUserCommandStatus {
100
100
  command_name: string;
101
101
  setup_path: string;
102
102
  configured: boolean;
103
+ command_ready: boolean;
104
+ credentials_configured: boolean;
105
+ user_install_enabled: boolean;
106
+ interactions_endpoint_configured: boolean;
107
+ command_registered: boolean;
108
+ command_id?: string | null;
109
+ configuration_error?: string | null;
110
+ checked_at?: string | null;
103
111
  }
104
112
  export type DiscordMediaCaptureStatus = 'processing' | 'ready' | 'complete' | 'failed' | 'expired';
105
113
  export type DiscordMediaCaptureAttachmentStatus = 'processing' | 'ready' | 'duplicate' | 'unsupported' | 'failed' | 'imported';