@hortonstudio/main 1.1.2 → 1.1.4
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/.claude/settings.local.json +2 -1
- package/index.js +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
// Configuration: Change this variable to rename the API
|
2
|
+
console.log('🚀 SCRIPT FILE LOADED');
|
2
3
|
const API_NAME = 'hsmain';
|
3
4
|
|
4
5
|
window[API_NAME] = window[API_NAME] || {};
|
@@ -156,6 +157,7 @@ const loadHsModule = async (moduleName) => {
|
|
156
157
|
};
|
157
158
|
|
158
159
|
const initializeAPI = () => {
|
160
|
+
console.log('🔍 Initializing HortonStudio API...');
|
159
161
|
const apiInstance = window[API_NAME];
|
160
162
|
|
161
163
|
const existingRequests = Array.isArray(apiInstance) ? apiInstance : [];
|