@base44-preview/cli 0.0.31-pr.214.ad2828d → 0.0.31-pr.214.d023fbb
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/cli/index.js +8 -6
- package/dist/cli/index.js.map +7 -7
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -184916,7 +184916,8 @@ async function pushAgents(agents) {
|
|
|
184916
184916
|
let response;
|
|
184917
184917
|
try {
|
|
184918
184918
|
response = await appClient.put("agent-configs", {
|
|
184919
|
-
json: agents
|
|
184919
|
+
json: agents,
|
|
184920
|
+
timeout: 60000
|
|
184920
184921
|
});
|
|
184921
184922
|
} catch (error48) {
|
|
184922
184923
|
throw await ApiError.fromHttpError(error48, "syncing agents");
|
|
@@ -185479,7 +185480,8 @@ async function syncEntities(entities) {
|
|
|
185479
185480
|
response = await appClient.put("entity-schemas", {
|
|
185480
185481
|
json: {
|
|
185481
185482
|
entityNameToSchema: schemaSyncPayload
|
|
185482
|
-
}
|
|
185483
|
+
},
|
|
185484
|
+
timeout: 60000
|
|
185483
185485
|
});
|
|
185484
185486
|
} catch (error48) {
|
|
185485
185487
|
throw await ApiError.fromHttpError(error48, "syncing entities");
|
|
@@ -185606,7 +185608,7 @@ async function deployFunctions(functions) {
|
|
|
185606
185608
|
try {
|
|
185607
185609
|
response = await appClient.put("backend-functions", {
|
|
185608
185610
|
json: payload,
|
|
185609
|
-
timeout:
|
|
185611
|
+
timeout: false
|
|
185610
185612
|
});
|
|
185611
185613
|
} catch (error48) {
|
|
185612
185614
|
throw await ApiError.fromHttpError(error48, "deploying functions");
|
|
@@ -185911,7 +185913,8 @@ async function uploadSite(archivePath) {
|
|
|
185911
185913
|
let response;
|
|
185912
185914
|
try {
|
|
185913
185915
|
response = await appClient.post("deploy-dist", {
|
|
185914
|
-
body: formData
|
|
185916
|
+
body: formData,
|
|
185917
|
+
timeout: 180000
|
|
185915
185918
|
});
|
|
185916
185919
|
} catch (error48) {
|
|
185917
185920
|
throw await ApiError.fromHttpError(error48, "deploying site");
|
|
@@ -186030,7 +186033,6 @@ async function handleUnauthorized(request, _options, response) {
|
|
|
186030
186033
|
}
|
|
186031
186034
|
var base44Client = distribution_default.create({
|
|
186032
186035
|
prefixUrl: getBase44ApiUrl(),
|
|
186033
|
-
timeout: 180000,
|
|
186034
186036
|
headers: {
|
|
186035
186037
|
"User-Agent": "Base44 CLI"
|
|
186036
186038
|
},
|
|
@@ -199708,4 +199710,4 @@ export {
|
|
|
199708
199710
|
CLIExitError
|
|
199709
199711
|
};
|
|
199710
199712
|
|
|
199711
|
-
//# debugId=
|
|
199713
|
+
//# debugId=BEDE4C07B8ECAC1F64756E2164756E21
|