@djangocfg/api 1.2.32 → 1.2.33
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.cjs +3306 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +75 -2
- package/dist/index.d.ts +75 -2
- package/dist/index.mjs +3303 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/_utils/fetchers/cfg__accounts.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__accounts__auth.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__accounts__user_profile.ts +132 -0
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_admin_api.ts +110 -0
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_auth.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_monitoring.ts +88 -0
- package/src/cfg/generated/_utils/fetchers/cfg__centrifugo__centrifugo_testing.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_api_zones.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_charts.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_commands.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_config.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_overview.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_statistics.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__dashboard__dashboard_system.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__endpoints.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_api_keys.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_charts.ts +154 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_configuration.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_monitoring.ts +88 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_proto_files.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_services.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__grpc__grpc_testing.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__health.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__knowbase.ts +1078 -0
- package/src/cfg/generated/_utils/fetchers/cfg__leads.ts +110 -0
- package/src/cfg/generated/_utils/fetchers/cfg__leads__lead_submission.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__bulk_email.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__campaigns.ts +110 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__logs.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__newsletters.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__subscriptions.ts +66 -0
- package/src/cfg/generated/_utils/fetchers/cfg__newsletter__testing.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__payments.ts +132 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_jobs.ts +110 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_monitoring.ts +44 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_queues.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_registries.ts +154 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_schedules.ts +88 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_testing.ts +88 -0
- package/src/cfg/generated/_utils/fetchers/cfg__rq__rq_workers.ts +22 -0
- package/src/cfg/generated/_utils/fetchers/cfg__support.ts +220 -0
- package/src/cfg/generated/index.ts +4 -0
- package/src/cfg/generated/validation-events.ts +133 -0
package/dist/index.mjs
CHANGED
|
@@ -6911,6 +6911,52 @@ var WorkerStatsSchema = z256.object({
|
|
|
6911
6911
|
workers: z256.array(WorkerSchema).optional()
|
|
6912
6912
|
});
|
|
6913
6913
|
|
|
6914
|
+
// src/cfg/generated/validation-events.ts
|
|
6915
|
+
function dispatchValidationError(detail) {
|
|
6916
|
+
if (typeof window === "undefined") {
|
|
6917
|
+
return;
|
|
6918
|
+
}
|
|
6919
|
+
try {
|
|
6920
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
6921
|
+
detail,
|
|
6922
|
+
bubbles: true,
|
|
6923
|
+
cancelable: false
|
|
6924
|
+
});
|
|
6925
|
+
window.dispatchEvent(event);
|
|
6926
|
+
} catch (error) {
|
|
6927
|
+
console.warn("Failed to dispatch validation error event:", error);
|
|
6928
|
+
}
|
|
6929
|
+
}
|
|
6930
|
+
function onValidationError(callback) {
|
|
6931
|
+
if (typeof window === "undefined") {
|
|
6932
|
+
return () => {
|
|
6933
|
+
};
|
|
6934
|
+
}
|
|
6935
|
+
const handler = (event) => {
|
|
6936
|
+
if (event instanceof CustomEvent) {
|
|
6937
|
+
callback(event.detail);
|
|
6938
|
+
}
|
|
6939
|
+
};
|
|
6940
|
+
window.addEventListener("zod-validation-error", handler);
|
|
6941
|
+
return () => {
|
|
6942
|
+
window.removeEventListener("zod-validation-error", handler);
|
|
6943
|
+
};
|
|
6944
|
+
}
|
|
6945
|
+
function formatZodError(error) {
|
|
6946
|
+
const issues = error.issues.map((issue, index) => {
|
|
6947
|
+
const path = issue.path.join(".") || "root";
|
|
6948
|
+
const parts = [`${index + 1}. ${path}: ${issue.message}`];
|
|
6949
|
+
if ("expected" in issue && issue.expected) {
|
|
6950
|
+
parts.push(` Expected: ${issue.expected}`);
|
|
6951
|
+
}
|
|
6952
|
+
if ("received" in issue && issue.received) {
|
|
6953
|
+
parts.push(` Received: ${issue.received}`);
|
|
6954
|
+
}
|
|
6955
|
+
return parts.join("\n");
|
|
6956
|
+
});
|
|
6957
|
+
return issues.join("\n");
|
|
6958
|
+
}
|
|
6959
|
+
|
|
6914
6960
|
// src/cfg/generated/_utils/fetchers/index.ts
|
|
6915
6961
|
var fetchers_exports = {};
|
|
6916
6962
|
__export(fetchers_exports, {
|
|
@@ -7194,6 +7240,25 @@ Method: POST`,
|
|
|
7194
7240
|
});
|
|
7195
7241
|
}
|
|
7196
7242
|
consola.error("Response data:", response);
|
|
7243
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7244
|
+
try {
|
|
7245
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7246
|
+
detail: {
|
|
7247
|
+
operation: "createAccountsOtpRequestCreate",
|
|
7248
|
+
path: "/cfg/accounts/otp/request/",
|
|
7249
|
+
method: "POST",
|
|
7250
|
+
error,
|
|
7251
|
+
response,
|
|
7252
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7253
|
+
},
|
|
7254
|
+
bubbles: true,
|
|
7255
|
+
cancelable: false
|
|
7256
|
+
});
|
|
7257
|
+
window.dispatchEvent(event);
|
|
7258
|
+
} catch (eventError) {
|
|
7259
|
+
consola.warn("Failed to dispatch validation error event:", eventError);
|
|
7260
|
+
}
|
|
7261
|
+
}
|
|
7197
7262
|
throw error;
|
|
7198
7263
|
}
|
|
7199
7264
|
}
|
|
@@ -7223,6 +7288,25 @@ Method: POST`,
|
|
|
7223
7288
|
});
|
|
7224
7289
|
}
|
|
7225
7290
|
consola.error("Response data:", response);
|
|
7291
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7292
|
+
try {
|
|
7293
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7294
|
+
detail: {
|
|
7295
|
+
operation: "createAccountsOtpVerifyCreate",
|
|
7296
|
+
path: "/cfg/accounts/otp/verify/",
|
|
7297
|
+
method: "POST",
|
|
7298
|
+
error,
|
|
7299
|
+
response,
|
|
7300
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7301
|
+
},
|
|
7302
|
+
bubbles: true,
|
|
7303
|
+
cancelable: false
|
|
7304
|
+
});
|
|
7305
|
+
window.dispatchEvent(event);
|
|
7306
|
+
} catch (eventError) {
|
|
7307
|
+
consola.warn("Failed to dispatch validation error event:", eventError);
|
|
7308
|
+
}
|
|
7309
|
+
}
|
|
7226
7310
|
throw error;
|
|
7227
7311
|
}
|
|
7228
7312
|
}
|
|
@@ -7255,6 +7339,25 @@ Method: POST`,
|
|
|
7255
7339
|
});
|
|
7256
7340
|
}
|
|
7257
7341
|
consola2.error("Response data:", response);
|
|
7342
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7343
|
+
try {
|
|
7344
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7345
|
+
detail: {
|
|
7346
|
+
operation: "createAccountsTokenRefreshCreate",
|
|
7347
|
+
path: "/cfg/accounts/token/refresh/",
|
|
7348
|
+
method: "POST",
|
|
7349
|
+
error,
|
|
7350
|
+
response,
|
|
7351
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7352
|
+
},
|
|
7353
|
+
bubbles: true,
|
|
7354
|
+
cancelable: false
|
|
7355
|
+
});
|
|
7356
|
+
window.dispatchEvent(event);
|
|
7357
|
+
} catch (eventError) {
|
|
7358
|
+
consola2.warn("Failed to dispatch validation error event:", eventError);
|
|
7359
|
+
}
|
|
7360
|
+
}
|
|
7258
7361
|
throw error;
|
|
7259
7362
|
}
|
|
7260
7363
|
}
|
|
@@ -7287,6 +7390,25 @@ Method: GET`,
|
|
|
7287
7390
|
});
|
|
7288
7391
|
}
|
|
7289
7392
|
consola3.error("Response data:", response);
|
|
7393
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7394
|
+
try {
|
|
7395
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7396
|
+
detail: {
|
|
7397
|
+
operation: "getAccountsProfileRetrieve",
|
|
7398
|
+
path: "/cfg/accounts/profile/",
|
|
7399
|
+
method: "GET",
|
|
7400
|
+
error,
|
|
7401
|
+
response,
|
|
7402
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7403
|
+
},
|
|
7404
|
+
bubbles: true,
|
|
7405
|
+
cancelable: false
|
|
7406
|
+
});
|
|
7407
|
+
window.dispatchEvent(event);
|
|
7408
|
+
} catch (eventError) {
|
|
7409
|
+
consola3.warn("Failed to dispatch validation error event:", eventError);
|
|
7410
|
+
}
|
|
7411
|
+
}
|
|
7290
7412
|
throw error;
|
|
7291
7413
|
}
|
|
7292
7414
|
}
|
|
@@ -7316,6 +7438,25 @@ Method: POST`,
|
|
|
7316
7438
|
});
|
|
7317
7439
|
}
|
|
7318
7440
|
consola3.error("Response data:", response);
|
|
7441
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7442
|
+
try {
|
|
7443
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7444
|
+
detail: {
|
|
7445
|
+
operation: "createAccountsProfileAvatarCreate",
|
|
7446
|
+
path: "/cfg/accounts/profile/avatar/",
|
|
7447
|
+
method: "POST",
|
|
7448
|
+
error,
|
|
7449
|
+
response,
|
|
7450
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7451
|
+
},
|
|
7452
|
+
bubbles: true,
|
|
7453
|
+
cancelable: false
|
|
7454
|
+
});
|
|
7455
|
+
window.dispatchEvent(event);
|
|
7456
|
+
} catch (eventError) {
|
|
7457
|
+
consola3.warn("Failed to dispatch validation error event:", eventError);
|
|
7458
|
+
}
|
|
7459
|
+
}
|
|
7319
7460
|
throw error;
|
|
7320
7461
|
}
|
|
7321
7462
|
}
|
|
@@ -7345,6 +7486,25 @@ Method: PUT`,
|
|
|
7345
7486
|
});
|
|
7346
7487
|
}
|
|
7347
7488
|
consola3.error("Response data:", response);
|
|
7489
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7490
|
+
try {
|
|
7491
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7492
|
+
detail: {
|
|
7493
|
+
operation: "partialUpdateAccountsProfilePartialUpdate",
|
|
7494
|
+
path: "/cfg/accounts/profile/partial/",
|
|
7495
|
+
method: "PUT",
|
|
7496
|
+
error,
|
|
7497
|
+
response,
|
|
7498
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7499
|
+
},
|
|
7500
|
+
bubbles: true,
|
|
7501
|
+
cancelable: false
|
|
7502
|
+
});
|
|
7503
|
+
window.dispatchEvent(event);
|
|
7504
|
+
} catch (eventError) {
|
|
7505
|
+
consola3.warn("Failed to dispatch validation error event:", eventError);
|
|
7506
|
+
}
|
|
7507
|
+
}
|
|
7348
7508
|
throw error;
|
|
7349
7509
|
}
|
|
7350
7510
|
}
|
|
@@ -7374,6 +7534,25 @@ Method: PATCH`,
|
|
|
7374
7534
|
});
|
|
7375
7535
|
}
|
|
7376
7536
|
consola3.error("Response data:", response);
|
|
7537
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7538
|
+
try {
|
|
7539
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7540
|
+
detail: {
|
|
7541
|
+
operation: "partialUpdateAccountsProfilePartialPartialUpdate",
|
|
7542
|
+
path: "/cfg/accounts/profile/partial/",
|
|
7543
|
+
method: "PATCH",
|
|
7544
|
+
error,
|
|
7545
|
+
response,
|
|
7546
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7547
|
+
},
|
|
7548
|
+
bubbles: true,
|
|
7549
|
+
cancelable: false
|
|
7550
|
+
});
|
|
7551
|
+
window.dispatchEvent(event);
|
|
7552
|
+
} catch (eventError) {
|
|
7553
|
+
consola3.warn("Failed to dispatch validation error event:", eventError);
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7377
7556
|
throw error;
|
|
7378
7557
|
}
|
|
7379
7558
|
}
|
|
@@ -7403,6 +7582,25 @@ Method: PUT`,
|
|
|
7403
7582
|
});
|
|
7404
7583
|
}
|
|
7405
7584
|
consola3.error("Response data:", response);
|
|
7585
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7586
|
+
try {
|
|
7587
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7588
|
+
detail: {
|
|
7589
|
+
operation: "updateAccountsProfileUpdateUpdate",
|
|
7590
|
+
path: "/cfg/accounts/profile/update/",
|
|
7591
|
+
method: "PUT",
|
|
7592
|
+
error,
|
|
7593
|
+
response,
|
|
7594
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7595
|
+
},
|
|
7596
|
+
bubbles: true,
|
|
7597
|
+
cancelable: false
|
|
7598
|
+
});
|
|
7599
|
+
window.dispatchEvent(event);
|
|
7600
|
+
} catch (eventError) {
|
|
7601
|
+
consola3.warn("Failed to dispatch validation error event:", eventError);
|
|
7602
|
+
}
|
|
7603
|
+
}
|
|
7406
7604
|
throw error;
|
|
7407
7605
|
}
|
|
7408
7606
|
}
|
|
@@ -7432,6 +7630,25 @@ Method: PATCH`,
|
|
|
7432
7630
|
});
|
|
7433
7631
|
}
|
|
7434
7632
|
consola3.error("Response data:", response);
|
|
7633
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7634
|
+
try {
|
|
7635
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7636
|
+
detail: {
|
|
7637
|
+
operation: "partialUpdateAccountsProfileUpdatePartialUpdate",
|
|
7638
|
+
path: "/cfg/accounts/profile/update/",
|
|
7639
|
+
method: "PATCH",
|
|
7640
|
+
error,
|
|
7641
|
+
response,
|
|
7642
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7643
|
+
},
|
|
7644
|
+
bubbles: true,
|
|
7645
|
+
cancelable: false
|
|
7646
|
+
});
|
|
7647
|
+
window.dispatchEvent(event);
|
|
7648
|
+
} catch (eventError) {
|
|
7649
|
+
consola3.warn("Failed to dispatch validation error event:", eventError);
|
|
7650
|
+
}
|
|
7651
|
+
}
|
|
7435
7652
|
throw error;
|
|
7436
7653
|
}
|
|
7437
7654
|
}
|
|
@@ -7464,6 +7681,25 @@ Method: GET`,
|
|
|
7464
7681
|
});
|
|
7465
7682
|
}
|
|
7466
7683
|
consola4.error("Response data:", response);
|
|
7684
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7685
|
+
try {
|
|
7686
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7687
|
+
detail: {
|
|
7688
|
+
operation: "getCentrifugoMonitorChannelsRetrieve",
|
|
7689
|
+
path: "/cfg/centrifugo/monitor/channels/",
|
|
7690
|
+
method: "GET",
|
|
7691
|
+
error,
|
|
7692
|
+
response,
|
|
7693
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7694
|
+
},
|
|
7695
|
+
bubbles: true,
|
|
7696
|
+
cancelable: false
|
|
7697
|
+
});
|
|
7698
|
+
window.dispatchEvent(event);
|
|
7699
|
+
} catch (eventError) {
|
|
7700
|
+
consola4.warn("Failed to dispatch validation error event:", eventError);
|
|
7701
|
+
}
|
|
7702
|
+
}
|
|
7467
7703
|
throw error;
|
|
7468
7704
|
}
|
|
7469
7705
|
}
|
|
@@ -7501,6 +7737,25 @@ Method: POST`,
|
|
|
7501
7737
|
});
|
|
7502
7738
|
}
|
|
7503
7739
|
consola5.error("Response data:", response);
|
|
7740
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7741
|
+
try {
|
|
7742
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7743
|
+
detail: {
|
|
7744
|
+
operation: "createCentrifugoServerChannelsCreate",
|
|
7745
|
+
path: "/cfg/centrifugo/server/channels/",
|
|
7746
|
+
method: "POST",
|
|
7747
|
+
error,
|
|
7748
|
+
response,
|
|
7749
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7750
|
+
},
|
|
7751
|
+
bubbles: true,
|
|
7752
|
+
cancelable: false
|
|
7753
|
+
});
|
|
7754
|
+
window.dispatchEvent(event);
|
|
7755
|
+
} catch (eventError) {
|
|
7756
|
+
consola5.warn("Failed to dispatch validation error event:", eventError);
|
|
7757
|
+
}
|
|
7758
|
+
}
|
|
7504
7759
|
throw error;
|
|
7505
7760
|
}
|
|
7506
7761
|
}
|
|
@@ -7530,6 +7785,25 @@ Method: POST`,
|
|
|
7530
7785
|
});
|
|
7531
7786
|
}
|
|
7532
7787
|
consola5.error("Response data:", response);
|
|
7788
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7789
|
+
try {
|
|
7790
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7791
|
+
detail: {
|
|
7792
|
+
operation: "createCentrifugoServerHistoryCreate",
|
|
7793
|
+
path: "/cfg/centrifugo/server/history/",
|
|
7794
|
+
method: "POST",
|
|
7795
|
+
error,
|
|
7796
|
+
response,
|
|
7797
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7798
|
+
},
|
|
7799
|
+
bubbles: true,
|
|
7800
|
+
cancelable: false
|
|
7801
|
+
});
|
|
7802
|
+
window.dispatchEvent(event);
|
|
7803
|
+
} catch (eventError) {
|
|
7804
|
+
consola5.warn("Failed to dispatch validation error event:", eventError);
|
|
7805
|
+
}
|
|
7806
|
+
}
|
|
7533
7807
|
throw error;
|
|
7534
7808
|
}
|
|
7535
7809
|
}
|
|
@@ -7559,6 +7833,25 @@ Method: POST`,
|
|
|
7559
7833
|
});
|
|
7560
7834
|
}
|
|
7561
7835
|
consola5.error("Response data:", response);
|
|
7836
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7837
|
+
try {
|
|
7838
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7839
|
+
detail: {
|
|
7840
|
+
operation: "createCentrifugoServerInfoCreate",
|
|
7841
|
+
path: "/cfg/centrifugo/server/info/",
|
|
7842
|
+
method: "POST",
|
|
7843
|
+
error,
|
|
7844
|
+
response,
|
|
7845
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7846
|
+
},
|
|
7847
|
+
bubbles: true,
|
|
7848
|
+
cancelable: false
|
|
7849
|
+
});
|
|
7850
|
+
window.dispatchEvent(event);
|
|
7851
|
+
} catch (eventError) {
|
|
7852
|
+
consola5.warn("Failed to dispatch validation error event:", eventError);
|
|
7853
|
+
}
|
|
7854
|
+
}
|
|
7562
7855
|
throw error;
|
|
7563
7856
|
}
|
|
7564
7857
|
}
|
|
@@ -7588,6 +7881,25 @@ Method: POST`,
|
|
|
7588
7881
|
});
|
|
7589
7882
|
}
|
|
7590
7883
|
consola5.error("Response data:", response);
|
|
7884
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7885
|
+
try {
|
|
7886
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7887
|
+
detail: {
|
|
7888
|
+
operation: "createCentrifugoServerPresenceCreate",
|
|
7889
|
+
path: "/cfg/centrifugo/server/presence/",
|
|
7890
|
+
method: "POST",
|
|
7891
|
+
error,
|
|
7892
|
+
response,
|
|
7893
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7894
|
+
},
|
|
7895
|
+
bubbles: true,
|
|
7896
|
+
cancelable: false
|
|
7897
|
+
});
|
|
7898
|
+
window.dispatchEvent(event);
|
|
7899
|
+
} catch (eventError) {
|
|
7900
|
+
consola5.warn("Failed to dispatch validation error event:", eventError);
|
|
7901
|
+
}
|
|
7902
|
+
}
|
|
7591
7903
|
throw error;
|
|
7592
7904
|
}
|
|
7593
7905
|
}
|
|
@@ -7617,6 +7929,25 @@ Method: POST`,
|
|
|
7617
7929
|
});
|
|
7618
7930
|
}
|
|
7619
7931
|
consola5.error("Response data:", response);
|
|
7932
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7933
|
+
try {
|
|
7934
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7935
|
+
detail: {
|
|
7936
|
+
operation: "createCentrifugoServerPresenceStatsCreate",
|
|
7937
|
+
path: "/cfg/centrifugo/server/presence-stats/",
|
|
7938
|
+
method: "POST",
|
|
7939
|
+
error,
|
|
7940
|
+
response,
|
|
7941
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7942
|
+
},
|
|
7943
|
+
bubbles: true,
|
|
7944
|
+
cancelable: false
|
|
7945
|
+
});
|
|
7946
|
+
window.dispatchEvent(event);
|
|
7947
|
+
} catch (eventError) {
|
|
7948
|
+
consola5.warn("Failed to dispatch validation error event:", eventError);
|
|
7949
|
+
}
|
|
7950
|
+
}
|
|
7620
7951
|
throw error;
|
|
7621
7952
|
}
|
|
7622
7953
|
}
|
|
@@ -7649,6 +7980,25 @@ Method: GET`,
|
|
|
7649
7980
|
});
|
|
7650
7981
|
}
|
|
7651
7982
|
consola6.error("Response data:", response);
|
|
7983
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
7984
|
+
try {
|
|
7985
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
7986
|
+
detail: {
|
|
7987
|
+
operation: "getCentrifugoAuthTokenRetrieve",
|
|
7988
|
+
path: "/cfg/centrifugo/auth/token/",
|
|
7989
|
+
method: "GET",
|
|
7990
|
+
error,
|
|
7991
|
+
response,
|
|
7992
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
7993
|
+
},
|
|
7994
|
+
bubbles: true,
|
|
7995
|
+
cancelable: false
|
|
7996
|
+
});
|
|
7997
|
+
window.dispatchEvent(event);
|
|
7998
|
+
} catch (eventError) {
|
|
7999
|
+
consola6.warn("Failed to dispatch validation error event:", eventError);
|
|
8000
|
+
}
|
|
8001
|
+
}
|
|
7652
8002
|
throw error;
|
|
7653
8003
|
}
|
|
7654
8004
|
}
|
|
@@ -7681,6 +8031,25 @@ Method: GET`,
|
|
|
7681
8031
|
});
|
|
7682
8032
|
}
|
|
7683
8033
|
consola7.error("Response data:", response);
|
|
8034
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8035
|
+
try {
|
|
8036
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8037
|
+
detail: {
|
|
8038
|
+
operation: "getCentrifugoMonitorHealthRetrieve",
|
|
8039
|
+
path: "/cfg/centrifugo/monitor/health/",
|
|
8040
|
+
method: "GET",
|
|
8041
|
+
error,
|
|
8042
|
+
response,
|
|
8043
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8044
|
+
},
|
|
8045
|
+
bubbles: true,
|
|
8046
|
+
cancelable: false
|
|
8047
|
+
});
|
|
8048
|
+
window.dispatchEvent(event);
|
|
8049
|
+
} catch (eventError) {
|
|
8050
|
+
consola7.warn("Failed to dispatch validation error event:", eventError);
|
|
8051
|
+
}
|
|
8052
|
+
}
|
|
7684
8053
|
throw error;
|
|
7685
8054
|
}
|
|
7686
8055
|
}
|
|
@@ -7710,6 +8079,25 @@ Method: GET`,
|
|
|
7710
8079
|
});
|
|
7711
8080
|
}
|
|
7712
8081
|
consola7.error("Response data:", response);
|
|
8082
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8083
|
+
try {
|
|
8084
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8085
|
+
detail: {
|
|
8086
|
+
operation: "getCentrifugoMonitorOverviewRetrieve",
|
|
8087
|
+
path: "/cfg/centrifugo/monitor/overview/",
|
|
8088
|
+
method: "GET",
|
|
8089
|
+
error,
|
|
8090
|
+
response,
|
|
8091
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8092
|
+
},
|
|
8093
|
+
bubbles: true,
|
|
8094
|
+
cancelable: false
|
|
8095
|
+
});
|
|
8096
|
+
window.dispatchEvent(event);
|
|
8097
|
+
} catch (eventError) {
|
|
8098
|
+
consola7.warn("Failed to dispatch validation error event:", eventError);
|
|
8099
|
+
}
|
|
8100
|
+
}
|
|
7713
8101
|
throw error;
|
|
7714
8102
|
}
|
|
7715
8103
|
}
|
|
@@ -7739,6 +8127,25 @@ Method: GET`,
|
|
|
7739
8127
|
});
|
|
7740
8128
|
}
|
|
7741
8129
|
consola7.error("Response data:", response);
|
|
8130
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8131
|
+
try {
|
|
8132
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8133
|
+
detail: {
|
|
8134
|
+
operation: "getCentrifugoMonitorPublishesList",
|
|
8135
|
+
path: "/cfg/centrifugo/monitor/publishes/",
|
|
8136
|
+
method: "GET",
|
|
8137
|
+
error,
|
|
8138
|
+
response,
|
|
8139
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8140
|
+
},
|
|
8141
|
+
bubbles: true,
|
|
8142
|
+
cancelable: false
|
|
8143
|
+
});
|
|
8144
|
+
window.dispatchEvent(event);
|
|
8145
|
+
} catch (eventError) {
|
|
8146
|
+
consola7.warn("Failed to dispatch validation error event:", eventError);
|
|
8147
|
+
}
|
|
8148
|
+
}
|
|
7742
8149
|
throw error;
|
|
7743
8150
|
}
|
|
7744
8151
|
}
|
|
@@ -7768,6 +8175,25 @@ Method: GET`,
|
|
|
7768
8175
|
});
|
|
7769
8176
|
}
|
|
7770
8177
|
consola7.error("Response data:", response);
|
|
8178
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8179
|
+
try {
|
|
8180
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8181
|
+
detail: {
|
|
8182
|
+
operation: "getCentrifugoMonitorTimelineRetrieve",
|
|
8183
|
+
path: "/cfg/centrifugo/monitor/timeline/",
|
|
8184
|
+
method: "GET",
|
|
8185
|
+
error,
|
|
8186
|
+
response,
|
|
8187
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8188
|
+
},
|
|
8189
|
+
bubbles: true,
|
|
8190
|
+
cancelable: false
|
|
8191
|
+
});
|
|
8192
|
+
window.dispatchEvent(event);
|
|
8193
|
+
} catch (eventError) {
|
|
8194
|
+
consola7.warn("Failed to dispatch validation error event:", eventError);
|
|
8195
|
+
}
|
|
8196
|
+
}
|
|
7771
8197
|
throw error;
|
|
7772
8198
|
}
|
|
7773
8199
|
}
|
|
@@ -7800,6 +8226,25 @@ Method: POST`,
|
|
|
7800
8226
|
});
|
|
7801
8227
|
}
|
|
7802
8228
|
consola8.error("Response data:", response);
|
|
8229
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8230
|
+
try {
|
|
8231
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8232
|
+
detail: {
|
|
8233
|
+
operation: "createCentrifugoTestingPublishTestCreate",
|
|
8234
|
+
path: "/cfg/centrifugo/testing/publish-test/",
|
|
8235
|
+
method: "POST",
|
|
8236
|
+
error,
|
|
8237
|
+
response,
|
|
8238
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8239
|
+
},
|
|
8240
|
+
bubbles: true,
|
|
8241
|
+
cancelable: false
|
|
8242
|
+
});
|
|
8243
|
+
window.dispatchEvent(event);
|
|
8244
|
+
} catch (eventError) {
|
|
8245
|
+
consola8.warn("Failed to dispatch validation error event:", eventError);
|
|
8246
|
+
}
|
|
8247
|
+
}
|
|
7803
8248
|
throw error;
|
|
7804
8249
|
}
|
|
7805
8250
|
}
|
|
@@ -7829,6 +8274,25 @@ Method: POST`,
|
|
|
7829
8274
|
});
|
|
7830
8275
|
}
|
|
7831
8276
|
consola8.error("Response data:", response);
|
|
8277
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8278
|
+
try {
|
|
8279
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8280
|
+
detail: {
|
|
8281
|
+
operation: "createCentrifugoTestingPublishWithLoggingCreate",
|
|
8282
|
+
path: "/cfg/centrifugo/testing/publish-with-logging/",
|
|
8283
|
+
method: "POST",
|
|
8284
|
+
error,
|
|
8285
|
+
response,
|
|
8286
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8287
|
+
},
|
|
8288
|
+
bubbles: true,
|
|
8289
|
+
cancelable: false
|
|
8290
|
+
});
|
|
8291
|
+
window.dispatchEvent(event);
|
|
8292
|
+
} catch (eventError) {
|
|
8293
|
+
consola8.warn("Failed to dispatch validation error event:", eventError);
|
|
8294
|
+
}
|
|
8295
|
+
}
|
|
7832
8296
|
throw error;
|
|
7833
8297
|
}
|
|
7834
8298
|
}
|
|
@@ -7858,6 +8322,25 @@ Method: POST`,
|
|
|
7858
8322
|
});
|
|
7859
8323
|
}
|
|
7860
8324
|
consola8.error("Response data:", response);
|
|
8325
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8326
|
+
try {
|
|
8327
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8328
|
+
detail: {
|
|
8329
|
+
operation: "createCentrifugoTestingSendAckCreate",
|
|
8330
|
+
path: "/cfg/centrifugo/testing/send-ack/",
|
|
8331
|
+
method: "POST",
|
|
8332
|
+
error,
|
|
8333
|
+
response,
|
|
8334
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8335
|
+
},
|
|
8336
|
+
bubbles: true,
|
|
8337
|
+
cancelable: false
|
|
8338
|
+
});
|
|
8339
|
+
window.dispatchEvent(event);
|
|
8340
|
+
} catch (eventError) {
|
|
8341
|
+
consola8.warn("Failed to dispatch validation error event:", eventError);
|
|
8342
|
+
}
|
|
8343
|
+
}
|
|
7861
8344
|
throw error;
|
|
7862
8345
|
}
|
|
7863
8346
|
}
|
|
@@ -7907,6 +8390,25 @@ Method: GET`,
|
|
|
7907
8390
|
});
|
|
7908
8391
|
}
|
|
7909
8392
|
consola9.error("Response data:", response);
|
|
8393
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8394
|
+
try {
|
|
8395
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8396
|
+
detail: {
|
|
8397
|
+
operation: "getDashboardApiZonesSummaryRetrieve",
|
|
8398
|
+
path: "/cfg/dashboard/api/zones/summary/",
|
|
8399
|
+
method: "GET",
|
|
8400
|
+
error,
|
|
8401
|
+
response,
|
|
8402
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8403
|
+
},
|
|
8404
|
+
bubbles: true,
|
|
8405
|
+
cancelable: false
|
|
8406
|
+
});
|
|
8407
|
+
window.dispatchEvent(event);
|
|
8408
|
+
} catch (eventError) {
|
|
8409
|
+
consola9.warn("Failed to dispatch validation error event:", eventError);
|
|
8410
|
+
}
|
|
8411
|
+
}
|
|
7910
8412
|
throw error;
|
|
7911
8413
|
}
|
|
7912
8414
|
}
|
|
@@ -7939,6 +8441,25 @@ Method: GET`,
|
|
|
7939
8441
|
});
|
|
7940
8442
|
}
|
|
7941
8443
|
consola10.error("Response data:", response);
|
|
8444
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8445
|
+
try {
|
|
8446
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8447
|
+
detail: {
|
|
8448
|
+
operation: "getDashboardApiChartsActivityRetrieve",
|
|
8449
|
+
path: "/cfg/dashboard/api/charts/activity/",
|
|
8450
|
+
method: "GET",
|
|
8451
|
+
error,
|
|
8452
|
+
response,
|
|
8453
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8454
|
+
},
|
|
8455
|
+
bubbles: true,
|
|
8456
|
+
cancelable: false
|
|
8457
|
+
});
|
|
8458
|
+
window.dispatchEvent(event);
|
|
8459
|
+
} catch (eventError) {
|
|
8460
|
+
consola10.warn("Failed to dispatch validation error event:", eventError);
|
|
8461
|
+
}
|
|
8462
|
+
}
|
|
7942
8463
|
throw error;
|
|
7943
8464
|
}
|
|
7944
8465
|
}
|
|
@@ -7973,6 +8494,25 @@ Method: GET`,
|
|
|
7973
8494
|
});
|
|
7974
8495
|
}
|
|
7975
8496
|
consola10.error("Response data:", response);
|
|
8497
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8498
|
+
try {
|
|
8499
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8500
|
+
detail: {
|
|
8501
|
+
operation: "getDashboardApiChartsRegistrationsRetrieve",
|
|
8502
|
+
path: "/cfg/dashboard/api/charts/registrations/",
|
|
8503
|
+
method: "GET",
|
|
8504
|
+
error,
|
|
8505
|
+
response,
|
|
8506
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8507
|
+
},
|
|
8508
|
+
bubbles: true,
|
|
8509
|
+
cancelable: false
|
|
8510
|
+
});
|
|
8511
|
+
window.dispatchEvent(event);
|
|
8512
|
+
} catch (eventError) {
|
|
8513
|
+
consola10.warn("Failed to dispatch validation error event:", eventError);
|
|
8514
|
+
}
|
|
8515
|
+
}
|
|
7976
8516
|
throw error;
|
|
7977
8517
|
}
|
|
7978
8518
|
}
|
|
@@ -8015,6 +8555,25 @@ Method: GET`,
|
|
|
8015
8555
|
});
|
|
8016
8556
|
}
|
|
8017
8557
|
consola11.error("Response data:", response);
|
|
8558
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8559
|
+
try {
|
|
8560
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8561
|
+
detail: {
|
|
8562
|
+
operation: "getDashboardApiCommandsHelpRetrieve",
|
|
8563
|
+
path: "/cfg/dashboard/api/commands/{id}/help/",
|
|
8564
|
+
method: "GET",
|
|
8565
|
+
error,
|
|
8566
|
+
response,
|
|
8567
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8568
|
+
},
|
|
8569
|
+
bubbles: true,
|
|
8570
|
+
cancelable: false
|
|
8571
|
+
});
|
|
8572
|
+
window.dispatchEvent(event);
|
|
8573
|
+
} catch (eventError) {
|
|
8574
|
+
consola11.warn("Failed to dispatch validation error event:", eventError);
|
|
8575
|
+
}
|
|
8576
|
+
}
|
|
8018
8577
|
throw error;
|
|
8019
8578
|
}
|
|
8020
8579
|
}
|
|
@@ -8049,6 +8608,25 @@ Method: GET`,
|
|
|
8049
8608
|
});
|
|
8050
8609
|
}
|
|
8051
8610
|
consola11.error("Response data:", response);
|
|
8611
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8612
|
+
try {
|
|
8613
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8614
|
+
detail: {
|
|
8615
|
+
operation: "getDashboardApiCommandsSummaryRetrieve",
|
|
8616
|
+
path: "/cfg/dashboard/api/commands/summary/",
|
|
8617
|
+
method: "GET",
|
|
8618
|
+
error,
|
|
8619
|
+
response,
|
|
8620
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8621
|
+
},
|
|
8622
|
+
bubbles: true,
|
|
8623
|
+
cancelable: false
|
|
8624
|
+
});
|
|
8625
|
+
window.dispatchEvent(event);
|
|
8626
|
+
} catch (eventError) {
|
|
8627
|
+
consola11.warn("Failed to dispatch validation error event:", eventError);
|
|
8628
|
+
}
|
|
8629
|
+
}
|
|
8052
8630
|
throw error;
|
|
8053
8631
|
}
|
|
8054
8632
|
}
|
|
@@ -8081,6 +8659,25 @@ Method: GET`,
|
|
|
8081
8659
|
});
|
|
8082
8660
|
}
|
|
8083
8661
|
consola12.error("Response data:", response);
|
|
8662
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8663
|
+
try {
|
|
8664
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8665
|
+
detail: {
|
|
8666
|
+
operation: "getDashboardApiConfigConfigRetrieve",
|
|
8667
|
+
path: "/cfg/dashboard/api/config/config/",
|
|
8668
|
+
method: "GET",
|
|
8669
|
+
error,
|
|
8670
|
+
response,
|
|
8671
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8672
|
+
},
|
|
8673
|
+
bubbles: true,
|
|
8674
|
+
cancelable: false
|
|
8675
|
+
});
|
|
8676
|
+
window.dispatchEvent(event);
|
|
8677
|
+
} catch (eventError) {
|
|
8678
|
+
consola12.warn("Failed to dispatch validation error event:", eventError);
|
|
8679
|
+
}
|
|
8680
|
+
}
|
|
8084
8681
|
throw error;
|
|
8085
8682
|
}
|
|
8086
8683
|
}
|
|
@@ -8113,6 +8710,25 @@ Method: GET`,
|
|
|
8113
8710
|
});
|
|
8114
8711
|
}
|
|
8115
8712
|
consola13.error("Response data:", response);
|
|
8713
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8714
|
+
try {
|
|
8715
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8716
|
+
detail: {
|
|
8717
|
+
operation: "getDashboardApiOverviewOverviewRetrieve",
|
|
8718
|
+
path: "/cfg/dashboard/api/overview/overview/",
|
|
8719
|
+
method: "GET",
|
|
8720
|
+
error,
|
|
8721
|
+
response,
|
|
8722
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8723
|
+
},
|
|
8724
|
+
bubbles: true,
|
|
8725
|
+
cancelable: false
|
|
8726
|
+
});
|
|
8727
|
+
window.dispatchEvent(event);
|
|
8728
|
+
} catch (eventError) {
|
|
8729
|
+
consola13.warn("Failed to dispatch validation error event:", eventError);
|
|
8730
|
+
}
|
|
8731
|
+
}
|
|
8116
8732
|
throw error;
|
|
8117
8733
|
}
|
|
8118
8734
|
}
|
|
@@ -8155,6 +8771,25 @@ Method: GET`,
|
|
|
8155
8771
|
});
|
|
8156
8772
|
}
|
|
8157
8773
|
consola14.error("Response data:", response);
|
|
8774
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8775
|
+
try {
|
|
8776
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8777
|
+
detail: {
|
|
8778
|
+
operation: "getDashboardApiStatisticsUsersRetrieve",
|
|
8779
|
+
path: "/cfg/dashboard/api/statistics/users/",
|
|
8780
|
+
method: "GET",
|
|
8781
|
+
error,
|
|
8782
|
+
response,
|
|
8783
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8784
|
+
},
|
|
8785
|
+
bubbles: true,
|
|
8786
|
+
cancelable: false
|
|
8787
|
+
});
|
|
8788
|
+
window.dispatchEvent(event);
|
|
8789
|
+
} catch (eventError) {
|
|
8790
|
+
consola14.warn("Failed to dispatch validation error event:", eventError);
|
|
8791
|
+
}
|
|
8792
|
+
}
|
|
8158
8793
|
throw error;
|
|
8159
8794
|
}
|
|
8160
8795
|
}
|
|
@@ -8187,6 +8822,25 @@ Method: GET`,
|
|
|
8187
8822
|
});
|
|
8188
8823
|
}
|
|
8189
8824
|
consola15.error("Response data:", response);
|
|
8825
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8826
|
+
try {
|
|
8827
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8828
|
+
detail: {
|
|
8829
|
+
operation: "getDashboardApiSystemHealthRetrieve",
|
|
8830
|
+
path: "/cfg/dashboard/api/system/health/",
|
|
8831
|
+
method: "GET",
|
|
8832
|
+
error,
|
|
8833
|
+
response,
|
|
8834
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8835
|
+
},
|
|
8836
|
+
bubbles: true,
|
|
8837
|
+
cancelable: false
|
|
8838
|
+
});
|
|
8839
|
+
window.dispatchEvent(event);
|
|
8840
|
+
} catch (eventError) {
|
|
8841
|
+
consola15.warn("Failed to dispatch validation error event:", eventError);
|
|
8842
|
+
}
|
|
8843
|
+
}
|
|
8190
8844
|
throw error;
|
|
8191
8845
|
}
|
|
8192
8846
|
}
|
|
@@ -8216,6 +8870,25 @@ Method: GET`,
|
|
|
8216
8870
|
});
|
|
8217
8871
|
}
|
|
8218
8872
|
consola15.error("Response data:", response);
|
|
8873
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8874
|
+
try {
|
|
8875
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8876
|
+
detail: {
|
|
8877
|
+
operation: "getDashboardApiSystemMetricsRetrieve",
|
|
8878
|
+
path: "/cfg/dashboard/api/system/metrics/",
|
|
8879
|
+
method: "GET",
|
|
8880
|
+
error,
|
|
8881
|
+
response,
|
|
8882
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8883
|
+
},
|
|
8884
|
+
bubbles: true,
|
|
8885
|
+
cancelable: false
|
|
8886
|
+
});
|
|
8887
|
+
window.dispatchEvent(event);
|
|
8888
|
+
} catch (eventError) {
|
|
8889
|
+
consola15.warn("Failed to dispatch validation error event:", eventError);
|
|
8890
|
+
}
|
|
8891
|
+
}
|
|
8219
8892
|
throw error;
|
|
8220
8893
|
}
|
|
8221
8894
|
}
|
|
@@ -8248,6 +8921,25 @@ Method: GET`,
|
|
|
8248
8921
|
});
|
|
8249
8922
|
}
|
|
8250
8923
|
consola16.error("Response data:", response);
|
|
8924
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8925
|
+
try {
|
|
8926
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8927
|
+
detail: {
|
|
8928
|
+
operation: "getEndpointsDrfRetrieve",
|
|
8929
|
+
path: "/cfg/endpoints/drf/",
|
|
8930
|
+
method: "GET",
|
|
8931
|
+
error,
|
|
8932
|
+
response,
|
|
8933
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8934
|
+
},
|
|
8935
|
+
bubbles: true,
|
|
8936
|
+
cancelable: false
|
|
8937
|
+
});
|
|
8938
|
+
window.dispatchEvent(event);
|
|
8939
|
+
} catch (eventError) {
|
|
8940
|
+
consola16.warn("Failed to dispatch validation error event:", eventError);
|
|
8941
|
+
}
|
|
8942
|
+
}
|
|
8251
8943
|
throw error;
|
|
8252
8944
|
}
|
|
8253
8945
|
}
|
|
@@ -8277,6 +8969,25 @@ Method: GET`,
|
|
|
8277
8969
|
});
|
|
8278
8970
|
}
|
|
8279
8971
|
consola16.error("Response data:", response);
|
|
8972
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
8973
|
+
try {
|
|
8974
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
8975
|
+
detail: {
|
|
8976
|
+
operation: "getEndpointsUrlsRetrieve",
|
|
8977
|
+
path: "/cfg/endpoints/urls/",
|
|
8978
|
+
method: "GET",
|
|
8979
|
+
error,
|
|
8980
|
+
response,
|
|
8981
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
8982
|
+
},
|
|
8983
|
+
bubbles: true,
|
|
8984
|
+
cancelable: false
|
|
8985
|
+
});
|
|
8986
|
+
window.dispatchEvent(event);
|
|
8987
|
+
} catch (eventError) {
|
|
8988
|
+
consola16.warn("Failed to dispatch validation error event:", eventError);
|
|
8989
|
+
}
|
|
8990
|
+
}
|
|
8280
8991
|
throw error;
|
|
8281
8992
|
}
|
|
8282
8993
|
}
|
|
@@ -8314,6 +9025,25 @@ Method: GET`,
|
|
|
8314
9025
|
});
|
|
8315
9026
|
}
|
|
8316
9027
|
consola17.error("Response data:", response);
|
|
9028
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9029
|
+
try {
|
|
9030
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9031
|
+
detail: {
|
|
9032
|
+
operation: "getGrpcApiKeysList",
|
|
9033
|
+
path: "/cfg/grpc/api-keys/",
|
|
9034
|
+
method: "GET",
|
|
9035
|
+
error,
|
|
9036
|
+
response,
|
|
9037
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9038
|
+
},
|
|
9039
|
+
bubbles: true,
|
|
9040
|
+
cancelable: false
|
|
9041
|
+
});
|
|
9042
|
+
window.dispatchEvent(event);
|
|
9043
|
+
} catch (eventError) {
|
|
9044
|
+
consola17.warn("Failed to dispatch validation error event:", eventError);
|
|
9045
|
+
}
|
|
9046
|
+
}
|
|
8317
9047
|
throw error;
|
|
8318
9048
|
}
|
|
8319
9049
|
}
|
|
@@ -8343,6 +9073,25 @@ Method: GET`,
|
|
|
8343
9073
|
});
|
|
8344
9074
|
}
|
|
8345
9075
|
consola17.error("Response data:", response);
|
|
9076
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9077
|
+
try {
|
|
9078
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9079
|
+
detail: {
|
|
9080
|
+
operation: "getGrpcApiKeysRetrieve",
|
|
9081
|
+
path: "/cfg/grpc/api-keys/{id}/",
|
|
9082
|
+
method: "GET",
|
|
9083
|
+
error,
|
|
9084
|
+
response,
|
|
9085
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9086
|
+
},
|
|
9087
|
+
bubbles: true,
|
|
9088
|
+
cancelable: false
|
|
9089
|
+
});
|
|
9090
|
+
window.dispatchEvent(event);
|
|
9091
|
+
} catch (eventError) {
|
|
9092
|
+
consola17.warn("Failed to dispatch validation error event:", eventError);
|
|
9093
|
+
}
|
|
9094
|
+
}
|
|
8346
9095
|
throw error;
|
|
8347
9096
|
}
|
|
8348
9097
|
}
|
|
@@ -8372,6 +9121,25 @@ Method: GET`,
|
|
|
8372
9121
|
});
|
|
8373
9122
|
}
|
|
8374
9123
|
consola17.error("Response data:", response);
|
|
9124
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9125
|
+
try {
|
|
9126
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9127
|
+
detail: {
|
|
9128
|
+
operation: "getGrpcApiKeysStatsRetrieve",
|
|
9129
|
+
path: "/cfg/grpc/api-keys/stats/",
|
|
9130
|
+
method: "GET",
|
|
9131
|
+
error,
|
|
9132
|
+
response,
|
|
9133
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9134
|
+
},
|
|
9135
|
+
bubbles: true,
|
|
9136
|
+
cancelable: false
|
|
9137
|
+
});
|
|
9138
|
+
window.dispatchEvent(event);
|
|
9139
|
+
} catch (eventError) {
|
|
9140
|
+
consola17.warn("Failed to dispatch validation error event:", eventError);
|
|
9141
|
+
}
|
|
9142
|
+
}
|
|
8375
9143
|
throw error;
|
|
8376
9144
|
}
|
|
8377
9145
|
}
|
|
@@ -8404,6 +9172,25 @@ Method: GET`,
|
|
|
8404
9172
|
});
|
|
8405
9173
|
}
|
|
8406
9174
|
consola18.error("Response data:", response);
|
|
9175
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9176
|
+
try {
|
|
9177
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9178
|
+
detail: {
|
|
9179
|
+
operation: "getGrpcChartsDashboardRetrieve",
|
|
9180
|
+
path: "/cfg/grpc/charts/dashboard/",
|
|
9181
|
+
method: "GET",
|
|
9182
|
+
error,
|
|
9183
|
+
response,
|
|
9184
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9185
|
+
},
|
|
9186
|
+
bubbles: true,
|
|
9187
|
+
cancelable: false
|
|
9188
|
+
});
|
|
9189
|
+
window.dispatchEvent(event);
|
|
9190
|
+
} catch (eventError) {
|
|
9191
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9192
|
+
}
|
|
9193
|
+
}
|
|
8407
9194
|
throw error;
|
|
8408
9195
|
}
|
|
8409
9196
|
}
|
|
@@ -8433,6 +9220,25 @@ Method: GET`,
|
|
|
8433
9220
|
});
|
|
8434
9221
|
}
|
|
8435
9222
|
consola18.error("Response data:", response);
|
|
9223
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9224
|
+
try {
|
|
9225
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9226
|
+
detail: {
|
|
9227
|
+
operation: "getGrpcChartsErrorDistributionRetrieve",
|
|
9228
|
+
path: "/cfg/grpc/charts/error-distribution/",
|
|
9229
|
+
method: "GET",
|
|
9230
|
+
error,
|
|
9231
|
+
response,
|
|
9232
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9233
|
+
},
|
|
9234
|
+
bubbles: true,
|
|
9235
|
+
cancelable: false
|
|
9236
|
+
});
|
|
9237
|
+
window.dispatchEvent(event);
|
|
9238
|
+
} catch (eventError) {
|
|
9239
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9240
|
+
}
|
|
9241
|
+
}
|
|
8436
9242
|
throw error;
|
|
8437
9243
|
}
|
|
8438
9244
|
}
|
|
@@ -8462,6 +9268,25 @@ Method: GET`,
|
|
|
8462
9268
|
});
|
|
8463
9269
|
}
|
|
8464
9270
|
consola18.error("Response data:", response);
|
|
9271
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9272
|
+
try {
|
|
9273
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9274
|
+
detail: {
|
|
9275
|
+
operation: "getGrpcChartsRequestVolumeRetrieve",
|
|
9276
|
+
path: "/cfg/grpc/charts/request-volume/",
|
|
9277
|
+
method: "GET",
|
|
9278
|
+
error,
|
|
9279
|
+
response,
|
|
9280
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9281
|
+
},
|
|
9282
|
+
bubbles: true,
|
|
9283
|
+
cancelable: false
|
|
9284
|
+
});
|
|
9285
|
+
window.dispatchEvent(event);
|
|
9286
|
+
} catch (eventError) {
|
|
9287
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9288
|
+
}
|
|
9289
|
+
}
|
|
8465
9290
|
throw error;
|
|
8466
9291
|
}
|
|
8467
9292
|
}
|
|
@@ -8491,6 +9316,25 @@ Method: GET`,
|
|
|
8491
9316
|
});
|
|
8492
9317
|
}
|
|
8493
9318
|
consola18.error("Response data:", response);
|
|
9319
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9320
|
+
try {
|
|
9321
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9322
|
+
detail: {
|
|
9323
|
+
operation: "getGrpcChartsResponseTimeRetrieve",
|
|
9324
|
+
path: "/cfg/grpc/charts/response-time/",
|
|
9325
|
+
method: "GET",
|
|
9326
|
+
error,
|
|
9327
|
+
response,
|
|
9328
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9329
|
+
},
|
|
9330
|
+
bubbles: true,
|
|
9331
|
+
cancelable: false
|
|
9332
|
+
});
|
|
9333
|
+
window.dispatchEvent(event);
|
|
9334
|
+
} catch (eventError) {
|
|
9335
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9336
|
+
}
|
|
9337
|
+
}
|
|
8494
9338
|
throw error;
|
|
8495
9339
|
}
|
|
8496
9340
|
}
|
|
@@ -8520,6 +9364,25 @@ Method: GET`,
|
|
|
8520
9364
|
});
|
|
8521
9365
|
}
|
|
8522
9366
|
consola18.error("Response data:", response);
|
|
9367
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9368
|
+
try {
|
|
9369
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9370
|
+
detail: {
|
|
9371
|
+
operation: "getGrpcChartsServerLifecycleRetrieve",
|
|
9372
|
+
path: "/cfg/grpc/charts/server-lifecycle/",
|
|
9373
|
+
method: "GET",
|
|
9374
|
+
error,
|
|
9375
|
+
response,
|
|
9376
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9377
|
+
},
|
|
9378
|
+
bubbles: true,
|
|
9379
|
+
cancelable: false
|
|
9380
|
+
});
|
|
9381
|
+
window.dispatchEvent(event);
|
|
9382
|
+
} catch (eventError) {
|
|
9383
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9384
|
+
}
|
|
9385
|
+
}
|
|
8523
9386
|
throw error;
|
|
8524
9387
|
}
|
|
8525
9388
|
}
|
|
@@ -8549,6 +9412,25 @@ Method: GET`,
|
|
|
8549
9412
|
});
|
|
8550
9413
|
}
|
|
8551
9414
|
consola18.error("Response data:", response);
|
|
9415
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9416
|
+
try {
|
|
9417
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9418
|
+
detail: {
|
|
9419
|
+
operation: "getGrpcChartsServerUptimeRetrieve",
|
|
9420
|
+
path: "/cfg/grpc/charts/server-uptime/",
|
|
9421
|
+
method: "GET",
|
|
9422
|
+
error,
|
|
9423
|
+
response,
|
|
9424
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9425
|
+
},
|
|
9426
|
+
bubbles: true,
|
|
9427
|
+
cancelable: false
|
|
9428
|
+
});
|
|
9429
|
+
window.dispatchEvent(event);
|
|
9430
|
+
} catch (eventError) {
|
|
9431
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9432
|
+
}
|
|
9433
|
+
}
|
|
8552
9434
|
throw error;
|
|
8553
9435
|
}
|
|
8554
9436
|
}
|
|
@@ -8578,6 +9460,25 @@ Method: GET`,
|
|
|
8578
9460
|
});
|
|
8579
9461
|
}
|
|
8580
9462
|
consola18.error("Response data:", response);
|
|
9463
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9464
|
+
try {
|
|
9465
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9466
|
+
detail: {
|
|
9467
|
+
operation: "getGrpcChartsServiceActivityRetrieve",
|
|
9468
|
+
path: "/cfg/grpc/charts/service-activity/",
|
|
9469
|
+
method: "GET",
|
|
9470
|
+
error,
|
|
9471
|
+
response,
|
|
9472
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9473
|
+
},
|
|
9474
|
+
bubbles: true,
|
|
9475
|
+
cancelable: false
|
|
9476
|
+
});
|
|
9477
|
+
window.dispatchEvent(event);
|
|
9478
|
+
} catch (eventError) {
|
|
9479
|
+
consola18.warn("Failed to dispatch validation error event:", eventError);
|
|
9480
|
+
}
|
|
9481
|
+
}
|
|
8581
9482
|
throw error;
|
|
8582
9483
|
}
|
|
8583
9484
|
}
|
|
@@ -8610,6 +9511,25 @@ Method: GET`,
|
|
|
8610
9511
|
});
|
|
8611
9512
|
}
|
|
8612
9513
|
consola19.error("Response data:", response);
|
|
9514
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9515
|
+
try {
|
|
9516
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9517
|
+
detail: {
|
|
9518
|
+
operation: "getGrpcConfigConfigRetrieve",
|
|
9519
|
+
path: "/cfg/grpc/config/config/",
|
|
9520
|
+
method: "GET",
|
|
9521
|
+
error,
|
|
9522
|
+
response,
|
|
9523
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9524
|
+
},
|
|
9525
|
+
bubbles: true,
|
|
9526
|
+
cancelable: false
|
|
9527
|
+
});
|
|
9528
|
+
window.dispatchEvent(event);
|
|
9529
|
+
} catch (eventError) {
|
|
9530
|
+
consola19.warn("Failed to dispatch validation error event:", eventError);
|
|
9531
|
+
}
|
|
9532
|
+
}
|
|
8613
9533
|
throw error;
|
|
8614
9534
|
}
|
|
8615
9535
|
}
|
|
@@ -8639,6 +9559,25 @@ Method: GET`,
|
|
|
8639
9559
|
});
|
|
8640
9560
|
}
|
|
8641
9561
|
consola19.error("Response data:", response);
|
|
9562
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9563
|
+
try {
|
|
9564
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9565
|
+
detail: {
|
|
9566
|
+
operation: "getGrpcConfigServerInfoRetrieve",
|
|
9567
|
+
path: "/cfg/grpc/config/server-info/",
|
|
9568
|
+
method: "GET",
|
|
9569
|
+
error,
|
|
9570
|
+
response,
|
|
9571
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9572
|
+
},
|
|
9573
|
+
bubbles: true,
|
|
9574
|
+
cancelable: false
|
|
9575
|
+
});
|
|
9576
|
+
window.dispatchEvent(event);
|
|
9577
|
+
} catch (eventError) {
|
|
9578
|
+
consola19.warn("Failed to dispatch validation error event:", eventError);
|
|
9579
|
+
}
|
|
9580
|
+
}
|
|
8642
9581
|
throw error;
|
|
8643
9582
|
}
|
|
8644
9583
|
}
|
|
@@ -8671,10 +9610,29 @@ Method: GET`,
|
|
|
8671
9610
|
});
|
|
8672
9611
|
}
|
|
8673
9612
|
consola20.error("Response data:", response);
|
|
8674
|
-
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
9613
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9614
|
+
try {
|
|
9615
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9616
|
+
detail: {
|
|
9617
|
+
operation: "getGrpcMonitorHealthRetrieve",
|
|
9618
|
+
path: "/cfg/grpc/monitor/health/",
|
|
9619
|
+
method: "GET",
|
|
9620
|
+
error,
|
|
9621
|
+
response,
|
|
9622
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9623
|
+
},
|
|
9624
|
+
bubbles: true,
|
|
9625
|
+
cancelable: false
|
|
9626
|
+
});
|
|
9627
|
+
window.dispatchEvent(event);
|
|
9628
|
+
} catch (eventError) {
|
|
9629
|
+
consola20.warn("Failed to dispatch validation error event:", eventError);
|
|
9630
|
+
}
|
|
9631
|
+
}
|
|
9632
|
+
throw error;
|
|
9633
|
+
}
|
|
9634
|
+
}
|
|
9635
|
+
async function getGrpcMonitorMethodsRetrieve(params, client) {
|
|
8678
9636
|
const api2 = client || getAPIInstance();
|
|
8679
9637
|
const response = await api2.cfg_grpc_monitoring.grpcMonitorMethodsRetrieve(params?.hours, params?.service);
|
|
8680
9638
|
try {
|
|
@@ -8700,6 +9658,25 @@ Method: GET`,
|
|
|
8700
9658
|
});
|
|
8701
9659
|
}
|
|
8702
9660
|
consola20.error("Response data:", response);
|
|
9661
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9662
|
+
try {
|
|
9663
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9664
|
+
detail: {
|
|
9665
|
+
operation: "getGrpcMonitorMethodsRetrieve",
|
|
9666
|
+
path: "/cfg/grpc/monitor/methods/",
|
|
9667
|
+
method: "GET",
|
|
9668
|
+
error,
|
|
9669
|
+
response,
|
|
9670
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9671
|
+
},
|
|
9672
|
+
bubbles: true,
|
|
9673
|
+
cancelable: false
|
|
9674
|
+
});
|
|
9675
|
+
window.dispatchEvent(event);
|
|
9676
|
+
} catch (eventError) {
|
|
9677
|
+
consola20.warn("Failed to dispatch validation error event:", eventError);
|
|
9678
|
+
}
|
|
9679
|
+
}
|
|
8703
9680
|
throw error;
|
|
8704
9681
|
}
|
|
8705
9682
|
}
|
|
@@ -8729,6 +9706,25 @@ Method: GET`,
|
|
|
8729
9706
|
});
|
|
8730
9707
|
}
|
|
8731
9708
|
consola20.error("Response data:", response);
|
|
9709
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9710
|
+
try {
|
|
9711
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9712
|
+
detail: {
|
|
9713
|
+
operation: "getGrpcMonitorOverviewRetrieve",
|
|
9714
|
+
path: "/cfg/grpc/monitor/overview/",
|
|
9715
|
+
method: "GET",
|
|
9716
|
+
error,
|
|
9717
|
+
response,
|
|
9718
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9719
|
+
},
|
|
9720
|
+
bubbles: true,
|
|
9721
|
+
cancelable: false
|
|
9722
|
+
});
|
|
9723
|
+
window.dispatchEvent(event);
|
|
9724
|
+
} catch (eventError) {
|
|
9725
|
+
consola20.warn("Failed to dispatch validation error event:", eventError);
|
|
9726
|
+
}
|
|
9727
|
+
}
|
|
8732
9728
|
throw error;
|
|
8733
9729
|
}
|
|
8734
9730
|
}
|
|
@@ -8758,6 +9754,25 @@ Method: GET`,
|
|
|
8758
9754
|
});
|
|
8759
9755
|
}
|
|
8760
9756
|
consola20.error("Response data:", response);
|
|
9757
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9758
|
+
try {
|
|
9759
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9760
|
+
detail: {
|
|
9761
|
+
operation: "getGrpcMonitorRequestsList",
|
|
9762
|
+
path: "/cfg/grpc/monitor/requests/",
|
|
9763
|
+
method: "GET",
|
|
9764
|
+
error,
|
|
9765
|
+
response,
|
|
9766
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9767
|
+
},
|
|
9768
|
+
bubbles: true,
|
|
9769
|
+
cancelable: false
|
|
9770
|
+
});
|
|
9771
|
+
window.dispatchEvent(event);
|
|
9772
|
+
} catch (eventError) {
|
|
9773
|
+
consola20.warn("Failed to dispatch validation error event:", eventError);
|
|
9774
|
+
}
|
|
9775
|
+
}
|
|
8761
9776
|
throw error;
|
|
8762
9777
|
}
|
|
8763
9778
|
}
|
|
@@ -8810,6 +9825,25 @@ Method: POST`,
|
|
|
8810
9825
|
});
|
|
8811
9826
|
}
|
|
8812
9827
|
consola21.error("Response data:", response);
|
|
9828
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9829
|
+
try {
|
|
9830
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9831
|
+
detail: {
|
|
9832
|
+
operation: "createGrpcProtoFilesGenerateCreate",
|
|
9833
|
+
path: "/cfg/grpc/proto-files/generate/",
|
|
9834
|
+
method: "POST",
|
|
9835
|
+
error,
|
|
9836
|
+
response,
|
|
9837
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9838
|
+
},
|
|
9839
|
+
bubbles: true,
|
|
9840
|
+
cancelable: false
|
|
9841
|
+
});
|
|
9842
|
+
window.dispatchEvent(event);
|
|
9843
|
+
} catch (eventError) {
|
|
9844
|
+
consola21.warn("Failed to dispatch validation error event:", eventError);
|
|
9845
|
+
}
|
|
9846
|
+
}
|
|
8813
9847
|
throw error;
|
|
8814
9848
|
}
|
|
8815
9849
|
}
|
|
@@ -8842,6 +9876,25 @@ Method: GET`,
|
|
|
8842
9876
|
});
|
|
8843
9877
|
}
|
|
8844
9878
|
consola22.error("Response data:", response);
|
|
9879
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9880
|
+
try {
|
|
9881
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9882
|
+
detail: {
|
|
9883
|
+
operation: "getGrpcServicesList",
|
|
9884
|
+
path: "/cfg/grpc/services/",
|
|
9885
|
+
method: "GET",
|
|
9886
|
+
error,
|
|
9887
|
+
response,
|
|
9888
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9889
|
+
},
|
|
9890
|
+
bubbles: true,
|
|
9891
|
+
cancelable: false
|
|
9892
|
+
});
|
|
9893
|
+
window.dispatchEvent(event);
|
|
9894
|
+
} catch (eventError) {
|
|
9895
|
+
consola22.warn("Failed to dispatch validation error event:", eventError);
|
|
9896
|
+
}
|
|
9897
|
+
}
|
|
8845
9898
|
throw error;
|
|
8846
9899
|
}
|
|
8847
9900
|
}
|
|
@@ -8871,6 +9924,25 @@ Method: GET`,
|
|
|
8871
9924
|
});
|
|
8872
9925
|
}
|
|
8873
9926
|
consola22.error("Response data:", response);
|
|
9927
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9928
|
+
try {
|
|
9929
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9930
|
+
detail: {
|
|
9931
|
+
operation: "getGrpcServicesRetrieve",
|
|
9932
|
+
path: "/cfg/grpc/services/{id}/",
|
|
9933
|
+
method: "GET",
|
|
9934
|
+
error,
|
|
9935
|
+
response,
|
|
9936
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9937
|
+
},
|
|
9938
|
+
bubbles: true,
|
|
9939
|
+
cancelable: false
|
|
9940
|
+
});
|
|
9941
|
+
window.dispatchEvent(event);
|
|
9942
|
+
} catch (eventError) {
|
|
9943
|
+
consola22.warn("Failed to dispatch validation error event:", eventError);
|
|
9944
|
+
}
|
|
9945
|
+
}
|
|
8874
9946
|
throw error;
|
|
8875
9947
|
}
|
|
8876
9948
|
}
|
|
@@ -8900,6 +9972,25 @@ Method: GET`,
|
|
|
8900
9972
|
});
|
|
8901
9973
|
}
|
|
8902
9974
|
consola22.error("Response data:", response);
|
|
9975
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
9976
|
+
try {
|
|
9977
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
9978
|
+
detail: {
|
|
9979
|
+
operation: "getGrpcServicesMethodsRetrieve",
|
|
9980
|
+
path: "/cfg/grpc/services/{id}/methods/",
|
|
9981
|
+
method: "GET",
|
|
9982
|
+
error,
|
|
9983
|
+
response,
|
|
9984
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
9985
|
+
},
|
|
9986
|
+
bubbles: true,
|
|
9987
|
+
cancelable: false
|
|
9988
|
+
});
|
|
9989
|
+
window.dispatchEvent(event);
|
|
9990
|
+
} catch (eventError) {
|
|
9991
|
+
consola22.warn("Failed to dispatch validation error event:", eventError);
|
|
9992
|
+
}
|
|
9993
|
+
}
|
|
8903
9994
|
throw error;
|
|
8904
9995
|
}
|
|
8905
9996
|
}
|
|
@@ -8932,6 +10023,25 @@ Method: POST`,
|
|
|
8932
10023
|
});
|
|
8933
10024
|
}
|
|
8934
10025
|
consola23.error("Response data:", response);
|
|
10026
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10027
|
+
try {
|
|
10028
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10029
|
+
detail: {
|
|
10030
|
+
operation: "createGrpcTestCallCreate",
|
|
10031
|
+
path: "/cfg/grpc/test/call/",
|
|
10032
|
+
method: "POST",
|
|
10033
|
+
error,
|
|
10034
|
+
response,
|
|
10035
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10036
|
+
},
|
|
10037
|
+
bubbles: true,
|
|
10038
|
+
cancelable: false
|
|
10039
|
+
});
|
|
10040
|
+
window.dispatchEvent(event);
|
|
10041
|
+
} catch (eventError) {
|
|
10042
|
+
consola23.warn("Failed to dispatch validation error event:", eventError);
|
|
10043
|
+
}
|
|
10044
|
+
}
|
|
8935
10045
|
throw error;
|
|
8936
10046
|
}
|
|
8937
10047
|
}
|
|
@@ -8961,6 +10071,25 @@ Method: GET`,
|
|
|
8961
10071
|
});
|
|
8962
10072
|
}
|
|
8963
10073
|
consola23.error("Response data:", response);
|
|
10074
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10075
|
+
try {
|
|
10076
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10077
|
+
detail: {
|
|
10078
|
+
operation: "getGrpcTestExamplesRetrieve",
|
|
10079
|
+
path: "/cfg/grpc/test/examples/",
|
|
10080
|
+
method: "GET",
|
|
10081
|
+
error,
|
|
10082
|
+
response,
|
|
10083
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10084
|
+
},
|
|
10085
|
+
bubbles: true,
|
|
10086
|
+
cancelable: false
|
|
10087
|
+
});
|
|
10088
|
+
window.dispatchEvent(event);
|
|
10089
|
+
} catch (eventError) {
|
|
10090
|
+
consola23.warn("Failed to dispatch validation error event:", eventError);
|
|
10091
|
+
}
|
|
10092
|
+
}
|
|
8964
10093
|
throw error;
|
|
8965
10094
|
}
|
|
8966
10095
|
}
|
|
@@ -8990,6 +10119,25 @@ Method: GET`,
|
|
|
8990
10119
|
});
|
|
8991
10120
|
}
|
|
8992
10121
|
consola23.error("Response data:", response);
|
|
10122
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10123
|
+
try {
|
|
10124
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10125
|
+
detail: {
|
|
10126
|
+
operation: "getGrpcTestLogsRetrieve",
|
|
10127
|
+
path: "/cfg/grpc/test/logs/",
|
|
10128
|
+
method: "GET",
|
|
10129
|
+
error,
|
|
10130
|
+
response,
|
|
10131
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10132
|
+
},
|
|
10133
|
+
bubbles: true,
|
|
10134
|
+
cancelable: false
|
|
10135
|
+
});
|
|
10136
|
+
window.dispatchEvent(event);
|
|
10137
|
+
} catch (eventError) {
|
|
10138
|
+
consola23.warn("Failed to dispatch validation error event:", eventError);
|
|
10139
|
+
}
|
|
10140
|
+
}
|
|
8993
10141
|
throw error;
|
|
8994
10142
|
}
|
|
8995
10143
|
}
|
|
@@ -9022,6 +10170,25 @@ Method: GET`,
|
|
|
9022
10170
|
});
|
|
9023
10171
|
}
|
|
9024
10172
|
consola24.error("Response data:", response);
|
|
10173
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10174
|
+
try {
|
|
10175
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10176
|
+
detail: {
|
|
10177
|
+
operation: "getHealthDrfRetrieve",
|
|
10178
|
+
path: "/cfg/health/drf/",
|
|
10179
|
+
method: "GET",
|
|
10180
|
+
error,
|
|
10181
|
+
response,
|
|
10182
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10183
|
+
},
|
|
10184
|
+
bubbles: true,
|
|
10185
|
+
cancelable: false
|
|
10186
|
+
});
|
|
10187
|
+
window.dispatchEvent(event);
|
|
10188
|
+
} catch (eventError) {
|
|
10189
|
+
consola24.warn("Failed to dispatch validation error event:", eventError);
|
|
10190
|
+
}
|
|
10191
|
+
}
|
|
9025
10192
|
throw error;
|
|
9026
10193
|
}
|
|
9027
10194
|
}
|
|
@@ -9051,6 +10218,25 @@ Method: GET`,
|
|
|
9051
10218
|
});
|
|
9052
10219
|
}
|
|
9053
10220
|
consola24.error("Response data:", response);
|
|
10221
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10222
|
+
try {
|
|
10223
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10224
|
+
detail: {
|
|
10225
|
+
operation: "getHealthDrfQuickRetrieve",
|
|
10226
|
+
path: "/cfg/health/drf/quick/",
|
|
10227
|
+
method: "GET",
|
|
10228
|
+
error,
|
|
10229
|
+
response,
|
|
10230
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10231
|
+
},
|
|
10232
|
+
bubbles: true,
|
|
10233
|
+
cancelable: false
|
|
10234
|
+
});
|
|
10235
|
+
window.dispatchEvent(event);
|
|
10236
|
+
} catch (eventError) {
|
|
10237
|
+
consola24.warn("Failed to dispatch validation error event:", eventError);
|
|
10238
|
+
}
|
|
10239
|
+
}
|
|
9054
10240
|
throw error;
|
|
9055
10241
|
}
|
|
9056
10242
|
}
|
|
@@ -9083,6 +10269,25 @@ Method: GET`,
|
|
|
9083
10269
|
});
|
|
9084
10270
|
}
|
|
9085
10271
|
consola25.error("Response data:", response);
|
|
10272
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10273
|
+
try {
|
|
10274
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10275
|
+
detail: {
|
|
10276
|
+
operation: "getKnowbaseAdminChatList",
|
|
10277
|
+
path: "/cfg/knowbase/admin/chat/",
|
|
10278
|
+
method: "GET",
|
|
10279
|
+
error,
|
|
10280
|
+
response,
|
|
10281
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10282
|
+
},
|
|
10283
|
+
bubbles: true,
|
|
10284
|
+
cancelable: false
|
|
10285
|
+
});
|
|
10286
|
+
window.dispatchEvent(event);
|
|
10287
|
+
} catch (eventError) {
|
|
10288
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10289
|
+
}
|
|
10290
|
+
}
|
|
9086
10291
|
throw error;
|
|
9087
10292
|
}
|
|
9088
10293
|
}
|
|
@@ -9112,6 +10317,25 @@ Method: POST`,
|
|
|
9112
10317
|
});
|
|
9113
10318
|
}
|
|
9114
10319
|
consola25.error("Response data:", response);
|
|
10320
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10321
|
+
try {
|
|
10322
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10323
|
+
detail: {
|
|
10324
|
+
operation: "createKnowbaseAdminChatCreate",
|
|
10325
|
+
path: "/cfg/knowbase/admin/chat/",
|
|
10326
|
+
method: "POST",
|
|
10327
|
+
error,
|
|
10328
|
+
response,
|
|
10329
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10330
|
+
},
|
|
10331
|
+
bubbles: true,
|
|
10332
|
+
cancelable: false
|
|
10333
|
+
});
|
|
10334
|
+
window.dispatchEvent(event);
|
|
10335
|
+
} catch (eventError) {
|
|
10336
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10337
|
+
}
|
|
10338
|
+
}
|
|
9115
10339
|
throw error;
|
|
9116
10340
|
}
|
|
9117
10341
|
}
|
|
@@ -9141,6 +10365,25 @@ Method: GET`,
|
|
|
9141
10365
|
});
|
|
9142
10366
|
}
|
|
9143
10367
|
consola25.error("Response data:", response);
|
|
10368
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10369
|
+
try {
|
|
10370
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10371
|
+
detail: {
|
|
10372
|
+
operation: "getKnowbaseAdminChatRetrieve",
|
|
10373
|
+
path: "/cfg/knowbase/admin/chat/{id}/",
|
|
10374
|
+
method: "GET",
|
|
10375
|
+
error,
|
|
10376
|
+
response,
|
|
10377
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10378
|
+
},
|
|
10379
|
+
bubbles: true,
|
|
10380
|
+
cancelable: false
|
|
10381
|
+
});
|
|
10382
|
+
window.dispatchEvent(event);
|
|
10383
|
+
} catch (eventError) {
|
|
10384
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10385
|
+
}
|
|
10386
|
+
}
|
|
9144
10387
|
throw error;
|
|
9145
10388
|
}
|
|
9146
10389
|
}
|
|
@@ -9170,6 +10413,25 @@ Method: PUT`,
|
|
|
9170
10413
|
});
|
|
9171
10414
|
}
|
|
9172
10415
|
consola25.error("Response data:", response);
|
|
10416
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10417
|
+
try {
|
|
10418
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10419
|
+
detail: {
|
|
10420
|
+
operation: "updateKnowbaseAdminChatUpdate",
|
|
10421
|
+
path: "/cfg/knowbase/admin/chat/{id}/",
|
|
10422
|
+
method: "PUT",
|
|
10423
|
+
error,
|
|
10424
|
+
response,
|
|
10425
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10426
|
+
},
|
|
10427
|
+
bubbles: true,
|
|
10428
|
+
cancelable: false
|
|
10429
|
+
});
|
|
10430
|
+
window.dispatchEvent(event);
|
|
10431
|
+
} catch (eventError) {
|
|
10432
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10433
|
+
}
|
|
10434
|
+
}
|
|
9173
10435
|
throw error;
|
|
9174
10436
|
}
|
|
9175
10437
|
}
|
|
@@ -9199,6 +10461,25 @@ Method: PATCH`,
|
|
|
9199
10461
|
});
|
|
9200
10462
|
}
|
|
9201
10463
|
consola25.error("Response data:", response);
|
|
10464
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10465
|
+
try {
|
|
10466
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10467
|
+
detail: {
|
|
10468
|
+
operation: "partialUpdateKnowbaseAdminChatPartialUpdate",
|
|
10469
|
+
path: "/cfg/knowbase/admin/chat/{id}/",
|
|
10470
|
+
method: "PATCH",
|
|
10471
|
+
error,
|
|
10472
|
+
response,
|
|
10473
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10474
|
+
},
|
|
10475
|
+
bubbles: true,
|
|
10476
|
+
cancelable: false
|
|
10477
|
+
});
|
|
10478
|
+
window.dispatchEvent(event);
|
|
10479
|
+
} catch (eventError) {
|
|
10480
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10481
|
+
}
|
|
10482
|
+
}
|
|
9202
10483
|
throw error;
|
|
9203
10484
|
}
|
|
9204
10485
|
}
|
|
@@ -9233,6 +10514,25 @@ Method: GET`,
|
|
|
9233
10514
|
});
|
|
9234
10515
|
}
|
|
9235
10516
|
consola25.error("Response data:", response);
|
|
10517
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10518
|
+
try {
|
|
10519
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10520
|
+
detail: {
|
|
10521
|
+
operation: "getKnowbaseAdminChatHistoryRetrieve",
|
|
10522
|
+
path: "/cfg/knowbase/admin/chat/{id}/history/",
|
|
10523
|
+
method: "GET",
|
|
10524
|
+
error,
|
|
10525
|
+
response,
|
|
10526
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10527
|
+
},
|
|
10528
|
+
bubbles: true,
|
|
10529
|
+
cancelable: false
|
|
10530
|
+
});
|
|
10531
|
+
window.dispatchEvent(event);
|
|
10532
|
+
} catch (eventError) {
|
|
10533
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10534
|
+
}
|
|
10535
|
+
}
|
|
9236
10536
|
throw error;
|
|
9237
10537
|
}
|
|
9238
10538
|
}
|
|
@@ -9262,6 +10562,25 @@ Method: POST`,
|
|
|
9262
10562
|
});
|
|
9263
10563
|
}
|
|
9264
10564
|
consola25.error("Response data:", response);
|
|
10565
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10566
|
+
try {
|
|
10567
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10568
|
+
detail: {
|
|
10569
|
+
operation: "createKnowbaseAdminChatQueryCreate",
|
|
10570
|
+
path: "/cfg/knowbase/admin/chat/query/",
|
|
10571
|
+
method: "POST",
|
|
10572
|
+
error,
|
|
10573
|
+
response,
|
|
10574
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10575
|
+
},
|
|
10576
|
+
bubbles: true,
|
|
10577
|
+
cancelable: false
|
|
10578
|
+
});
|
|
10579
|
+
window.dispatchEvent(event);
|
|
10580
|
+
} catch (eventError) {
|
|
10581
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10582
|
+
}
|
|
10583
|
+
}
|
|
9265
10584
|
throw error;
|
|
9266
10585
|
}
|
|
9267
10586
|
}
|
|
@@ -9291,6 +10610,25 @@ Method: GET`,
|
|
|
9291
10610
|
});
|
|
9292
10611
|
}
|
|
9293
10612
|
consola25.error("Response data:", response);
|
|
10613
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10614
|
+
try {
|
|
10615
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10616
|
+
detail: {
|
|
10617
|
+
operation: "getKnowbaseAdminDocumentsList",
|
|
10618
|
+
path: "/cfg/knowbase/admin/documents/",
|
|
10619
|
+
method: "GET",
|
|
10620
|
+
error,
|
|
10621
|
+
response,
|
|
10622
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10623
|
+
},
|
|
10624
|
+
bubbles: true,
|
|
10625
|
+
cancelable: false
|
|
10626
|
+
});
|
|
10627
|
+
window.dispatchEvent(event);
|
|
10628
|
+
} catch (eventError) {
|
|
10629
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10630
|
+
}
|
|
10631
|
+
}
|
|
9294
10632
|
throw error;
|
|
9295
10633
|
}
|
|
9296
10634
|
}
|
|
@@ -9320,6 +10658,25 @@ Method: POST`,
|
|
|
9320
10658
|
});
|
|
9321
10659
|
}
|
|
9322
10660
|
consola25.error("Response data:", response);
|
|
10661
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10662
|
+
try {
|
|
10663
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10664
|
+
detail: {
|
|
10665
|
+
operation: "createKnowbaseAdminDocumentsCreate",
|
|
10666
|
+
path: "/cfg/knowbase/admin/documents/",
|
|
10667
|
+
method: "POST",
|
|
10668
|
+
error,
|
|
10669
|
+
response,
|
|
10670
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10671
|
+
},
|
|
10672
|
+
bubbles: true,
|
|
10673
|
+
cancelable: false
|
|
10674
|
+
});
|
|
10675
|
+
window.dispatchEvent(event);
|
|
10676
|
+
} catch (eventError) {
|
|
10677
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10678
|
+
}
|
|
10679
|
+
}
|
|
9323
10680
|
throw error;
|
|
9324
10681
|
}
|
|
9325
10682
|
}
|
|
@@ -9349,6 +10706,25 @@ Method: GET`,
|
|
|
9349
10706
|
});
|
|
9350
10707
|
}
|
|
9351
10708
|
consola25.error("Response data:", response);
|
|
10709
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10710
|
+
try {
|
|
10711
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10712
|
+
detail: {
|
|
10713
|
+
operation: "getKnowbaseAdminDocumentsRetrieve",
|
|
10714
|
+
path: "/cfg/knowbase/admin/documents/{id}/",
|
|
10715
|
+
method: "GET",
|
|
10716
|
+
error,
|
|
10717
|
+
response,
|
|
10718
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10719
|
+
},
|
|
10720
|
+
bubbles: true,
|
|
10721
|
+
cancelable: false
|
|
10722
|
+
});
|
|
10723
|
+
window.dispatchEvent(event);
|
|
10724
|
+
} catch (eventError) {
|
|
10725
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10726
|
+
}
|
|
10727
|
+
}
|
|
9352
10728
|
throw error;
|
|
9353
10729
|
}
|
|
9354
10730
|
}
|
|
@@ -9378,6 +10754,25 @@ Method: PUT`,
|
|
|
9378
10754
|
});
|
|
9379
10755
|
}
|
|
9380
10756
|
consola25.error("Response data:", response);
|
|
10757
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10758
|
+
try {
|
|
10759
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10760
|
+
detail: {
|
|
10761
|
+
operation: "updateKnowbaseAdminDocumentsUpdate",
|
|
10762
|
+
path: "/cfg/knowbase/admin/documents/{id}/",
|
|
10763
|
+
method: "PUT",
|
|
10764
|
+
error,
|
|
10765
|
+
response,
|
|
10766
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10767
|
+
},
|
|
10768
|
+
bubbles: true,
|
|
10769
|
+
cancelable: false
|
|
10770
|
+
});
|
|
10771
|
+
window.dispatchEvent(event);
|
|
10772
|
+
} catch (eventError) {
|
|
10773
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10774
|
+
}
|
|
10775
|
+
}
|
|
9381
10776
|
throw error;
|
|
9382
10777
|
}
|
|
9383
10778
|
}
|
|
@@ -9407,6 +10802,25 @@ Method: PATCH`,
|
|
|
9407
10802
|
});
|
|
9408
10803
|
}
|
|
9409
10804
|
consola25.error("Response data:", response);
|
|
10805
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10806
|
+
try {
|
|
10807
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10808
|
+
detail: {
|
|
10809
|
+
operation: "partialUpdateKnowbaseAdminDocumentsPartialUpdate",
|
|
10810
|
+
path: "/cfg/knowbase/admin/documents/{id}/",
|
|
10811
|
+
method: "PATCH",
|
|
10812
|
+
error,
|
|
10813
|
+
response,
|
|
10814
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10815
|
+
},
|
|
10816
|
+
bubbles: true,
|
|
10817
|
+
cancelable: false
|
|
10818
|
+
});
|
|
10819
|
+
window.dispatchEvent(event);
|
|
10820
|
+
} catch (eventError) {
|
|
10821
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10822
|
+
}
|
|
10823
|
+
}
|
|
9410
10824
|
throw error;
|
|
9411
10825
|
}
|
|
9412
10826
|
}
|
|
@@ -9441,6 +10855,25 @@ Method: POST`,
|
|
|
9441
10855
|
});
|
|
9442
10856
|
}
|
|
9443
10857
|
consola25.error("Response data:", response);
|
|
10858
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10859
|
+
try {
|
|
10860
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10861
|
+
detail: {
|
|
10862
|
+
operation: "createKnowbaseAdminDocumentsReprocessCreate",
|
|
10863
|
+
path: "/cfg/knowbase/admin/documents/{id}/reprocess/",
|
|
10864
|
+
method: "POST",
|
|
10865
|
+
error,
|
|
10866
|
+
response,
|
|
10867
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10868
|
+
},
|
|
10869
|
+
bubbles: true,
|
|
10870
|
+
cancelable: false
|
|
10871
|
+
});
|
|
10872
|
+
window.dispatchEvent(event);
|
|
10873
|
+
} catch (eventError) {
|
|
10874
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10875
|
+
}
|
|
10876
|
+
}
|
|
9444
10877
|
throw error;
|
|
9445
10878
|
}
|
|
9446
10879
|
}
|
|
@@ -9470,6 +10903,25 @@ Method: GET`,
|
|
|
9470
10903
|
});
|
|
9471
10904
|
}
|
|
9472
10905
|
consola25.error("Response data:", response);
|
|
10906
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10907
|
+
try {
|
|
10908
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10909
|
+
detail: {
|
|
10910
|
+
operation: "getKnowbaseAdminDocumentsStatusRetrieve",
|
|
10911
|
+
path: "/cfg/knowbase/admin/documents/{id}/status/",
|
|
10912
|
+
method: "GET",
|
|
10913
|
+
error,
|
|
10914
|
+
response,
|
|
10915
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10916
|
+
},
|
|
10917
|
+
bubbles: true,
|
|
10918
|
+
cancelable: false
|
|
10919
|
+
});
|
|
10920
|
+
window.dispatchEvent(event);
|
|
10921
|
+
} catch (eventError) {
|
|
10922
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10923
|
+
}
|
|
10924
|
+
}
|
|
9473
10925
|
throw error;
|
|
9474
10926
|
}
|
|
9475
10927
|
}
|
|
@@ -9499,6 +10951,25 @@ Method: GET`,
|
|
|
9499
10951
|
});
|
|
9500
10952
|
}
|
|
9501
10953
|
consola25.error("Response data:", response);
|
|
10954
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
10955
|
+
try {
|
|
10956
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
10957
|
+
detail: {
|
|
10958
|
+
operation: "getKnowbaseAdminDocumentsStatsRetrieve",
|
|
10959
|
+
path: "/cfg/knowbase/admin/documents/stats/",
|
|
10960
|
+
method: "GET",
|
|
10961
|
+
error,
|
|
10962
|
+
response,
|
|
10963
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
10964
|
+
},
|
|
10965
|
+
bubbles: true,
|
|
10966
|
+
cancelable: false
|
|
10967
|
+
});
|
|
10968
|
+
window.dispatchEvent(event);
|
|
10969
|
+
} catch (eventError) {
|
|
10970
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
10971
|
+
}
|
|
10972
|
+
}
|
|
9502
10973
|
throw error;
|
|
9503
10974
|
}
|
|
9504
10975
|
}
|
|
@@ -9528,6 +10999,25 @@ Method: GET`,
|
|
|
9528
10999
|
});
|
|
9529
11000
|
}
|
|
9530
11001
|
consola25.error("Response data:", response);
|
|
11002
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11003
|
+
try {
|
|
11004
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11005
|
+
detail: {
|
|
11006
|
+
operation: "getKnowbaseAdminSessionsList",
|
|
11007
|
+
path: "/cfg/knowbase/admin/sessions/",
|
|
11008
|
+
method: "GET",
|
|
11009
|
+
error,
|
|
11010
|
+
response,
|
|
11011
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11012
|
+
},
|
|
11013
|
+
bubbles: true,
|
|
11014
|
+
cancelable: false
|
|
11015
|
+
});
|
|
11016
|
+
window.dispatchEvent(event);
|
|
11017
|
+
} catch (eventError) {
|
|
11018
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11019
|
+
}
|
|
11020
|
+
}
|
|
9531
11021
|
throw error;
|
|
9532
11022
|
}
|
|
9533
11023
|
}
|
|
@@ -9557,6 +11047,25 @@ Method: POST`,
|
|
|
9557
11047
|
});
|
|
9558
11048
|
}
|
|
9559
11049
|
consola25.error("Response data:", response);
|
|
11050
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11051
|
+
try {
|
|
11052
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11053
|
+
detail: {
|
|
11054
|
+
operation: "createKnowbaseAdminSessionsCreate",
|
|
11055
|
+
path: "/cfg/knowbase/admin/sessions/",
|
|
11056
|
+
method: "POST",
|
|
11057
|
+
error,
|
|
11058
|
+
response,
|
|
11059
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11060
|
+
},
|
|
11061
|
+
bubbles: true,
|
|
11062
|
+
cancelable: false
|
|
11063
|
+
});
|
|
11064
|
+
window.dispatchEvent(event);
|
|
11065
|
+
} catch (eventError) {
|
|
11066
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11067
|
+
}
|
|
11068
|
+
}
|
|
9560
11069
|
throw error;
|
|
9561
11070
|
}
|
|
9562
11071
|
}
|
|
@@ -9586,6 +11095,25 @@ Method: GET`,
|
|
|
9586
11095
|
});
|
|
9587
11096
|
}
|
|
9588
11097
|
consola25.error("Response data:", response);
|
|
11098
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11099
|
+
try {
|
|
11100
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11101
|
+
detail: {
|
|
11102
|
+
operation: "getKnowbaseAdminSessionsRetrieve",
|
|
11103
|
+
path: "/cfg/knowbase/admin/sessions/{id}/",
|
|
11104
|
+
method: "GET",
|
|
11105
|
+
error,
|
|
11106
|
+
response,
|
|
11107
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11108
|
+
},
|
|
11109
|
+
bubbles: true,
|
|
11110
|
+
cancelable: false
|
|
11111
|
+
});
|
|
11112
|
+
window.dispatchEvent(event);
|
|
11113
|
+
} catch (eventError) {
|
|
11114
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11115
|
+
}
|
|
11116
|
+
}
|
|
9589
11117
|
throw error;
|
|
9590
11118
|
}
|
|
9591
11119
|
}
|
|
@@ -9615,6 +11143,25 @@ Method: PUT`,
|
|
|
9615
11143
|
});
|
|
9616
11144
|
}
|
|
9617
11145
|
consola25.error("Response data:", response);
|
|
11146
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11147
|
+
try {
|
|
11148
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11149
|
+
detail: {
|
|
11150
|
+
operation: "updateKnowbaseAdminSessionsUpdate",
|
|
11151
|
+
path: "/cfg/knowbase/admin/sessions/{id}/",
|
|
11152
|
+
method: "PUT",
|
|
11153
|
+
error,
|
|
11154
|
+
response,
|
|
11155
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11156
|
+
},
|
|
11157
|
+
bubbles: true,
|
|
11158
|
+
cancelable: false
|
|
11159
|
+
});
|
|
11160
|
+
window.dispatchEvent(event);
|
|
11161
|
+
} catch (eventError) {
|
|
11162
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11163
|
+
}
|
|
11164
|
+
}
|
|
9618
11165
|
throw error;
|
|
9619
11166
|
}
|
|
9620
11167
|
}
|
|
@@ -9644,6 +11191,25 @@ Method: PATCH`,
|
|
|
9644
11191
|
});
|
|
9645
11192
|
}
|
|
9646
11193
|
consola25.error("Response data:", response);
|
|
11194
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11195
|
+
try {
|
|
11196
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11197
|
+
detail: {
|
|
11198
|
+
operation: "partialUpdateKnowbaseAdminSessionsPartialUpdate",
|
|
11199
|
+
path: "/cfg/knowbase/admin/sessions/{id}/",
|
|
11200
|
+
method: "PATCH",
|
|
11201
|
+
error,
|
|
11202
|
+
response,
|
|
11203
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11204
|
+
},
|
|
11205
|
+
bubbles: true,
|
|
11206
|
+
cancelable: false
|
|
11207
|
+
});
|
|
11208
|
+
window.dispatchEvent(event);
|
|
11209
|
+
} catch (eventError) {
|
|
11210
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11211
|
+
}
|
|
11212
|
+
}
|
|
9647
11213
|
throw error;
|
|
9648
11214
|
}
|
|
9649
11215
|
}
|
|
@@ -9678,6 +11244,25 @@ Method: POST`,
|
|
|
9678
11244
|
});
|
|
9679
11245
|
}
|
|
9680
11246
|
consola25.error("Response data:", response);
|
|
11247
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11248
|
+
try {
|
|
11249
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11250
|
+
detail: {
|
|
11251
|
+
operation: "createKnowbaseAdminSessionsActivateCreate",
|
|
11252
|
+
path: "/cfg/knowbase/admin/sessions/{id}/activate/",
|
|
11253
|
+
method: "POST",
|
|
11254
|
+
error,
|
|
11255
|
+
response,
|
|
11256
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11257
|
+
},
|
|
11258
|
+
bubbles: true,
|
|
11259
|
+
cancelable: false
|
|
11260
|
+
});
|
|
11261
|
+
window.dispatchEvent(event);
|
|
11262
|
+
} catch (eventError) {
|
|
11263
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11264
|
+
}
|
|
11265
|
+
}
|
|
9681
11266
|
throw error;
|
|
9682
11267
|
}
|
|
9683
11268
|
}
|
|
@@ -9707,6 +11292,25 @@ Method: POST`,
|
|
|
9707
11292
|
});
|
|
9708
11293
|
}
|
|
9709
11294
|
consola25.error("Response data:", response);
|
|
11295
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11296
|
+
try {
|
|
11297
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11298
|
+
detail: {
|
|
11299
|
+
operation: "createKnowbaseAdminSessionsArchiveCreate",
|
|
11300
|
+
path: "/cfg/knowbase/admin/sessions/{id}/archive/",
|
|
11301
|
+
method: "POST",
|
|
11302
|
+
error,
|
|
11303
|
+
response,
|
|
11304
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11305
|
+
},
|
|
11306
|
+
bubbles: true,
|
|
11307
|
+
cancelable: false
|
|
11308
|
+
});
|
|
11309
|
+
window.dispatchEvent(event);
|
|
11310
|
+
} catch (eventError) {
|
|
11311
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11312
|
+
}
|
|
11313
|
+
}
|
|
9710
11314
|
throw error;
|
|
9711
11315
|
}
|
|
9712
11316
|
}
|
|
@@ -9736,6 +11340,25 @@ Method: GET`,
|
|
|
9736
11340
|
});
|
|
9737
11341
|
}
|
|
9738
11342
|
consola25.error("Response data:", response);
|
|
11343
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11344
|
+
try {
|
|
11345
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11346
|
+
detail: {
|
|
11347
|
+
operation: "getKnowbaseCategoriesList",
|
|
11348
|
+
path: "/cfg/knowbase/categories/",
|
|
11349
|
+
method: "GET",
|
|
11350
|
+
error,
|
|
11351
|
+
response,
|
|
11352
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11353
|
+
},
|
|
11354
|
+
bubbles: true,
|
|
11355
|
+
cancelable: false
|
|
11356
|
+
});
|
|
11357
|
+
window.dispatchEvent(event);
|
|
11358
|
+
} catch (eventError) {
|
|
11359
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11360
|
+
}
|
|
11361
|
+
}
|
|
9739
11362
|
throw error;
|
|
9740
11363
|
}
|
|
9741
11364
|
}
|
|
@@ -9765,6 +11388,25 @@ Method: GET`,
|
|
|
9765
11388
|
});
|
|
9766
11389
|
}
|
|
9767
11390
|
consola25.error("Response data:", response);
|
|
11391
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11392
|
+
try {
|
|
11393
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11394
|
+
detail: {
|
|
11395
|
+
operation: "getKnowbaseCategoriesRetrieve",
|
|
11396
|
+
path: "/cfg/knowbase/categories/{id}/",
|
|
11397
|
+
method: "GET",
|
|
11398
|
+
error,
|
|
11399
|
+
response,
|
|
11400
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11401
|
+
},
|
|
11402
|
+
bubbles: true,
|
|
11403
|
+
cancelable: false
|
|
11404
|
+
});
|
|
11405
|
+
window.dispatchEvent(event);
|
|
11406
|
+
} catch (eventError) {
|
|
11407
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11408
|
+
}
|
|
11409
|
+
}
|
|
9768
11410
|
throw error;
|
|
9769
11411
|
}
|
|
9770
11412
|
}
|
|
@@ -9794,6 +11436,25 @@ Method: GET`,
|
|
|
9794
11436
|
});
|
|
9795
11437
|
}
|
|
9796
11438
|
consola25.error("Response data:", response);
|
|
11439
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11440
|
+
try {
|
|
11441
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11442
|
+
detail: {
|
|
11443
|
+
operation: "getKnowbaseDocumentsList",
|
|
11444
|
+
path: "/cfg/knowbase/documents/",
|
|
11445
|
+
method: "GET",
|
|
11446
|
+
error,
|
|
11447
|
+
response,
|
|
11448
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11449
|
+
},
|
|
11450
|
+
bubbles: true,
|
|
11451
|
+
cancelable: false
|
|
11452
|
+
});
|
|
11453
|
+
window.dispatchEvent(event);
|
|
11454
|
+
} catch (eventError) {
|
|
11455
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11456
|
+
}
|
|
11457
|
+
}
|
|
9797
11458
|
throw error;
|
|
9798
11459
|
}
|
|
9799
11460
|
}
|
|
@@ -9823,6 +11484,25 @@ Method: GET`,
|
|
|
9823
11484
|
});
|
|
9824
11485
|
}
|
|
9825
11486
|
consola25.error("Response data:", response);
|
|
11487
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11488
|
+
try {
|
|
11489
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11490
|
+
detail: {
|
|
11491
|
+
operation: "getKnowbaseDocumentsRetrieve",
|
|
11492
|
+
path: "/cfg/knowbase/documents/{id}/",
|
|
11493
|
+
method: "GET",
|
|
11494
|
+
error,
|
|
11495
|
+
response,
|
|
11496
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11497
|
+
},
|
|
11498
|
+
bubbles: true,
|
|
11499
|
+
cancelable: false
|
|
11500
|
+
});
|
|
11501
|
+
window.dispatchEvent(event);
|
|
11502
|
+
} catch (eventError) {
|
|
11503
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11504
|
+
}
|
|
11505
|
+
}
|
|
9826
11506
|
throw error;
|
|
9827
11507
|
}
|
|
9828
11508
|
}
|
|
@@ -9852,6 +11532,25 @@ Method: GET`,
|
|
|
9852
11532
|
});
|
|
9853
11533
|
}
|
|
9854
11534
|
consola25.error("Response data:", response);
|
|
11535
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11536
|
+
try {
|
|
11537
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11538
|
+
detail: {
|
|
11539
|
+
operation: "getKnowbaseSystemArchivesList",
|
|
11540
|
+
path: "/cfg/knowbase/system/archives/",
|
|
11541
|
+
method: "GET",
|
|
11542
|
+
error,
|
|
11543
|
+
response,
|
|
11544
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11545
|
+
},
|
|
11546
|
+
bubbles: true,
|
|
11547
|
+
cancelable: false
|
|
11548
|
+
});
|
|
11549
|
+
window.dispatchEvent(event);
|
|
11550
|
+
} catch (eventError) {
|
|
11551
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11552
|
+
}
|
|
11553
|
+
}
|
|
9855
11554
|
throw error;
|
|
9856
11555
|
}
|
|
9857
11556
|
}
|
|
@@ -9881,6 +11580,25 @@ Method: POST`,
|
|
|
9881
11580
|
});
|
|
9882
11581
|
}
|
|
9883
11582
|
consola25.error("Response data:", response);
|
|
11583
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11584
|
+
try {
|
|
11585
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11586
|
+
detail: {
|
|
11587
|
+
operation: "createKnowbaseSystemArchivesCreate",
|
|
11588
|
+
path: "/cfg/knowbase/system/archives/",
|
|
11589
|
+
method: "POST",
|
|
11590
|
+
error,
|
|
11591
|
+
response,
|
|
11592
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11593
|
+
},
|
|
11594
|
+
bubbles: true,
|
|
11595
|
+
cancelable: false
|
|
11596
|
+
});
|
|
11597
|
+
window.dispatchEvent(event);
|
|
11598
|
+
} catch (eventError) {
|
|
11599
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11600
|
+
}
|
|
11601
|
+
}
|
|
9884
11602
|
throw error;
|
|
9885
11603
|
}
|
|
9886
11604
|
}
|
|
@@ -9910,6 +11628,25 @@ Method: GET`,
|
|
|
9910
11628
|
});
|
|
9911
11629
|
}
|
|
9912
11630
|
consola25.error("Response data:", response);
|
|
11631
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11632
|
+
try {
|
|
11633
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11634
|
+
detail: {
|
|
11635
|
+
operation: "getKnowbaseSystemArchivesRetrieve",
|
|
11636
|
+
path: "/cfg/knowbase/system/archives/{id}/",
|
|
11637
|
+
method: "GET",
|
|
11638
|
+
error,
|
|
11639
|
+
response,
|
|
11640
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11641
|
+
},
|
|
11642
|
+
bubbles: true,
|
|
11643
|
+
cancelable: false
|
|
11644
|
+
});
|
|
11645
|
+
window.dispatchEvent(event);
|
|
11646
|
+
} catch (eventError) {
|
|
11647
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11648
|
+
}
|
|
11649
|
+
}
|
|
9913
11650
|
throw error;
|
|
9914
11651
|
}
|
|
9915
11652
|
}
|
|
@@ -9939,6 +11676,25 @@ Method: PUT`,
|
|
|
9939
11676
|
});
|
|
9940
11677
|
}
|
|
9941
11678
|
consola25.error("Response data:", response);
|
|
11679
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11680
|
+
try {
|
|
11681
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11682
|
+
detail: {
|
|
11683
|
+
operation: "updateKnowbaseSystemArchivesUpdate",
|
|
11684
|
+
path: "/cfg/knowbase/system/archives/{id}/",
|
|
11685
|
+
method: "PUT",
|
|
11686
|
+
error,
|
|
11687
|
+
response,
|
|
11688
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11689
|
+
},
|
|
11690
|
+
bubbles: true,
|
|
11691
|
+
cancelable: false
|
|
11692
|
+
});
|
|
11693
|
+
window.dispatchEvent(event);
|
|
11694
|
+
} catch (eventError) {
|
|
11695
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11696
|
+
}
|
|
11697
|
+
}
|
|
9942
11698
|
throw error;
|
|
9943
11699
|
}
|
|
9944
11700
|
}
|
|
@@ -9968,6 +11724,25 @@ Method: PATCH`,
|
|
|
9968
11724
|
});
|
|
9969
11725
|
}
|
|
9970
11726
|
consola25.error("Response data:", response);
|
|
11727
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11728
|
+
try {
|
|
11729
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11730
|
+
detail: {
|
|
11731
|
+
operation: "partialUpdateKnowbaseSystemArchivesPartialUpdate",
|
|
11732
|
+
path: "/cfg/knowbase/system/archives/{id}/",
|
|
11733
|
+
method: "PATCH",
|
|
11734
|
+
error,
|
|
11735
|
+
response,
|
|
11736
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11737
|
+
},
|
|
11738
|
+
bubbles: true,
|
|
11739
|
+
cancelable: false
|
|
11740
|
+
});
|
|
11741
|
+
window.dispatchEvent(event);
|
|
11742
|
+
} catch (eventError) {
|
|
11743
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11744
|
+
}
|
|
11745
|
+
}
|
|
9971
11746
|
throw error;
|
|
9972
11747
|
}
|
|
9973
11748
|
}
|
|
@@ -10007,6 +11782,25 @@ Method: GET`,
|
|
|
10007
11782
|
});
|
|
10008
11783
|
}
|
|
10009
11784
|
consola25.error("Response data:", response);
|
|
11785
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11786
|
+
try {
|
|
11787
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11788
|
+
detail: {
|
|
11789
|
+
operation: "getKnowbaseSystemArchivesItemsList",
|
|
11790
|
+
path: "/cfg/knowbase/system/archives/{id}/items/",
|
|
11791
|
+
method: "GET",
|
|
11792
|
+
error,
|
|
11793
|
+
response,
|
|
11794
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11795
|
+
},
|
|
11796
|
+
bubbles: true,
|
|
11797
|
+
cancelable: false
|
|
11798
|
+
});
|
|
11799
|
+
window.dispatchEvent(event);
|
|
11800
|
+
} catch (eventError) {
|
|
11801
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11802
|
+
}
|
|
11803
|
+
}
|
|
10010
11804
|
throw error;
|
|
10011
11805
|
}
|
|
10012
11806
|
}
|
|
@@ -10036,6 +11830,25 @@ Method: POST`,
|
|
|
10036
11830
|
});
|
|
10037
11831
|
}
|
|
10038
11832
|
consola25.error("Response data:", response);
|
|
11833
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11834
|
+
try {
|
|
11835
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11836
|
+
detail: {
|
|
11837
|
+
operation: "createKnowbaseSystemArchivesSearchCreate",
|
|
11838
|
+
path: "/cfg/knowbase/system/archives/{id}/search/",
|
|
11839
|
+
method: "POST",
|
|
11840
|
+
error,
|
|
11841
|
+
response,
|
|
11842
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11843
|
+
},
|
|
11844
|
+
bubbles: true,
|
|
11845
|
+
cancelable: false
|
|
11846
|
+
});
|
|
11847
|
+
window.dispatchEvent(event);
|
|
11848
|
+
} catch (eventError) {
|
|
11849
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11850
|
+
}
|
|
11851
|
+
}
|
|
10039
11852
|
throw error;
|
|
10040
11853
|
}
|
|
10041
11854
|
}
|
|
@@ -10065,6 +11878,25 @@ Method: POST`,
|
|
|
10065
11878
|
});
|
|
10066
11879
|
}
|
|
10067
11880
|
consola25.error("Response data:", response);
|
|
11881
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11882
|
+
try {
|
|
11883
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11884
|
+
detail: {
|
|
11885
|
+
operation: "createKnowbaseSystemArchivesRevectorizeCreate",
|
|
11886
|
+
path: "/cfg/knowbase/system/archives/revectorize/",
|
|
11887
|
+
method: "POST",
|
|
11888
|
+
error,
|
|
11889
|
+
response,
|
|
11890
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11891
|
+
},
|
|
11892
|
+
bubbles: true,
|
|
11893
|
+
cancelable: false
|
|
11894
|
+
});
|
|
11895
|
+
window.dispatchEvent(event);
|
|
11896
|
+
} catch (eventError) {
|
|
11897
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11898
|
+
}
|
|
11899
|
+
}
|
|
10068
11900
|
throw error;
|
|
10069
11901
|
}
|
|
10070
11902
|
}
|
|
@@ -10094,6 +11926,25 @@ Method: GET`,
|
|
|
10094
11926
|
});
|
|
10095
11927
|
}
|
|
10096
11928
|
consola25.error("Response data:", response);
|
|
11929
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11930
|
+
try {
|
|
11931
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11932
|
+
detail: {
|
|
11933
|
+
operation: "getKnowbaseSystemArchivesStatisticsRetrieve",
|
|
11934
|
+
path: "/cfg/knowbase/system/archives/statistics/",
|
|
11935
|
+
method: "GET",
|
|
11936
|
+
error,
|
|
11937
|
+
response,
|
|
11938
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11939
|
+
},
|
|
11940
|
+
bubbles: true,
|
|
11941
|
+
cancelable: false
|
|
11942
|
+
});
|
|
11943
|
+
window.dispatchEvent(event);
|
|
11944
|
+
} catch (eventError) {
|
|
11945
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11946
|
+
}
|
|
11947
|
+
}
|
|
10097
11948
|
throw error;
|
|
10098
11949
|
}
|
|
10099
11950
|
}
|
|
@@ -10123,6 +11974,25 @@ Method: GET`,
|
|
|
10123
11974
|
});
|
|
10124
11975
|
}
|
|
10125
11976
|
consola25.error("Response data:", response);
|
|
11977
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
11978
|
+
try {
|
|
11979
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
11980
|
+
detail: {
|
|
11981
|
+
operation: "getKnowbaseSystemArchivesVectorizationStatsRetrieve",
|
|
11982
|
+
path: "/cfg/knowbase/system/archives/vectorization_stats/",
|
|
11983
|
+
method: "GET",
|
|
11984
|
+
error,
|
|
11985
|
+
response,
|
|
11986
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
11987
|
+
},
|
|
11988
|
+
bubbles: true,
|
|
11989
|
+
cancelable: false
|
|
11990
|
+
});
|
|
11991
|
+
window.dispatchEvent(event);
|
|
11992
|
+
} catch (eventError) {
|
|
11993
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
11994
|
+
}
|
|
11995
|
+
}
|
|
10126
11996
|
throw error;
|
|
10127
11997
|
}
|
|
10128
11998
|
}
|
|
@@ -10152,6 +12022,25 @@ Method: GET`,
|
|
|
10152
12022
|
});
|
|
10153
12023
|
}
|
|
10154
12024
|
consola25.error("Response data:", response);
|
|
12025
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12026
|
+
try {
|
|
12027
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12028
|
+
detail: {
|
|
12029
|
+
operation: "getKnowbaseSystemChunksList",
|
|
12030
|
+
path: "/cfg/knowbase/system/chunks/",
|
|
12031
|
+
method: "GET",
|
|
12032
|
+
error,
|
|
12033
|
+
response,
|
|
12034
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12035
|
+
},
|
|
12036
|
+
bubbles: true,
|
|
12037
|
+
cancelable: false
|
|
12038
|
+
});
|
|
12039
|
+
window.dispatchEvent(event);
|
|
12040
|
+
} catch (eventError) {
|
|
12041
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12042
|
+
}
|
|
12043
|
+
}
|
|
10155
12044
|
throw error;
|
|
10156
12045
|
}
|
|
10157
12046
|
}
|
|
@@ -10181,6 +12070,25 @@ Method: POST`,
|
|
|
10181
12070
|
});
|
|
10182
12071
|
}
|
|
10183
12072
|
consola25.error("Response data:", response);
|
|
12073
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12074
|
+
try {
|
|
12075
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12076
|
+
detail: {
|
|
12077
|
+
operation: "createKnowbaseSystemChunksCreate",
|
|
12078
|
+
path: "/cfg/knowbase/system/chunks/",
|
|
12079
|
+
method: "POST",
|
|
12080
|
+
error,
|
|
12081
|
+
response,
|
|
12082
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12083
|
+
},
|
|
12084
|
+
bubbles: true,
|
|
12085
|
+
cancelable: false
|
|
12086
|
+
});
|
|
12087
|
+
window.dispatchEvent(event);
|
|
12088
|
+
} catch (eventError) {
|
|
12089
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12090
|
+
}
|
|
12091
|
+
}
|
|
10184
12092
|
throw error;
|
|
10185
12093
|
}
|
|
10186
12094
|
}
|
|
@@ -10210,6 +12118,25 @@ Method: GET`,
|
|
|
10210
12118
|
});
|
|
10211
12119
|
}
|
|
10212
12120
|
consola25.error("Response data:", response);
|
|
12121
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12122
|
+
try {
|
|
12123
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12124
|
+
detail: {
|
|
12125
|
+
operation: "getKnowbaseSystemChunksRetrieve",
|
|
12126
|
+
path: "/cfg/knowbase/system/chunks/{id}/",
|
|
12127
|
+
method: "GET",
|
|
12128
|
+
error,
|
|
12129
|
+
response,
|
|
12130
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12131
|
+
},
|
|
12132
|
+
bubbles: true,
|
|
12133
|
+
cancelable: false
|
|
12134
|
+
});
|
|
12135
|
+
window.dispatchEvent(event);
|
|
12136
|
+
} catch (eventError) {
|
|
12137
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12138
|
+
}
|
|
12139
|
+
}
|
|
10213
12140
|
throw error;
|
|
10214
12141
|
}
|
|
10215
12142
|
}
|
|
@@ -10239,6 +12166,25 @@ Method: PUT`,
|
|
|
10239
12166
|
});
|
|
10240
12167
|
}
|
|
10241
12168
|
consola25.error("Response data:", response);
|
|
12169
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12170
|
+
try {
|
|
12171
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12172
|
+
detail: {
|
|
12173
|
+
operation: "updateKnowbaseSystemChunksUpdate",
|
|
12174
|
+
path: "/cfg/knowbase/system/chunks/{id}/",
|
|
12175
|
+
method: "PUT",
|
|
12176
|
+
error,
|
|
12177
|
+
response,
|
|
12178
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12179
|
+
},
|
|
12180
|
+
bubbles: true,
|
|
12181
|
+
cancelable: false
|
|
12182
|
+
});
|
|
12183
|
+
window.dispatchEvent(event);
|
|
12184
|
+
} catch (eventError) {
|
|
12185
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12186
|
+
}
|
|
12187
|
+
}
|
|
10242
12188
|
throw error;
|
|
10243
12189
|
}
|
|
10244
12190
|
}
|
|
@@ -10268,6 +12214,25 @@ Method: PATCH`,
|
|
|
10268
12214
|
});
|
|
10269
12215
|
}
|
|
10270
12216
|
consola25.error("Response data:", response);
|
|
12217
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12218
|
+
try {
|
|
12219
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12220
|
+
detail: {
|
|
12221
|
+
operation: "partialUpdateKnowbaseSystemChunksPartialUpdate",
|
|
12222
|
+
path: "/cfg/knowbase/system/chunks/{id}/",
|
|
12223
|
+
method: "PATCH",
|
|
12224
|
+
error,
|
|
12225
|
+
response,
|
|
12226
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12227
|
+
},
|
|
12228
|
+
bubbles: true,
|
|
12229
|
+
cancelable: false
|
|
12230
|
+
});
|
|
12231
|
+
window.dispatchEvent(event);
|
|
12232
|
+
} catch (eventError) {
|
|
12233
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12234
|
+
}
|
|
12235
|
+
}
|
|
10271
12236
|
throw error;
|
|
10272
12237
|
}
|
|
10273
12238
|
}
|
|
@@ -10302,6 +12267,25 @@ Method: GET`,
|
|
|
10302
12267
|
});
|
|
10303
12268
|
}
|
|
10304
12269
|
consola25.error("Response data:", response);
|
|
12270
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12271
|
+
try {
|
|
12272
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12273
|
+
detail: {
|
|
12274
|
+
operation: "getKnowbaseSystemChunksContextRetrieve",
|
|
12275
|
+
path: "/cfg/knowbase/system/chunks/{id}/context/",
|
|
12276
|
+
method: "GET",
|
|
12277
|
+
error,
|
|
12278
|
+
response,
|
|
12279
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12280
|
+
},
|
|
12281
|
+
bubbles: true,
|
|
12282
|
+
cancelable: false
|
|
12283
|
+
});
|
|
12284
|
+
window.dispatchEvent(event);
|
|
12285
|
+
} catch (eventError) {
|
|
12286
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12287
|
+
}
|
|
12288
|
+
}
|
|
10305
12289
|
throw error;
|
|
10306
12290
|
}
|
|
10307
12291
|
}
|
|
@@ -10336,6 +12320,25 @@ Method: GET`,
|
|
|
10336
12320
|
});
|
|
10337
12321
|
}
|
|
10338
12322
|
consola25.error("Response data:", response);
|
|
12323
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12324
|
+
try {
|
|
12325
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12326
|
+
detail: {
|
|
12327
|
+
operation: "getKnowbaseSystemItemsList",
|
|
12328
|
+
path: "/cfg/knowbase/system/items/",
|
|
12329
|
+
method: "GET",
|
|
12330
|
+
error,
|
|
12331
|
+
response,
|
|
12332
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12333
|
+
},
|
|
12334
|
+
bubbles: true,
|
|
12335
|
+
cancelable: false
|
|
12336
|
+
});
|
|
12337
|
+
window.dispatchEvent(event);
|
|
12338
|
+
} catch (eventError) {
|
|
12339
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12340
|
+
}
|
|
12341
|
+
}
|
|
10339
12342
|
throw error;
|
|
10340
12343
|
}
|
|
10341
12344
|
}
|
|
@@ -10365,6 +12368,25 @@ Method: POST`,
|
|
|
10365
12368
|
});
|
|
10366
12369
|
}
|
|
10367
12370
|
consola25.error("Response data:", response);
|
|
12371
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12372
|
+
try {
|
|
12373
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12374
|
+
detail: {
|
|
12375
|
+
operation: "createKnowbaseSystemItemsCreate",
|
|
12376
|
+
path: "/cfg/knowbase/system/items/",
|
|
12377
|
+
method: "POST",
|
|
12378
|
+
error,
|
|
12379
|
+
response,
|
|
12380
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12381
|
+
},
|
|
12382
|
+
bubbles: true,
|
|
12383
|
+
cancelable: false
|
|
12384
|
+
});
|
|
12385
|
+
window.dispatchEvent(event);
|
|
12386
|
+
} catch (eventError) {
|
|
12387
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12388
|
+
}
|
|
12389
|
+
}
|
|
10368
12390
|
throw error;
|
|
10369
12391
|
}
|
|
10370
12392
|
}
|
|
@@ -10394,6 +12416,25 @@ Method: GET`,
|
|
|
10394
12416
|
});
|
|
10395
12417
|
}
|
|
10396
12418
|
consola25.error("Response data:", response);
|
|
12419
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12420
|
+
try {
|
|
12421
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12422
|
+
detail: {
|
|
12423
|
+
operation: "getKnowbaseSystemItemsRetrieve",
|
|
12424
|
+
path: "/cfg/knowbase/system/items/{id}/",
|
|
12425
|
+
method: "GET",
|
|
12426
|
+
error,
|
|
12427
|
+
response,
|
|
12428
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12429
|
+
},
|
|
12430
|
+
bubbles: true,
|
|
12431
|
+
cancelable: false
|
|
12432
|
+
});
|
|
12433
|
+
window.dispatchEvent(event);
|
|
12434
|
+
} catch (eventError) {
|
|
12435
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12436
|
+
}
|
|
12437
|
+
}
|
|
10397
12438
|
throw error;
|
|
10398
12439
|
}
|
|
10399
12440
|
}
|
|
@@ -10423,6 +12464,25 @@ Method: PUT`,
|
|
|
10423
12464
|
});
|
|
10424
12465
|
}
|
|
10425
12466
|
consola25.error("Response data:", response);
|
|
12467
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12468
|
+
try {
|
|
12469
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12470
|
+
detail: {
|
|
12471
|
+
operation: "updateKnowbaseSystemItemsUpdate",
|
|
12472
|
+
path: "/cfg/knowbase/system/items/{id}/",
|
|
12473
|
+
method: "PUT",
|
|
12474
|
+
error,
|
|
12475
|
+
response,
|
|
12476
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12477
|
+
},
|
|
12478
|
+
bubbles: true,
|
|
12479
|
+
cancelable: false
|
|
12480
|
+
});
|
|
12481
|
+
window.dispatchEvent(event);
|
|
12482
|
+
} catch (eventError) {
|
|
12483
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12484
|
+
}
|
|
12485
|
+
}
|
|
10426
12486
|
throw error;
|
|
10427
12487
|
}
|
|
10428
12488
|
}
|
|
@@ -10452,6 +12512,25 @@ Method: PATCH`,
|
|
|
10452
12512
|
});
|
|
10453
12513
|
}
|
|
10454
12514
|
consola25.error("Response data:", response);
|
|
12515
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12516
|
+
try {
|
|
12517
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12518
|
+
detail: {
|
|
12519
|
+
operation: "partialUpdateKnowbaseSystemItemsPartialUpdate",
|
|
12520
|
+
path: "/cfg/knowbase/system/items/{id}/",
|
|
12521
|
+
method: "PATCH",
|
|
12522
|
+
error,
|
|
12523
|
+
response,
|
|
12524
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12525
|
+
},
|
|
12526
|
+
bubbles: true,
|
|
12527
|
+
cancelable: false
|
|
12528
|
+
});
|
|
12529
|
+
window.dispatchEvent(event);
|
|
12530
|
+
} catch (eventError) {
|
|
12531
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12532
|
+
}
|
|
12533
|
+
}
|
|
10455
12534
|
throw error;
|
|
10456
12535
|
}
|
|
10457
12536
|
}
|
|
@@ -10486,6 +12565,25 @@ Method: GET`,
|
|
|
10486
12565
|
});
|
|
10487
12566
|
}
|
|
10488
12567
|
consola25.error("Response data:", response);
|
|
12568
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12569
|
+
try {
|
|
12570
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12571
|
+
detail: {
|
|
12572
|
+
operation: "getKnowbaseSystemItemsChunksList",
|
|
12573
|
+
path: "/cfg/knowbase/system/items/{id}/chunks/",
|
|
12574
|
+
method: "GET",
|
|
12575
|
+
error,
|
|
12576
|
+
response,
|
|
12577
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12578
|
+
},
|
|
12579
|
+
bubbles: true,
|
|
12580
|
+
cancelable: false
|
|
12581
|
+
});
|
|
12582
|
+
window.dispatchEvent(event);
|
|
12583
|
+
} catch (eventError) {
|
|
12584
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12585
|
+
}
|
|
12586
|
+
}
|
|
10489
12587
|
throw error;
|
|
10490
12588
|
}
|
|
10491
12589
|
}
|
|
@@ -10515,6 +12613,25 @@ Method: GET`,
|
|
|
10515
12613
|
});
|
|
10516
12614
|
}
|
|
10517
12615
|
consola25.error("Response data:", response);
|
|
12616
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12617
|
+
try {
|
|
12618
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12619
|
+
detail: {
|
|
12620
|
+
operation: "getKnowbaseSystemItemsContentRetrieve",
|
|
12621
|
+
path: "/cfg/knowbase/system/items/{id}/content/",
|
|
12622
|
+
method: "GET",
|
|
12623
|
+
error,
|
|
12624
|
+
response,
|
|
12625
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12626
|
+
},
|
|
12627
|
+
bubbles: true,
|
|
12628
|
+
cancelable: false
|
|
12629
|
+
});
|
|
12630
|
+
window.dispatchEvent(event);
|
|
12631
|
+
} catch (eventError) {
|
|
12632
|
+
consola25.warn("Failed to dispatch validation error event:", eventError);
|
|
12633
|
+
}
|
|
12634
|
+
}
|
|
10518
12635
|
throw error;
|
|
10519
12636
|
}
|
|
10520
12637
|
}
|
|
@@ -10547,6 +12664,25 @@ Method: GET`,
|
|
|
10547
12664
|
});
|
|
10548
12665
|
}
|
|
10549
12666
|
consola26.error("Response data:", response);
|
|
12667
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12668
|
+
try {
|
|
12669
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12670
|
+
detail: {
|
|
12671
|
+
operation: "getLeadsList",
|
|
12672
|
+
path: "/cfg/leads/",
|
|
12673
|
+
method: "GET",
|
|
12674
|
+
error,
|
|
12675
|
+
response,
|
|
12676
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12677
|
+
},
|
|
12678
|
+
bubbles: true,
|
|
12679
|
+
cancelable: false
|
|
12680
|
+
});
|
|
12681
|
+
window.dispatchEvent(event);
|
|
12682
|
+
} catch (eventError) {
|
|
12683
|
+
consola26.warn("Failed to dispatch validation error event:", eventError);
|
|
12684
|
+
}
|
|
12685
|
+
}
|
|
10550
12686
|
throw error;
|
|
10551
12687
|
}
|
|
10552
12688
|
}
|
|
@@ -10576,6 +12712,25 @@ Method: POST`,
|
|
|
10576
12712
|
});
|
|
10577
12713
|
}
|
|
10578
12714
|
consola26.error("Response data:", response);
|
|
12715
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12716
|
+
try {
|
|
12717
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12718
|
+
detail: {
|
|
12719
|
+
operation: "createLeadsCreate",
|
|
12720
|
+
path: "/cfg/leads/",
|
|
12721
|
+
method: "POST",
|
|
12722
|
+
error,
|
|
12723
|
+
response,
|
|
12724
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12725
|
+
},
|
|
12726
|
+
bubbles: true,
|
|
12727
|
+
cancelable: false
|
|
12728
|
+
});
|
|
12729
|
+
window.dispatchEvent(event);
|
|
12730
|
+
} catch (eventError) {
|
|
12731
|
+
consola26.warn("Failed to dispatch validation error event:", eventError);
|
|
12732
|
+
}
|
|
12733
|
+
}
|
|
10579
12734
|
throw error;
|
|
10580
12735
|
}
|
|
10581
12736
|
}
|
|
@@ -10605,6 +12760,25 @@ Method: GET`,
|
|
|
10605
12760
|
});
|
|
10606
12761
|
}
|
|
10607
12762
|
consola26.error("Response data:", response);
|
|
12763
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12764
|
+
try {
|
|
12765
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12766
|
+
detail: {
|
|
12767
|
+
operation: "getLeadsRetrieve",
|
|
12768
|
+
path: "/cfg/leads/{id}/",
|
|
12769
|
+
method: "GET",
|
|
12770
|
+
error,
|
|
12771
|
+
response,
|
|
12772
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12773
|
+
},
|
|
12774
|
+
bubbles: true,
|
|
12775
|
+
cancelable: false
|
|
12776
|
+
});
|
|
12777
|
+
window.dispatchEvent(event);
|
|
12778
|
+
} catch (eventError) {
|
|
12779
|
+
consola26.warn("Failed to dispatch validation error event:", eventError);
|
|
12780
|
+
}
|
|
12781
|
+
}
|
|
10608
12782
|
throw error;
|
|
10609
12783
|
}
|
|
10610
12784
|
}
|
|
@@ -10634,6 +12808,25 @@ Method: PUT`,
|
|
|
10634
12808
|
});
|
|
10635
12809
|
}
|
|
10636
12810
|
consola26.error("Response data:", response);
|
|
12811
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12812
|
+
try {
|
|
12813
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12814
|
+
detail: {
|
|
12815
|
+
operation: "updateLeadsUpdate",
|
|
12816
|
+
path: "/cfg/leads/{id}/",
|
|
12817
|
+
method: "PUT",
|
|
12818
|
+
error,
|
|
12819
|
+
response,
|
|
12820
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12821
|
+
},
|
|
12822
|
+
bubbles: true,
|
|
12823
|
+
cancelable: false
|
|
12824
|
+
});
|
|
12825
|
+
window.dispatchEvent(event);
|
|
12826
|
+
} catch (eventError) {
|
|
12827
|
+
consola26.warn("Failed to dispatch validation error event:", eventError);
|
|
12828
|
+
}
|
|
12829
|
+
}
|
|
10637
12830
|
throw error;
|
|
10638
12831
|
}
|
|
10639
12832
|
}
|
|
@@ -10663,6 +12856,25 @@ Method: PATCH`,
|
|
|
10663
12856
|
});
|
|
10664
12857
|
}
|
|
10665
12858
|
consola26.error("Response data:", response);
|
|
12859
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12860
|
+
try {
|
|
12861
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12862
|
+
detail: {
|
|
12863
|
+
operation: "partialUpdateLeadsPartialUpdate",
|
|
12864
|
+
path: "/cfg/leads/{id}/",
|
|
12865
|
+
method: "PATCH",
|
|
12866
|
+
error,
|
|
12867
|
+
response,
|
|
12868
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12869
|
+
},
|
|
12870
|
+
bubbles: true,
|
|
12871
|
+
cancelable: false
|
|
12872
|
+
});
|
|
12873
|
+
window.dispatchEvent(event);
|
|
12874
|
+
} catch (eventError) {
|
|
12875
|
+
consola26.warn("Failed to dispatch validation error event:", eventError);
|
|
12876
|
+
}
|
|
12877
|
+
}
|
|
10666
12878
|
throw error;
|
|
10667
12879
|
}
|
|
10668
12880
|
}
|
|
@@ -10700,6 +12912,25 @@ Method: POST`,
|
|
|
10700
12912
|
});
|
|
10701
12913
|
}
|
|
10702
12914
|
consola27.error("Response data:", response);
|
|
12915
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12916
|
+
try {
|
|
12917
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12918
|
+
detail: {
|
|
12919
|
+
operation: "createLeadsSubmitCreate",
|
|
12920
|
+
path: "/cfg/leads/submit/",
|
|
12921
|
+
method: "POST",
|
|
12922
|
+
error,
|
|
12923
|
+
response,
|
|
12924
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12925
|
+
},
|
|
12926
|
+
bubbles: true,
|
|
12927
|
+
cancelable: false
|
|
12928
|
+
});
|
|
12929
|
+
window.dispatchEvent(event);
|
|
12930
|
+
} catch (eventError) {
|
|
12931
|
+
consola27.warn("Failed to dispatch validation error event:", eventError);
|
|
12932
|
+
}
|
|
12933
|
+
}
|
|
10703
12934
|
throw error;
|
|
10704
12935
|
}
|
|
10705
12936
|
}
|
|
@@ -10732,6 +12963,25 @@ Method: PATCH`,
|
|
|
10732
12963
|
});
|
|
10733
12964
|
}
|
|
10734
12965
|
consola28.error("Response data:", response);
|
|
12966
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
12967
|
+
try {
|
|
12968
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
12969
|
+
detail: {
|
|
12970
|
+
operation: "partialUpdateNewsletterCampaignsPartialUpdate",
|
|
12971
|
+
path: "/cfg/newsletter/campaigns/{id}/",
|
|
12972
|
+
method: "PATCH",
|
|
12973
|
+
error,
|
|
12974
|
+
response,
|
|
12975
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
12976
|
+
},
|
|
12977
|
+
bubbles: true,
|
|
12978
|
+
cancelable: false
|
|
12979
|
+
});
|
|
12980
|
+
window.dispatchEvent(event);
|
|
12981
|
+
} catch (eventError) {
|
|
12982
|
+
consola28.warn("Failed to dispatch validation error event:", eventError);
|
|
12983
|
+
}
|
|
12984
|
+
}
|
|
10735
12985
|
throw error;
|
|
10736
12986
|
}
|
|
10737
12987
|
}
|
|
@@ -10761,6 +13011,25 @@ Method: PUT`,
|
|
|
10761
13011
|
});
|
|
10762
13012
|
}
|
|
10763
13013
|
consola28.error("Response data:", response);
|
|
13014
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13015
|
+
try {
|
|
13016
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13017
|
+
detail: {
|
|
13018
|
+
operation: "updateNewsletterUnsubscribeUpdate",
|
|
13019
|
+
path: "/cfg/newsletter/unsubscribe/",
|
|
13020
|
+
method: "PUT",
|
|
13021
|
+
error,
|
|
13022
|
+
response,
|
|
13023
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13024
|
+
},
|
|
13025
|
+
bubbles: true,
|
|
13026
|
+
cancelable: false
|
|
13027
|
+
});
|
|
13028
|
+
window.dispatchEvent(event);
|
|
13029
|
+
} catch (eventError) {
|
|
13030
|
+
consola28.warn("Failed to dispatch validation error event:", eventError);
|
|
13031
|
+
}
|
|
13032
|
+
}
|
|
10764
13033
|
throw error;
|
|
10765
13034
|
}
|
|
10766
13035
|
}
|
|
@@ -10790,6 +13059,25 @@ Method: PATCH`,
|
|
|
10790
13059
|
});
|
|
10791
13060
|
}
|
|
10792
13061
|
consola28.error("Response data:", response);
|
|
13062
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13063
|
+
try {
|
|
13064
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13065
|
+
detail: {
|
|
13066
|
+
operation: "partialUpdateNewsletterUnsubscribePartialUpdate",
|
|
13067
|
+
path: "/cfg/newsletter/unsubscribe/",
|
|
13068
|
+
method: "PATCH",
|
|
13069
|
+
error,
|
|
13070
|
+
response,
|
|
13071
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13072
|
+
},
|
|
13073
|
+
bubbles: true,
|
|
13074
|
+
cancelable: false
|
|
13075
|
+
});
|
|
13076
|
+
window.dispatchEvent(event);
|
|
13077
|
+
} catch (eventError) {
|
|
13078
|
+
consola28.warn("Failed to dispatch validation error event:", eventError);
|
|
13079
|
+
}
|
|
13080
|
+
}
|
|
10793
13081
|
throw error;
|
|
10794
13082
|
}
|
|
10795
13083
|
}
|
|
@@ -10822,6 +13110,25 @@ Method: POST`,
|
|
|
10822
13110
|
});
|
|
10823
13111
|
}
|
|
10824
13112
|
consola29.error("Response data:", response);
|
|
13113
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13114
|
+
try {
|
|
13115
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13116
|
+
detail: {
|
|
13117
|
+
operation: "createNewsletterBulkCreate",
|
|
13118
|
+
path: "/cfg/newsletter/bulk/",
|
|
13119
|
+
method: "POST",
|
|
13120
|
+
error,
|
|
13121
|
+
response,
|
|
13122
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13123
|
+
},
|
|
13124
|
+
bubbles: true,
|
|
13125
|
+
cancelable: false
|
|
13126
|
+
});
|
|
13127
|
+
window.dispatchEvent(event);
|
|
13128
|
+
} catch (eventError) {
|
|
13129
|
+
consola29.warn("Failed to dispatch validation error event:", eventError);
|
|
13130
|
+
}
|
|
13131
|
+
}
|
|
10825
13132
|
throw error;
|
|
10826
13133
|
}
|
|
10827
13134
|
}
|
|
@@ -10853,7 +13160,26 @@ Method: GET`,
|
|
|
10853
13160
|
if (issue.received) consola30.error(` \u2514\u2500 Received: ${issue.received}`);
|
|
10854
13161
|
});
|
|
10855
13162
|
}
|
|
10856
|
-
consola30.error("Response data:", response);
|
|
13163
|
+
consola30.error("Response data:", response);
|
|
13164
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13165
|
+
try {
|
|
13166
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13167
|
+
detail: {
|
|
13168
|
+
operation: "getNewsletterCampaignsList",
|
|
13169
|
+
path: "/cfg/newsletter/campaigns/",
|
|
13170
|
+
method: "GET",
|
|
13171
|
+
error,
|
|
13172
|
+
response,
|
|
13173
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13174
|
+
},
|
|
13175
|
+
bubbles: true,
|
|
13176
|
+
cancelable: false
|
|
13177
|
+
});
|
|
13178
|
+
window.dispatchEvent(event);
|
|
13179
|
+
} catch (eventError) {
|
|
13180
|
+
consola30.warn("Failed to dispatch validation error event:", eventError);
|
|
13181
|
+
}
|
|
13182
|
+
}
|
|
10857
13183
|
throw error;
|
|
10858
13184
|
}
|
|
10859
13185
|
}
|
|
@@ -10883,6 +13209,25 @@ Method: POST`,
|
|
|
10883
13209
|
});
|
|
10884
13210
|
}
|
|
10885
13211
|
consola30.error("Response data:", response);
|
|
13212
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13213
|
+
try {
|
|
13214
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13215
|
+
detail: {
|
|
13216
|
+
operation: "createNewsletterCampaignsCreate",
|
|
13217
|
+
path: "/cfg/newsletter/campaigns/",
|
|
13218
|
+
method: "POST",
|
|
13219
|
+
error,
|
|
13220
|
+
response,
|
|
13221
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13222
|
+
},
|
|
13223
|
+
bubbles: true,
|
|
13224
|
+
cancelable: false
|
|
13225
|
+
});
|
|
13226
|
+
window.dispatchEvent(event);
|
|
13227
|
+
} catch (eventError) {
|
|
13228
|
+
consola30.warn("Failed to dispatch validation error event:", eventError);
|
|
13229
|
+
}
|
|
13230
|
+
}
|
|
10886
13231
|
throw error;
|
|
10887
13232
|
}
|
|
10888
13233
|
}
|
|
@@ -10912,6 +13257,25 @@ Method: GET`,
|
|
|
10912
13257
|
});
|
|
10913
13258
|
}
|
|
10914
13259
|
consola30.error("Response data:", response);
|
|
13260
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13261
|
+
try {
|
|
13262
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13263
|
+
detail: {
|
|
13264
|
+
operation: "getNewsletterCampaignsRetrieve",
|
|
13265
|
+
path: "/cfg/newsletter/campaigns/{id}/",
|
|
13266
|
+
method: "GET",
|
|
13267
|
+
error,
|
|
13268
|
+
response,
|
|
13269
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13270
|
+
},
|
|
13271
|
+
bubbles: true,
|
|
13272
|
+
cancelable: false
|
|
13273
|
+
});
|
|
13274
|
+
window.dispatchEvent(event);
|
|
13275
|
+
} catch (eventError) {
|
|
13276
|
+
consola30.warn("Failed to dispatch validation error event:", eventError);
|
|
13277
|
+
}
|
|
13278
|
+
}
|
|
10915
13279
|
throw error;
|
|
10916
13280
|
}
|
|
10917
13281
|
}
|
|
@@ -10941,6 +13305,25 @@ Method: PUT`,
|
|
|
10941
13305
|
});
|
|
10942
13306
|
}
|
|
10943
13307
|
consola30.error("Response data:", response);
|
|
13308
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13309
|
+
try {
|
|
13310
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13311
|
+
detail: {
|
|
13312
|
+
operation: "updateNewsletterCampaignsUpdate",
|
|
13313
|
+
path: "/cfg/newsletter/campaigns/{id}/",
|
|
13314
|
+
method: "PUT",
|
|
13315
|
+
error,
|
|
13316
|
+
response,
|
|
13317
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13318
|
+
},
|
|
13319
|
+
bubbles: true,
|
|
13320
|
+
cancelable: false
|
|
13321
|
+
});
|
|
13322
|
+
window.dispatchEvent(event);
|
|
13323
|
+
} catch (eventError) {
|
|
13324
|
+
consola30.warn("Failed to dispatch validation error event:", eventError);
|
|
13325
|
+
}
|
|
13326
|
+
}
|
|
10944
13327
|
throw error;
|
|
10945
13328
|
}
|
|
10946
13329
|
}
|
|
@@ -10975,6 +13358,25 @@ Method: POST`,
|
|
|
10975
13358
|
});
|
|
10976
13359
|
}
|
|
10977
13360
|
consola30.error("Response data:", response);
|
|
13361
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13362
|
+
try {
|
|
13363
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13364
|
+
detail: {
|
|
13365
|
+
operation: "createNewsletterCampaignsSendCreate",
|
|
13366
|
+
path: "/cfg/newsletter/campaigns/send/",
|
|
13367
|
+
method: "POST",
|
|
13368
|
+
error,
|
|
13369
|
+
response,
|
|
13370
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13371
|
+
},
|
|
13372
|
+
bubbles: true,
|
|
13373
|
+
cancelable: false
|
|
13374
|
+
});
|
|
13375
|
+
window.dispatchEvent(event);
|
|
13376
|
+
} catch (eventError) {
|
|
13377
|
+
consola30.warn("Failed to dispatch validation error event:", eventError);
|
|
13378
|
+
}
|
|
13379
|
+
}
|
|
10978
13380
|
throw error;
|
|
10979
13381
|
}
|
|
10980
13382
|
}
|
|
@@ -11007,6 +13409,25 @@ Method: GET`,
|
|
|
11007
13409
|
});
|
|
11008
13410
|
}
|
|
11009
13411
|
consola31.error("Response data:", response);
|
|
13412
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13413
|
+
try {
|
|
13414
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13415
|
+
detail: {
|
|
13416
|
+
operation: "getNewsletterLogsList",
|
|
13417
|
+
path: "/cfg/newsletter/logs/",
|
|
13418
|
+
method: "GET",
|
|
13419
|
+
error,
|
|
13420
|
+
response,
|
|
13421
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13422
|
+
},
|
|
13423
|
+
bubbles: true,
|
|
13424
|
+
cancelable: false
|
|
13425
|
+
});
|
|
13426
|
+
window.dispatchEvent(event);
|
|
13427
|
+
} catch (eventError) {
|
|
13428
|
+
consola31.warn("Failed to dispatch validation error event:", eventError);
|
|
13429
|
+
}
|
|
13430
|
+
}
|
|
11010
13431
|
throw error;
|
|
11011
13432
|
}
|
|
11012
13433
|
}
|
|
@@ -11039,6 +13460,25 @@ Method: GET`,
|
|
|
11039
13460
|
});
|
|
11040
13461
|
}
|
|
11041
13462
|
consola32.error("Response data:", response);
|
|
13463
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13464
|
+
try {
|
|
13465
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13466
|
+
detail: {
|
|
13467
|
+
operation: "getNewsletterNewslettersList",
|
|
13468
|
+
path: "/cfg/newsletter/newsletters/",
|
|
13469
|
+
method: "GET",
|
|
13470
|
+
error,
|
|
13471
|
+
response,
|
|
13472
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13473
|
+
},
|
|
13474
|
+
bubbles: true,
|
|
13475
|
+
cancelable: false
|
|
13476
|
+
});
|
|
13477
|
+
window.dispatchEvent(event);
|
|
13478
|
+
} catch (eventError) {
|
|
13479
|
+
consola32.warn("Failed to dispatch validation error event:", eventError);
|
|
13480
|
+
}
|
|
13481
|
+
}
|
|
11042
13482
|
throw error;
|
|
11043
13483
|
}
|
|
11044
13484
|
}
|
|
@@ -11068,6 +13508,25 @@ Method: GET`,
|
|
|
11068
13508
|
});
|
|
11069
13509
|
}
|
|
11070
13510
|
consola32.error("Response data:", response);
|
|
13511
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13512
|
+
try {
|
|
13513
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13514
|
+
detail: {
|
|
13515
|
+
operation: "getNewsletterNewslettersRetrieve",
|
|
13516
|
+
path: "/cfg/newsletter/newsletters/{id}/",
|
|
13517
|
+
method: "GET",
|
|
13518
|
+
error,
|
|
13519
|
+
response,
|
|
13520
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13521
|
+
},
|
|
13522
|
+
bubbles: true,
|
|
13523
|
+
cancelable: false
|
|
13524
|
+
});
|
|
13525
|
+
window.dispatchEvent(event);
|
|
13526
|
+
} catch (eventError) {
|
|
13527
|
+
consola32.warn("Failed to dispatch validation error event:", eventError);
|
|
13528
|
+
}
|
|
13529
|
+
}
|
|
11071
13530
|
throw error;
|
|
11072
13531
|
}
|
|
11073
13532
|
}
|
|
@@ -11100,6 +13559,25 @@ Method: POST`,
|
|
|
11100
13559
|
});
|
|
11101
13560
|
}
|
|
11102
13561
|
consola33.error("Response data:", response);
|
|
13562
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13563
|
+
try {
|
|
13564
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13565
|
+
detail: {
|
|
13566
|
+
operation: "createNewsletterSubscribeCreate",
|
|
13567
|
+
path: "/cfg/newsletter/subscribe/",
|
|
13568
|
+
method: "POST",
|
|
13569
|
+
error,
|
|
13570
|
+
response,
|
|
13571
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13572
|
+
},
|
|
13573
|
+
bubbles: true,
|
|
13574
|
+
cancelable: false
|
|
13575
|
+
});
|
|
13576
|
+
window.dispatchEvent(event);
|
|
13577
|
+
} catch (eventError) {
|
|
13578
|
+
consola33.warn("Failed to dispatch validation error event:", eventError);
|
|
13579
|
+
}
|
|
13580
|
+
}
|
|
11103
13581
|
throw error;
|
|
11104
13582
|
}
|
|
11105
13583
|
}
|
|
@@ -11129,6 +13607,25 @@ Method: GET`,
|
|
|
11129
13607
|
});
|
|
11130
13608
|
}
|
|
11131
13609
|
consola33.error("Response data:", response);
|
|
13610
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13611
|
+
try {
|
|
13612
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13613
|
+
detail: {
|
|
13614
|
+
operation: "getNewsletterSubscriptionsList",
|
|
13615
|
+
path: "/cfg/newsletter/subscriptions/",
|
|
13616
|
+
method: "GET",
|
|
13617
|
+
error,
|
|
13618
|
+
response,
|
|
13619
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13620
|
+
},
|
|
13621
|
+
bubbles: true,
|
|
13622
|
+
cancelable: false
|
|
13623
|
+
});
|
|
13624
|
+
window.dispatchEvent(event);
|
|
13625
|
+
} catch (eventError) {
|
|
13626
|
+
consola33.warn("Failed to dispatch validation error event:", eventError);
|
|
13627
|
+
}
|
|
13628
|
+
}
|
|
11132
13629
|
throw error;
|
|
11133
13630
|
}
|
|
11134
13631
|
}
|
|
@@ -11158,6 +13655,25 @@ Method: POST`,
|
|
|
11158
13655
|
});
|
|
11159
13656
|
}
|
|
11160
13657
|
consola33.error("Response data:", response);
|
|
13658
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13659
|
+
try {
|
|
13660
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13661
|
+
detail: {
|
|
13662
|
+
operation: "createNewsletterUnsubscribeCreate",
|
|
13663
|
+
path: "/cfg/newsletter/unsubscribe/",
|
|
13664
|
+
method: "POST",
|
|
13665
|
+
error,
|
|
13666
|
+
response,
|
|
13667
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13668
|
+
},
|
|
13669
|
+
bubbles: true,
|
|
13670
|
+
cancelable: false
|
|
13671
|
+
});
|
|
13672
|
+
window.dispatchEvent(event);
|
|
13673
|
+
} catch (eventError) {
|
|
13674
|
+
consola33.warn("Failed to dispatch validation error event:", eventError);
|
|
13675
|
+
}
|
|
13676
|
+
}
|
|
11161
13677
|
throw error;
|
|
11162
13678
|
}
|
|
11163
13679
|
}
|
|
@@ -11190,6 +13706,25 @@ Method: POST`,
|
|
|
11190
13706
|
});
|
|
11191
13707
|
}
|
|
11192
13708
|
consola34.error("Response data:", response);
|
|
13709
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13710
|
+
try {
|
|
13711
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13712
|
+
detail: {
|
|
13713
|
+
operation: "createNewsletterTestCreate",
|
|
13714
|
+
path: "/cfg/newsletter/test/",
|
|
13715
|
+
method: "POST",
|
|
13716
|
+
error,
|
|
13717
|
+
response,
|
|
13718
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13719
|
+
},
|
|
13720
|
+
bubbles: true,
|
|
13721
|
+
cancelable: false
|
|
13722
|
+
});
|
|
13723
|
+
window.dispatchEvent(event);
|
|
13724
|
+
} catch (eventError) {
|
|
13725
|
+
consola34.warn("Failed to dispatch validation error event:", eventError);
|
|
13726
|
+
}
|
|
13727
|
+
}
|
|
11193
13728
|
throw error;
|
|
11194
13729
|
}
|
|
11195
13730
|
}
|
|
@@ -11222,6 +13757,25 @@ Method: GET`,
|
|
|
11222
13757
|
});
|
|
11223
13758
|
}
|
|
11224
13759
|
consola35.error("Response data:", response);
|
|
13760
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13761
|
+
try {
|
|
13762
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13763
|
+
detail: {
|
|
13764
|
+
operation: "getPaymentsBalanceRetrieve",
|
|
13765
|
+
path: "/cfg/payments/balance/",
|
|
13766
|
+
method: "GET",
|
|
13767
|
+
error,
|
|
13768
|
+
response,
|
|
13769
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13770
|
+
},
|
|
13771
|
+
bubbles: true,
|
|
13772
|
+
cancelable: false
|
|
13773
|
+
});
|
|
13774
|
+
window.dispatchEvent(event);
|
|
13775
|
+
} catch (eventError) {
|
|
13776
|
+
consola35.warn("Failed to dispatch validation error event:", eventError);
|
|
13777
|
+
}
|
|
13778
|
+
}
|
|
11225
13779
|
throw error;
|
|
11226
13780
|
}
|
|
11227
13781
|
}
|
|
@@ -11256,6 +13810,25 @@ Method: GET`,
|
|
|
11256
13810
|
});
|
|
11257
13811
|
}
|
|
11258
13812
|
consola35.error("Response data:", response);
|
|
13813
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13814
|
+
try {
|
|
13815
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13816
|
+
detail: {
|
|
13817
|
+
operation: "getPaymentsPaymentsList",
|
|
13818
|
+
path: "/cfg/payments/payments/",
|
|
13819
|
+
method: "GET",
|
|
13820
|
+
error,
|
|
13821
|
+
response,
|
|
13822
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13823
|
+
},
|
|
13824
|
+
bubbles: true,
|
|
13825
|
+
cancelable: false
|
|
13826
|
+
});
|
|
13827
|
+
window.dispatchEvent(event);
|
|
13828
|
+
} catch (eventError) {
|
|
13829
|
+
consola35.warn("Failed to dispatch validation error event:", eventError);
|
|
13830
|
+
}
|
|
13831
|
+
}
|
|
11259
13832
|
throw error;
|
|
11260
13833
|
}
|
|
11261
13834
|
}
|
|
@@ -11285,6 +13858,25 @@ Method: GET`,
|
|
|
11285
13858
|
});
|
|
11286
13859
|
}
|
|
11287
13860
|
consola35.error("Response data:", response);
|
|
13861
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13862
|
+
try {
|
|
13863
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13864
|
+
detail: {
|
|
13865
|
+
operation: "getPaymentsPaymentsRetrieve",
|
|
13866
|
+
path: "/cfg/payments/payments/{id}/",
|
|
13867
|
+
method: "GET",
|
|
13868
|
+
error,
|
|
13869
|
+
response,
|
|
13870
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13871
|
+
},
|
|
13872
|
+
bubbles: true,
|
|
13873
|
+
cancelable: false
|
|
13874
|
+
});
|
|
13875
|
+
window.dispatchEvent(event);
|
|
13876
|
+
} catch (eventError) {
|
|
13877
|
+
consola35.warn("Failed to dispatch validation error event:", eventError);
|
|
13878
|
+
}
|
|
13879
|
+
}
|
|
11288
13880
|
throw error;
|
|
11289
13881
|
}
|
|
11290
13882
|
}
|
|
@@ -11314,6 +13906,25 @@ Method: POST`,
|
|
|
11314
13906
|
});
|
|
11315
13907
|
}
|
|
11316
13908
|
consola35.error("Response data:", response);
|
|
13909
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13910
|
+
try {
|
|
13911
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13912
|
+
detail: {
|
|
13913
|
+
operation: "createPaymentsPaymentsConfirmCreate",
|
|
13914
|
+
path: "/cfg/payments/payments/{id}/confirm/",
|
|
13915
|
+
method: "POST",
|
|
13916
|
+
error,
|
|
13917
|
+
response,
|
|
13918
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13919
|
+
},
|
|
13920
|
+
bubbles: true,
|
|
13921
|
+
cancelable: false
|
|
13922
|
+
});
|
|
13923
|
+
window.dispatchEvent(event);
|
|
13924
|
+
} catch (eventError) {
|
|
13925
|
+
consola35.warn("Failed to dispatch validation error event:", eventError);
|
|
13926
|
+
}
|
|
13927
|
+
}
|
|
11317
13928
|
throw error;
|
|
11318
13929
|
}
|
|
11319
13930
|
}
|
|
@@ -11343,6 +13954,25 @@ Method: GET`,
|
|
|
11343
13954
|
});
|
|
11344
13955
|
}
|
|
11345
13956
|
consola35.error("Response data:", response);
|
|
13957
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
13958
|
+
try {
|
|
13959
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
13960
|
+
detail: {
|
|
13961
|
+
operation: "getPaymentsPaymentsStatusRetrieve",
|
|
13962
|
+
path: "/cfg/payments/payments/{id}/status/",
|
|
13963
|
+
method: "GET",
|
|
13964
|
+
error,
|
|
13965
|
+
response,
|
|
13966
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
13967
|
+
},
|
|
13968
|
+
bubbles: true,
|
|
13969
|
+
cancelable: false
|
|
13970
|
+
});
|
|
13971
|
+
window.dispatchEvent(event);
|
|
13972
|
+
} catch (eventError) {
|
|
13973
|
+
consola35.warn("Failed to dispatch validation error event:", eventError);
|
|
13974
|
+
}
|
|
13975
|
+
}
|
|
11346
13976
|
throw error;
|
|
11347
13977
|
}
|
|
11348
13978
|
}
|
|
@@ -11372,6 +14002,25 @@ Method: POST`,
|
|
|
11372
14002
|
});
|
|
11373
14003
|
}
|
|
11374
14004
|
consola35.error("Response data:", response);
|
|
14005
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14006
|
+
try {
|
|
14007
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14008
|
+
detail: {
|
|
14009
|
+
operation: "createPaymentsPaymentsCreateCreate",
|
|
14010
|
+
path: "/cfg/payments/payments/create/",
|
|
14011
|
+
method: "POST",
|
|
14012
|
+
error,
|
|
14013
|
+
response,
|
|
14014
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14015
|
+
},
|
|
14016
|
+
bubbles: true,
|
|
14017
|
+
cancelable: false
|
|
14018
|
+
});
|
|
14019
|
+
window.dispatchEvent(event);
|
|
14020
|
+
} catch (eventError) {
|
|
14021
|
+
consola35.warn("Failed to dispatch validation error event:", eventError);
|
|
14022
|
+
}
|
|
14023
|
+
}
|
|
11375
14024
|
throw error;
|
|
11376
14025
|
}
|
|
11377
14026
|
}
|
|
@@ -11409,6 +14058,25 @@ Method: GET`,
|
|
|
11409
14058
|
});
|
|
11410
14059
|
}
|
|
11411
14060
|
consola36.error("Response data:", response);
|
|
14061
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14062
|
+
try {
|
|
14063
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14064
|
+
detail: {
|
|
14065
|
+
operation: "getRqJobsList",
|
|
14066
|
+
path: "/cfg/rq/jobs/",
|
|
14067
|
+
method: "GET",
|
|
14068
|
+
error,
|
|
14069
|
+
response,
|
|
14070
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14071
|
+
},
|
|
14072
|
+
bubbles: true,
|
|
14073
|
+
cancelable: false
|
|
14074
|
+
});
|
|
14075
|
+
window.dispatchEvent(event);
|
|
14076
|
+
} catch (eventError) {
|
|
14077
|
+
consola36.warn("Failed to dispatch validation error event:", eventError);
|
|
14078
|
+
}
|
|
14079
|
+
}
|
|
11412
14080
|
throw error;
|
|
11413
14081
|
}
|
|
11414
14082
|
}
|
|
@@ -11438,6 +14106,25 @@ Method: GET`,
|
|
|
11438
14106
|
});
|
|
11439
14107
|
}
|
|
11440
14108
|
consola36.error("Response data:", response);
|
|
14109
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14110
|
+
try {
|
|
14111
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14112
|
+
detail: {
|
|
14113
|
+
operation: "getRqJobsRetrieve",
|
|
14114
|
+
path: "/cfg/rq/jobs/{id}/",
|
|
14115
|
+
method: "GET",
|
|
14116
|
+
error,
|
|
14117
|
+
response,
|
|
14118
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14119
|
+
},
|
|
14120
|
+
bubbles: true,
|
|
14121
|
+
cancelable: false
|
|
14122
|
+
});
|
|
14123
|
+
window.dispatchEvent(event);
|
|
14124
|
+
} catch (eventError) {
|
|
14125
|
+
consola36.warn("Failed to dispatch validation error event:", eventError);
|
|
14126
|
+
}
|
|
14127
|
+
}
|
|
11441
14128
|
throw error;
|
|
11442
14129
|
}
|
|
11443
14130
|
}
|
|
@@ -11467,6 +14154,25 @@ Method: DELETE`,
|
|
|
11467
14154
|
});
|
|
11468
14155
|
}
|
|
11469
14156
|
consola36.error("Response data:", response);
|
|
14157
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14158
|
+
try {
|
|
14159
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14160
|
+
detail: {
|
|
14161
|
+
operation: "deleteRqJobsDestroy",
|
|
14162
|
+
path: "/cfg/rq/jobs/{id}/",
|
|
14163
|
+
method: "DELETE",
|
|
14164
|
+
error,
|
|
14165
|
+
response,
|
|
14166
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14167
|
+
},
|
|
14168
|
+
bubbles: true,
|
|
14169
|
+
cancelable: false
|
|
14170
|
+
});
|
|
14171
|
+
window.dispatchEvent(event);
|
|
14172
|
+
} catch (eventError) {
|
|
14173
|
+
consola36.warn("Failed to dispatch validation error event:", eventError);
|
|
14174
|
+
}
|
|
14175
|
+
}
|
|
11470
14176
|
throw error;
|
|
11471
14177
|
}
|
|
11472
14178
|
}
|
|
@@ -11496,6 +14202,25 @@ Method: POST`,
|
|
|
11496
14202
|
});
|
|
11497
14203
|
}
|
|
11498
14204
|
consola36.error("Response data:", response);
|
|
14205
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14206
|
+
try {
|
|
14207
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14208
|
+
detail: {
|
|
14209
|
+
operation: "createRqJobsCancelCreate",
|
|
14210
|
+
path: "/cfg/rq/jobs/{id}/cancel/",
|
|
14211
|
+
method: "POST",
|
|
14212
|
+
error,
|
|
14213
|
+
response,
|
|
14214
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14215
|
+
},
|
|
14216
|
+
bubbles: true,
|
|
14217
|
+
cancelable: false
|
|
14218
|
+
});
|
|
14219
|
+
window.dispatchEvent(event);
|
|
14220
|
+
} catch (eventError) {
|
|
14221
|
+
consola36.warn("Failed to dispatch validation error event:", eventError);
|
|
14222
|
+
}
|
|
14223
|
+
}
|
|
11499
14224
|
throw error;
|
|
11500
14225
|
}
|
|
11501
14226
|
}
|
|
@@ -11525,6 +14250,25 @@ Method: POST`,
|
|
|
11525
14250
|
});
|
|
11526
14251
|
}
|
|
11527
14252
|
consola36.error("Response data:", response);
|
|
14253
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14254
|
+
try {
|
|
14255
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14256
|
+
detail: {
|
|
14257
|
+
operation: "createRqJobsRequeueCreate",
|
|
14258
|
+
path: "/cfg/rq/jobs/{id}/requeue/",
|
|
14259
|
+
method: "POST",
|
|
14260
|
+
error,
|
|
14261
|
+
response,
|
|
14262
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14263
|
+
},
|
|
14264
|
+
bubbles: true,
|
|
14265
|
+
cancelable: false
|
|
14266
|
+
});
|
|
14267
|
+
window.dispatchEvent(event);
|
|
14268
|
+
} catch (eventError) {
|
|
14269
|
+
consola36.warn("Failed to dispatch validation error event:", eventError);
|
|
14270
|
+
}
|
|
14271
|
+
}
|
|
11528
14272
|
throw error;
|
|
11529
14273
|
}
|
|
11530
14274
|
}
|
|
@@ -11557,6 +14301,25 @@ Method: GET`,
|
|
|
11557
14301
|
});
|
|
11558
14302
|
}
|
|
11559
14303
|
consola37.error("Response data:", response);
|
|
14304
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14305
|
+
try {
|
|
14306
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14307
|
+
detail: {
|
|
14308
|
+
operation: "getRqMonitorConfigRetrieve",
|
|
14309
|
+
path: "/cfg/rq/monitor/config/",
|
|
14310
|
+
method: "GET",
|
|
14311
|
+
error,
|
|
14312
|
+
response,
|
|
14313
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14314
|
+
},
|
|
14315
|
+
bubbles: true,
|
|
14316
|
+
cancelable: false
|
|
14317
|
+
});
|
|
14318
|
+
window.dispatchEvent(event);
|
|
14319
|
+
} catch (eventError) {
|
|
14320
|
+
consola37.warn("Failed to dispatch validation error event:", eventError);
|
|
14321
|
+
}
|
|
14322
|
+
}
|
|
11560
14323
|
throw error;
|
|
11561
14324
|
}
|
|
11562
14325
|
}
|
|
@@ -11586,6 +14349,25 @@ Method: GET`,
|
|
|
11586
14349
|
});
|
|
11587
14350
|
}
|
|
11588
14351
|
consola37.error("Response data:", response);
|
|
14352
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14353
|
+
try {
|
|
14354
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14355
|
+
detail: {
|
|
14356
|
+
operation: "getRqMonitorHealthRetrieve",
|
|
14357
|
+
path: "/cfg/rq/monitor/health/",
|
|
14358
|
+
method: "GET",
|
|
14359
|
+
error,
|
|
14360
|
+
response,
|
|
14361
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14362
|
+
},
|
|
14363
|
+
bubbles: true,
|
|
14364
|
+
cancelable: false
|
|
14365
|
+
});
|
|
14366
|
+
window.dispatchEvent(event);
|
|
14367
|
+
} catch (eventError) {
|
|
14368
|
+
consola37.warn("Failed to dispatch validation error event:", eventError);
|
|
14369
|
+
}
|
|
14370
|
+
}
|
|
11589
14371
|
throw error;
|
|
11590
14372
|
}
|
|
11591
14373
|
}
|
|
@@ -11628,6 +14410,25 @@ Method: GET`,
|
|
|
11628
14410
|
});
|
|
11629
14411
|
}
|
|
11630
14412
|
consola38.error("Response data:", response);
|
|
14413
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14414
|
+
try {
|
|
14415
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14416
|
+
detail: {
|
|
14417
|
+
operation: "getRqQueuesRetrieve",
|
|
14418
|
+
path: "/cfg/rq/queues/{id}/",
|
|
14419
|
+
method: "GET",
|
|
14420
|
+
error,
|
|
14421
|
+
response,
|
|
14422
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14423
|
+
},
|
|
14424
|
+
bubbles: true,
|
|
14425
|
+
cancelable: false
|
|
14426
|
+
});
|
|
14427
|
+
window.dispatchEvent(event);
|
|
14428
|
+
} catch (eventError) {
|
|
14429
|
+
consola38.warn("Failed to dispatch validation error event:", eventError);
|
|
14430
|
+
}
|
|
14431
|
+
}
|
|
11631
14432
|
throw error;
|
|
11632
14433
|
}
|
|
11633
14434
|
}
|
|
@@ -11670,6 +14471,25 @@ Method: GET`,
|
|
|
11670
14471
|
});
|
|
11671
14472
|
}
|
|
11672
14473
|
consola39.error("Response data:", response);
|
|
14474
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14475
|
+
try {
|
|
14476
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14477
|
+
detail: {
|
|
14478
|
+
operation: "getRqJobsRegistriesDeferredList",
|
|
14479
|
+
path: "/cfg/rq/jobs/registries/deferred/",
|
|
14480
|
+
method: "GET",
|
|
14481
|
+
error,
|
|
14482
|
+
response,
|
|
14483
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14484
|
+
},
|
|
14485
|
+
bubbles: true,
|
|
14486
|
+
cancelable: false
|
|
14487
|
+
});
|
|
14488
|
+
window.dispatchEvent(event);
|
|
14489
|
+
} catch (eventError) {
|
|
14490
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14491
|
+
}
|
|
14492
|
+
}
|
|
11673
14493
|
throw error;
|
|
11674
14494
|
}
|
|
11675
14495
|
}
|
|
@@ -11699,6 +14519,25 @@ Method: GET`,
|
|
|
11699
14519
|
});
|
|
11700
14520
|
}
|
|
11701
14521
|
consola39.error("Response data:", response);
|
|
14522
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14523
|
+
try {
|
|
14524
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14525
|
+
detail: {
|
|
14526
|
+
operation: "getRqJobsRegistriesFailedList",
|
|
14527
|
+
path: "/cfg/rq/jobs/registries/failed/",
|
|
14528
|
+
method: "GET",
|
|
14529
|
+
error,
|
|
14530
|
+
response,
|
|
14531
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14532
|
+
},
|
|
14533
|
+
bubbles: true,
|
|
14534
|
+
cancelable: false
|
|
14535
|
+
});
|
|
14536
|
+
window.dispatchEvent(event);
|
|
14537
|
+
} catch (eventError) {
|
|
14538
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14539
|
+
}
|
|
14540
|
+
}
|
|
11702
14541
|
throw error;
|
|
11703
14542
|
}
|
|
11704
14543
|
}
|
|
@@ -11728,6 +14567,25 @@ Method: POST`,
|
|
|
11728
14567
|
});
|
|
11729
14568
|
}
|
|
11730
14569
|
consola39.error("Response data:", response);
|
|
14570
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14571
|
+
try {
|
|
14572
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14573
|
+
detail: {
|
|
14574
|
+
operation: "createRqJobsRegistriesFailedClearCreate",
|
|
14575
|
+
path: "/cfg/rq/jobs/registries/failed/clear/",
|
|
14576
|
+
method: "POST",
|
|
14577
|
+
error,
|
|
14578
|
+
response,
|
|
14579
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14580
|
+
},
|
|
14581
|
+
bubbles: true,
|
|
14582
|
+
cancelable: false
|
|
14583
|
+
});
|
|
14584
|
+
window.dispatchEvent(event);
|
|
14585
|
+
} catch (eventError) {
|
|
14586
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14587
|
+
}
|
|
14588
|
+
}
|
|
11731
14589
|
throw error;
|
|
11732
14590
|
}
|
|
11733
14591
|
}
|
|
@@ -11757,6 +14615,25 @@ Method: POST`,
|
|
|
11757
14615
|
});
|
|
11758
14616
|
}
|
|
11759
14617
|
consola39.error("Response data:", response);
|
|
14618
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14619
|
+
try {
|
|
14620
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14621
|
+
detail: {
|
|
14622
|
+
operation: "createRqJobsRegistriesFailedRequeueAllCreate",
|
|
14623
|
+
path: "/cfg/rq/jobs/registries/failed/requeue-all/",
|
|
14624
|
+
method: "POST",
|
|
14625
|
+
error,
|
|
14626
|
+
response,
|
|
14627
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14628
|
+
},
|
|
14629
|
+
bubbles: true,
|
|
14630
|
+
cancelable: false
|
|
14631
|
+
});
|
|
14632
|
+
window.dispatchEvent(event);
|
|
14633
|
+
} catch (eventError) {
|
|
14634
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14635
|
+
}
|
|
14636
|
+
}
|
|
11760
14637
|
throw error;
|
|
11761
14638
|
}
|
|
11762
14639
|
}
|
|
@@ -11786,6 +14663,25 @@ Method: GET`,
|
|
|
11786
14663
|
});
|
|
11787
14664
|
}
|
|
11788
14665
|
consola39.error("Response data:", response);
|
|
14666
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14667
|
+
try {
|
|
14668
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14669
|
+
detail: {
|
|
14670
|
+
operation: "getRqJobsRegistriesFinishedList",
|
|
14671
|
+
path: "/cfg/rq/jobs/registries/finished/",
|
|
14672
|
+
method: "GET",
|
|
14673
|
+
error,
|
|
14674
|
+
response,
|
|
14675
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14676
|
+
},
|
|
14677
|
+
bubbles: true,
|
|
14678
|
+
cancelable: false
|
|
14679
|
+
});
|
|
14680
|
+
window.dispatchEvent(event);
|
|
14681
|
+
} catch (eventError) {
|
|
14682
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14683
|
+
}
|
|
14684
|
+
}
|
|
11789
14685
|
throw error;
|
|
11790
14686
|
}
|
|
11791
14687
|
}
|
|
@@ -11815,6 +14711,25 @@ Method: POST`,
|
|
|
11815
14711
|
});
|
|
11816
14712
|
}
|
|
11817
14713
|
consola39.error("Response data:", response);
|
|
14714
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14715
|
+
try {
|
|
14716
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14717
|
+
detail: {
|
|
14718
|
+
operation: "createRqJobsRegistriesFinishedClearCreate",
|
|
14719
|
+
path: "/cfg/rq/jobs/registries/finished/clear/",
|
|
14720
|
+
method: "POST",
|
|
14721
|
+
error,
|
|
14722
|
+
response,
|
|
14723
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14724
|
+
},
|
|
14725
|
+
bubbles: true,
|
|
14726
|
+
cancelable: false
|
|
14727
|
+
});
|
|
14728
|
+
window.dispatchEvent(event);
|
|
14729
|
+
} catch (eventError) {
|
|
14730
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14731
|
+
}
|
|
14732
|
+
}
|
|
11818
14733
|
throw error;
|
|
11819
14734
|
}
|
|
11820
14735
|
}
|
|
@@ -11844,6 +14759,25 @@ Method: GET`,
|
|
|
11844
14759
|
});
|
|
11845
14760
|
}
|
|
11846
14761
|
consola39.error("Response data:", response);
|
|
14762
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14763
|
+
try {
|
|
14764
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14765
|
+
detail: {
|
|
14766
|
+
operation: "getRqJobsRegistriesStartedList",
|
|
14767
|
+
path: "/cfg/rq/jobs/registries/started/",
|
|
14768
|
+
method: "GET",
|
|
14769
|
+
error,
|
|
14770
|
+
response,
|
|
14771
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14772
|
+
},
|
|
14773
|
+
bubbles: true,
|
|
14774
|
+
cancelable: false
|
|
14775
|
+
});
|
|
14776
|
+
window.dispatchEvent(event);
|
|
14777
|
+
} catch (eventError) {
|
|
14778
|
+
consola39.warn("Failed to dispatch validation error event:", eventError);
|
|
14779
|
+
}
|
|
14780
|
+
}
|
|
11847
14781
|
throw error;
|
|
11848
14782
|
}
|
|
11849
14783
|
}
|
|
@@ -11876,6 +14810,25 @@ Method: GET`,
|
|
|
11876
14810
|
});
|
|
11877
14811
|
}
|
|
11878
14812
|
consola40.error("Response data:", response);
|
|
14813
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14814
|
+
try {
|
|
14815
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14816
|
+
detail: {
|
|
14817
|
+
operation: "getRqSchedulesList",
|
|
14818
|
+
path: "/cfg/rq/schedules/",
|
|
14819
|
+
method: "GET",
|
|
14820
|
+
error,
|
|
14821
|
+
response,
|
|
14822
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14823
|
+
},
|
|
14824
|
+
bubbles: true,
|
|
14825
|
+
cancelable: false
|
|
14826
|
+
});
|
|
14827
|
+
window.dispatchEvent(event);
|
|
14828
|
+
} catch (eventError) {
|
|
14829
|
+
consola40.warn("Failed to dispatch validation error event:", eventError);
|
|
14830
|
+
}
|
|
14831
|
+
}
|
|
11879
14832
|
throw error;
|
|
11880
14833
|
}
|
|
11881
14834
|
}
|
|
@@ -11905,6 +14858,25 @@ Method: POST`,
|
|
|
11905
14858
|
});
|
|
11906
14859
|
}
|
|
11907
14860
|
consola40.error("Response data:", response);
|
|
14861
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14862
|
+
try {
|
|
14863
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14864
|
+
detail: {
|
|
14865
|
+
operation: "createRqSchedulesCreate",
|
|
14866
|
+
path: "/cfg/rq/schedules/",
|
|
14867
|
+
method: "POST",
|
|
14868
|
+
error,
|
|
14869
|
+
response,
|
|
14870
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14871
|
+
},
|
|
14872
|
+
bubbles: true,
|
|
14873
|
+
cancelable: false
|
|
14874
|
+
});
|
|
14875
|
+
window.dispatchEvent(event);
|
|
14876
|
+
} catch (eventError) {
|
|
14877
|
+
consola40.warn("Failed to dispatch validation error event:", eventError);
|
|
14878
|
+
}
|
|
14879
|
+
}
|
|
11908
14880
|
throw error;
|
|
11909
14881
|
}
|
|
11910
14882
|
}
|
|
@@ -11934,6 +14906,25 @@ Method: GET`,
|
|
|
11934
14906
|
});
|
|
11935
14907
|
}
|
|
11936
14908
|
consola40.error("Response data:", response);
|
|
14909
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14910
|
+
try {
|
|
14911
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14912
|
+
detail: {
|
|
14913
|
+
operation: "getRqSchedulesRetrieve",
|
|
14914
|
+
path: "/cfg/rq/schedules/{id}/",
|
|
14915
|
+
method: "GET",
|
|
14916
|
+
error,
|
|
14917
|
+
response,
|
|
14918
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14919
|
+
},
|
|
14920
|
+
bubbles: true,
|
|
14921
|
+
cancelable: false
|
|
14922
|
+
});
|
|
14923
|
+
window.dispatchEvent(event);
|
|
14924
|
+
} catch (eventError) {
|
|
14925
|
+
consola40.warn("Failed to dispatch validation error event:", eventError);
|
|
14926
|
+
}
|
|
14927
|
+
}
|
|
11937
14928
|
throw error;
|
|
11938
14929
|
}
|
|
11939
14930
|
}
|
|
@@ -11963,6 +14954,25 @@ Method: DELETE`,
|
|
|
11963
14954
|
});
|
|
11964
14955
|
}
|
|
11965
14956
|
consola40.error("Response data:", response);
|
|
14957
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
14958
|
+
try {
|
|
14959
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
14960
|
+
detail: {
|
|
14961
|
+
operation: "deleteRqSchedulesDestroy",
|
|
14962
|
+
path: "/cfg/rq/schedules/{id}/",
|
|
14963
|
+
method: "DELETE",
|
|
14964
|
+
error,
|
|
14965
|
+
response,
|
|
14966
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
14967
|
+
},
|
|
14968
|
+
bubbles: true,
|
|
14969
|
+
cancelable: false
|
|
14970
|
+
});
|
|
14971
|
+
window.dispatchEvent(event);
|
|
14972
|
+
} catch (eventError) {
|
|
14973
|
+
consola40.warn("Failed to dispatch validation error event:", eventError);
|
|
14974
|
+
}
|
|
14975
|
+
}
|
|
11966
14976
|
throw error;
|
|
11967
14977
|
}
|
|
11968
14978
|
}
|
|
@@ -12000,6 +15010,25 @@ Method: DELETE`,
|
|
|
12000
15010
|
});
|
|
12001
15011
|
}
|
|
12002
15012
|
consola41.error("Response data:", response);
|
|
15013
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15014
|
+
try {
|
|
15015
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15016
|
+
detail: {
|
|
15017
|
+
operation: "deleteRqTestingCleanupDestroy",
|
|
15018
|
+
path: "/cfg/rq/testing/cleanup/",
|
|
15019
|
+
method: "DELETE",
|
|
15020
|
+
error,
|
|
15021
|
+
response,
|
|
15022
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15023
|
+
},
|
|
15024
|
+
bubbles: true,
|
|
15025
|
+
cancelable: false
|
|
15026
|
+
});
|
|
15027
|
+
window.dispatchEvent(event);
|
|
15028
|
+
} catch (eventError) {
|
|
15029
|
+
consola41.warn("Failed to dispatch validation error event:", eventError);
|
|
15030
|
+
}
|
|
15031
|
+
}
|
|
12003
15032
|
throw error;
|
|
12004
15033
|
}
|
|
12005
15034
|
}
|
|
@@ -12034,6 +15063,25 @@ Method: POST`,
|
|
|
12034
15063
|
});
|
|
12035
15064
|
}
|
|
12036
15065
|
consola41.error("Response data:", response);
|
|
15066
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15067
|
+
try {
|
|
15068
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15069
|
+
detail: {
|
|
15070
|
+
operation: "createRqTestingRunDemoCreate",
|
|
15071
|
+
path: "/cfg/rq/testing/run-demo/",
|
|
15072
|
+
method: "POST",
|
|
15073
|
+
error,
|
|
15074
|
+
response,
|
|
15075
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15076
|
+
},
|
|
15077
|
+
bubbles: true,
|
|
15078
|
+
cancelable: false
|
|
15079
|
+
});
|
|
15080
|
+
window.dispatchEvent(event);
|
|
15081
|
+
} catch (eventError) {
|
|
15082
|
+
consola41.warn("Failed to dispatch validation error event:", eventError);
|
|
15083
|
+
}
|
|
15084
|
+
}
|
|
12037
15085
|
throw error;
|
|
12038
15086
|
}
|
|
12039
15087
|
}
|
|
@@ -12063,6 +15111,25 @@ Method: POST`,
|
|
|
12063
15111
|
});
|
|
12064
15112
|
}
|
|
12065
15113
|
consola41.error("Response data:", response);
|
|
15114
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15115
|
+
try {
|
|
15116
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15117
|
+
detail: {
|
|
15118
|
+
operation: "createRqTestingScheduleDemoCreate",
|
|
15119
|
+
path: "/cfg/rq/testing/schedule-demo/",
|
|
15120
|
+
method: "POST",
|
|
15121
|
+
error,
|
|
15122
|
+
response,
|
|
15123
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15124
|
+
},
|
|
15125
|
+
bubbles: true,
|
|
15126
|
+
cancelable: false
|
|
15127
|
+
});
|
|
15128
|
+
window.dispatchEvent(event);
|
|
15129
|
+
} catch (eventError) {
|
|
15130
|
+
consola41.warn("Failed to dispatch validation error event:", eventError);
|
|
15131
|
+
}
|
|
15132
|
+
}
|
|
12066
15133
|
throw error;
|
|
12067
15134
|
}
|
|
12068
15135
|
}
|
|
@@ -12092,6 +15159,25 @@ Method: POST`,
|
|
|
12092
15159
|
});
|
|
12093
15160
|
}
|
|
12094
15161
|
consola41.error("Response data:", response);
|
|
15162
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15163
|
+
try {
|
|
15164
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15165
|
+
detail: {
|
|
15166
|
+
operation: "createRqTestingStressTestCreate",
|
|
15167
|
+
path: "/cfg/rq/testing/stress-test/",
|
|
15168
|
+
method: "POST",
|
|
15169
|
+
error,
|
|
15170
|
+
response,
|
|
15171
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15172
|
+
},
|
|
15173
|
+
bubbles: true,
|
|
15174
|
+
cancelable: false
|
|
15175
|
+
});
|
|
15176
|
+
window.dispatchEvent(event);
|
|
15177
|
+
} catch (eventError) {
|
|
15178
|
+
consola41.warn("Failed to dispatch validation error event:", eventError);
|
|
15179
|
+
}
|
|
15180
|
+
}
|
|
12095
15181
|
throw error;
|
|
12096
15182
|
}
|
|
12097
15183
|
}
|
|
@@ -12129,6 +15215,25 @@ Method: GET`,
|
|
|
12129
15215
|
});
|
|
12130
15216
|
}
|
|
12131
15217
|
consola42.error("Response data:", response);
|
|
15218
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15219
|
+
try {
|
|
15220
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15221
|
+
detail: {
|
|
15222
|
+
operation: "getRqWorkersStatsRetrieve",
|
|
15223
|
+
path: "/cfg/rq/workers/stats/",
|
|
15224
|
+
method: "GET",
|
|
15225
|
+
error,
|
|
15226
|
+
response,
|
|
15227
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15228
|
+
},
|
|
15229
|
+
bubbles: true,
|
|
15230
|
+
cancelable: false
|
|
15231
|
+
});
|
|
15232
|
+
window.dispatchEvent(event);
|
|
15233
|
+
} catch (eventError) {
|
|
15234
|
+
consola42.warn("Failed to dispatch validation error event:", eventError);
|
|
15235
|
+
}
|
|
15236
|
+
}
|
|
12132
15237
|
throw error;
|
|
12133
15238
|
}
|
|
12134
15239
|
}
|
|
@@ -12161,6 +15266,25 @@ Method: GET`,
|
|
|
12161
15266
|
});
|
|
12162
15267
|
}
|
|
12163
15268
|
consola43.error("Response data:", response);
|
|
15269
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15270
|
+
try {
|
|
15271
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15272
|
+
detail: {
|
|
15273
|
+
operation: "getSupportTicketsList",
|
|
15274
|
+
path: "/cfg/support/tickets/",
|
|
15275
|
+
method: "GET",
|
|
15276
|
+
error,
|
|
15277
|
+
response,
|
|
15278
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15279
|
+
},
|
|
15280
|
+
bubbles: true,
|
|
15281
|
+
cancelable: false
|
|
15282
|
+
});
|
|
15283
|
+
window.dispatchEvent(event);
|
|
15284
|
+
} catch (eventError) {
|
|
15285
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15286
|
+
}
|
|
15287
|
+
}
|
|
12164
15288
|
throw error;
|
|
12165
15289
|
}
|
|
12166
15290
|
}
|
|
@@ -12190,6 +15314,25 @@ Method: POST`,
|
|
|
12190
15314
|
});
|
|
12191
15315
|
}
|
|
12192
15316
|
consola43.error("Response data:", response);
|
|
15317
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15318
|
+
try {
|
|
15319
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15320
|
+
detail: {
|
|
15321
|
+
operation: "createSupportTicketsCreate",
|
|
15322
|
+
path: "/cfg/support/tickets/",
|
|
15323
|
+
method: "POST",
|
|
15324
|
+
error,
|
|
15325
|
+
response,
|
|
15326
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15327
|
+
},
|
|
15328
|
+
bubbles: true,
|
|
15329
|
+
cancelable: false
|
|
15330
|
+
});
|
|
15331
|
+
window.dispatchEvent(event);
|
|
15332
|
+
} catch (eventError) {
|
|
15333
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15334
|
+
}
|
|
15335
|
+
}
|
|
12193
15336
|
throw error;
|
|
12194
15337
|
}
|
|
12195
15338
|
}
|
|
@@ -12219,6 +15362,25 @@ Method: GET`,
|
|
|
12219
15362
|
});
|
|
12220
15363
|
}
|
|
12221
15364
|
consola43.error("Response data:", response);
|
|
15365
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15366
|
+
try {
|
|
15367
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15368
|
+
detail: {
|
|
15369
|
+
operation: "getSupportTicketsMessagesList",
|
|
15370
|
+
path: "/cfg/support/tickets/{ticket_uuid}/messages/",
|
|
15371
|
+
method: "GET",
|
|
15372
|
+
error,
|
|
15373
|
+
response,
|
|
15374
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15375
|
+
},
|
|
15376
|
+
bubbles: true,
|
|
15377
|
+
cancelable: false
|
|
15378
|
+
});
|
|
15379
|
+
window.dispatchEvent(event);
|
|
15380
|
+
} catch (eventError) {
|
|
15381
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15382
|
+
}
|
|
15383
|
+
}
|
|
12222
15384
|
throw error;
|
|
12223
15385
|
}
|
|
12224
15386
|
}
|
|
@@ -12248,6 +15410,25 @@ Method: POST`,
|
|
|
12248
15410
|
});
|
|
12249
15411
|
}
|
|
12250
15412
|
consola43.error("Response data:", response);
|
|
15413
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15414
|
+
try {
|
|
15415
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15416
|
+
detail: {
|
|
15417
|
+
operation: "createSupportTicketsMessagesCreate",
|
|
15418
|
+
path: "/cfg/support/tickets/{ticket_uuid}/messages/",
|
|
15419
|
+
method: "POST",
|
|
15420
|
+
error,
|
|
15421
|
+
response,
|
|
15422
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15423
|
+
},
|
|
15424
|
+
bubbles: true,
|
|
15425
|
+
cancelable: false
|
|
15426
|
+
});
|
|
15427
|
+
window.dispatchEvent(event);
|
|
15428
|
+
} catch (eventError) {
|
|
15429
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15430
|
+
}
|
|
15431
|
+
}
|
|
12251
15432
|
throw error;
|
|
12252
15433
|
}
|
|
12253
15434
|
}
|
|
@@ -12277,6 +15458,25 @@ Method: GET`,
|
|
|
12277
15458
|
});
|
|
12278
15459
|
}
|
|
12279
15460
|
consola43.error("Response data:", response);
|
|
15461
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15462
|
+
try {
|
|
15463
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15464
|
+
detail: {
|
|
15465
|
+
operation: "getSupportTicketsMessagesRetrieve",
|
|
15466
|
+
path: "/cfg/support/tickets/{ticket_uuid}/messages/{uuid}/",
|
|
15467
|
+
method: "GET",
|
|
15468
|
+
error,
|
|
15469
|
+
response,
|
|
15470
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15471
|
+
},
|
|
15472
|
+
bubbles: true,
|
|
15473
|
+
cancelable: false
|
|
15474
|
+
});
|
|
15475
|
+
window.dispatchEvent(event);
|
|
15476
|
+
} catch (eventError) {
|
|
15477
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15478
|
+
}
|
|
15479
|
+
}
|
|
12280
15480
|
throw error;
|
|
12281
15481
|
}
|
|
12282
15482
|
}
|
|
@@ -12306,6 +15506,25 @@ Method: PUT`,
|
|
|
12306
15506
|
});
|
|
12307
15507
|
}
|
|
12308
15508
|
consola43.error("Response data:", response);
|
|
15509
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15510
|
+
try {
|
|
15511
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15512
|
+
detail: {
|
|
15513
|
+
operation: "updateSupportTicketsMessagesUpdate",
|
|
15514
|
+
path: "/cfg/support/tickets/{ticket_uuid}/messages/{uuid}/",
|
|
15515
|
+
method: "PUT",
|
|
15516
|
+
error,
|
|
15517
|
+
response,
|
|
15518
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15519
|
+
},
|
|
15520
|
+
bubbles: true,
|
|
15521
|
+
cancelable: false
|
|
15522
|
+
});
|
|
15523
|
+
window.dispatchEvent(event);
|
|
15524
|
+
} catch (eventError) {
|
|
15525
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15526
|
+
}
|
|
15527
|
+
}
|
|
12309
15528
|
throw error;
|
|
12310
15529
|
}
|
|
12311
15530
|
}
|
|
@@ -12335,6 +15554,25 @@ Method: PATCH`,
|
|
|
12335
15554
|
});
|
|
12336
15555
|
}
|
|
12337
15556
|
consola43.error("Response data:", response);
|
|
15557
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15558
|
+
try {
|
|
15559
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15560
|
+
detail: {
|
|
15561
|
+
operation: "partialUpdateSupportTicketsMessagesPartialUpdate",
|
|
15562
|
+
path: "/cfg/support/tickets/{ticket_uuid}/messages/{uuid}/",
|
|
15563
|
+
method: "PATCH",
|
|
15564
|
+
error,
|
|
15565
|
+
response,
|
|
15566
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15567
|
+
},
|
|
15568
|
+
bubbles: true,
|
|
15569
|
+
cancelable: false
|
|
15570
|
+
});
|
|
15571
|
+
window.dispatchEvent(event);
|
|
15572
|
+
} catch (eventError) {
|
|
15573
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15574
|
+
}
|
|
15575
|
+
}
|
|
12338
15576
|
throw error;
|
|
12339
15577
|
}
|
|
12340
15578
|
}
|
|
@@ -12369,6 +15607,25 @@ Method: GET`,
|
|
|
12369
15607
|
});
|
|
12370
15608
|
}
|
|
12371
15609
|
consola43.error("Response data:", response);
|
|
15610
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15611
|
+
try {
|
|
15612
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15613
|
+
detail: {
|
|
15614
|
+
operation: "getSupportTicketsRetrieve",
|
|
15615
|
+
path: "/cfg/support/tickets/{uuid}/",
|
|
15616
|
+
method: "GET",
|
|
15617
|
+
error,
|
|
15618
|
+
response,
|
|
15619
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15620
|
+
},
|
|
15621
|
+
bubbles: true,
|
|
15622
|
+
cancelable: false
|
|
15623
|
+
});
|
|
15624
|
+
window.dispatchEvent(event);
|
|
15625
|
+
} catch (eventError) {
|
|
15626
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15627
|
+
}
|
|
15628
|
+
}
|
|
12372
15629
|
throw error;
|
|
12373
15630
|
}
|
|
12374
15631
|
}
|
|
@@ -12398,6 +15655,25 @@ Method: PUT`,
|
|
|
12398
15655
|
});
|
|
12399
15656
|
}
|
|
12400
15657
|
consola43.error("Response data:", response);
|
|
15658
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15659
|
+
try {
|
|
15660
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15661
|
+
detail: {
|
|
15662
|
+
operation: "updateSupportTicketsUpdate",
|
|
15663
|
+
path: "/cfg/support/tickets/{uuid}/",
|
|
15664
|
+
method: "PUT",
|
|
15665
|
+
error,
|
|
15666
|
+
response,
|
|
15667
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15668
|
+
},
|
|
15669
|
+
bubbles: true,
|
|
15670
|
+
cancelable: false
|
|
15671
|
+
});
|
|
15672
|
+
window.dispatchEvent(event);
|
|
15673
|
+
} catch (eventError) {
|
|
15674
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15675
|
+
}
|
|
15676
|
+
}
|
|
12401
15677
|
throw error;
|
|
12402
15678
|
}
|
|
12403
15679
|
}
|
|
@@ -12427,6 +15703,25 @@ Method: PATCH`,
|
|
|
12427
15703
|
});
|
|
12428
15704
|
}
|
|
12429
15705
|
consola43.error("Response data:", response);
|
|
15706
|
+
if (typeof window !== "undefined" && error instanceof Error && "issues" in error) {
|
|
15707
|
+
try {
|
|
15708
|
+
const event = new CustomEvent("zod-validation-error", {
|
|
15709
|
+
detail: {
|
|
15710
|
+
operation: "partialUpdateSupportTicketsPartialUpdate",
|
|
15711
|
+
path: "/cfg/support/tickets/{uuid}/",
|
|
15712
|
+
method: "PATCH",
|
|
15713
|
+
error,
|
|
15714
|
+
response,
|
|
15715
|
+
timestamp: /* @__PURE__ */ new Date()
|
|
15716
|
+
},
|
|
15717
|
+
bubbles: true,
|
|
15718
|
+
cancelable: false
|
|
15719
|
+
});
|
|
15720
|
+
window.dispatchEvent(event);
|
|
15721
|
+
} catch (eventError) {
|
|
15722
|
+
consola43.warn("Failed to dispatch validation error event:", eventError);
|
|
15723
|
+
}
|
|
15724
|
+
}
|
|
12430
15725
|
throw error;
|
|
12431
15726
|
}
|
|
12432
15727
|
}
|
|
@@ -15435,6 +18730,8 @@ export {
|
|
|
15435
18730
|
deleteRqTestingCleanupDestroy,
|
|
15436
18731
|
deleteSupportTicketsDestroy,
|
|
15437
18732
|
deleteSupportTicketsMessagesDestroy,
|
|
18733
|
+
dispatchValidationError,
|
|
18734
|
+
formatZodError,
|
|
15438
18735
|
getAPIInstance,
|
|
15439
18736
|
getAccountsProfileRetrieve,
|
|
15440
18737
|
getCentrifugoAuthTokenRetrieve,
|
|
@@ -15554,6 +18851,7 @@ export {
|
|
|
15554
18851
|
getSupportTicketsMessagesRetrieve,
|
|
15555
18852
|
getSupportTicketsRetrieve,
|
|
15556
18853
|
isAPIConfigured,
|
|
18854
|
+
onValidationError,
|
|
15557
18855
|
partialUpdateAccountsProfilePartialPartialUpdate,
|
|
15558
18856
|
partialUpdateAccountsProfilePartialUpdate,
|
|
15559
18857
|
partialUpdateAccountsProfileUpdatePartialUpdate,
|