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/cjs/index.js.map +1 -1
- package/dist/esm/api/Scheduler.d.ts +8 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/api/Scheduler.ts +8 -0
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
package/src/api/Scheduler.ts
CHANGED
|
@@ -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';
|