@carlonicora/nextjs-jsonapi 1.114.0 → 1.115.0
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/{BlockNoteEditor-DT5L5AAB.js → BlockNoteEditor-V74ICZY3.js} +19 -19
- package/dist/{BlockNoteEditor-DT5L5AAB.js.map → BlockNoteEditor-V74ICZY3.js.map} +1 -1
- package/dist/{BlockNoteEditor-HIEAHXR4.mjs → BlockNoteEditor-Z3EKI3C6.mjs} +4 -4
- package/dist/billing/index.js +346 -346
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-4BUZUKER.js → chunk-3MUBMSDD.js} +7 -7
- package/dist/{chunk-4BUZUKER.js.map → chunk-3MUBMSDD.js.map} +1 -1
- package/dist/{chunk-VA2KFKHD.js → chunk-6LSGIJ5W.js} +695 -695
- package/dist/{chunk-VA2KFKHD.js.map → chunk-6LSGIJ5W.js.map} +1 -1
- package/dist/{chunk-TVOW47AP.mjs → chunk-BKKVLD42.mjs} +4 -4
- package/dist/{chunk-7EQ46GUL.js → chunk-J3DFHESB.js} +4 -4
- package/dist/chunk-J3DFHESB.js.map +1 -0
- package/dist/{chunk-DJSH6VHF.mjs → chunk-SJRSR3AF.mjs} +2 -2
- package/dist/{chunk-FBTTIGLL.mjs → chunk-UBBTQUFB.mjs} +4 -4
- package/dist/chunk-UBBTQUFB.mjs.map +1 -0
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.js +4 -4
- package/dist/components/index.mjs +3 -3
- package/dist/contexts/index.js +4 -4
- package/dist/contexts/index.mjs +3 -3
- package/dist/core/index.d.mts +2 -2
- package/dist/core/index.d.ts +2 -2
- package/dist/core/index.js +2 -2
- package/dist/core/index.mjs +1 -1
- package/dist/features/help/index.js +36 -36
- package/dist/features/help/index.mjs +3 -3
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/dist/index.mjs +2 -2
- package/dist/{s3.service-0BTClOYO.d.mts → s3.service-CAL5dhGG.d.mts} +3 -0
- package/dist/{s3.service-CT27Fm1s.d.ts → s3.service-COLYvcW2.d.ts} +3 -0
- package/dist/server/index.d.mts +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/core/abstracts/AbstractService.ts +6 -3
- package/dist/chunk-7EQ46GUL.js.map +0 -1
- package/dist/chunk-FBTTIGLL.mjs.map +0 -1
- /package/dist/{BlockNoteEditor-HIEAHXR4.mjs.map → BlockNoteEditor-Z3EKI3C6.mjs.map} +0 -0
- /package/dist/{chunk-TVOW47AP.mjs.map → chunk-BKKVLD42.mjs.map} +0 -0
- /package/dist/{chunk-DJSH6VHF.mjs.map → chunk-SJRSR3AF.mjs.map} +0 -0
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
AbstractService,
|
|
3
3
|
EndpointCreator,
|
|
4
4
|
Modules
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-UBBTQUFB.mjs";
|
|
6
6
|
import {
|
|
7
7
|
setBootstrapper
|
|
8
8
|
} from "./chunk-KK7PYKVI.mjs";
|
|
@@ -296,4 +296,4 @@ export {
|
|
|
296
296
|
ACTION_TYPES,
|
|
297
297
|
RbacService
|
|
298
298
|
};
|
|
299
|
-
//# sourceMappingURL=chunk-
|
|
299
|
+
//# sourceMappingURL=chunk-SJRSR3AF.mjs.map
|
|
@@ -393,7 +393,7 @@ var AbstractService = class {
|
|
|
393
393
|
throw new Error("Method not found");
|
|
394
394
|
}
|
|
395
395
|
if (!apiResponse.ok) {
|
|
396
|
-
if (globalErrorHandler && typeof window !== "undefined") {
|
|
396
|
+
if (globalErrorHandler && typeof window !== "undefined" && !params.suppressGlobalError) {
|
|
397
397
|
globalErrorHandler(apiResponse.response, apiResponse.error);
|
|
398
398
|
return void 0;
|
|
399
399
|
} else {
|
|
@@ -482,7 +482,7 @@ var AbstractService = class {
|
|
|
482
482
|
throw new Error("Method not found");
|
|
483
483
|
}
|
|
484
484
|
if (!apiResponse.ok) {
|
|
485
|
-
if (globalErrorHandler && typeof window !== "undefined") {
|
|
485
|
+
if (globalErrorHandler && typeof window !== "undefined" && !params.suppressGlobalError) {
|
|
486
486
|
globalErrorHandler(apiResponse.response, apiResponse.error);
|
|
487
487
|
return { data: void 0, meta: void 0 };
|
|
488
488
|
} else {
|
|
@@ -516,7 +516,7 @@ var AbstractService = class {
|
|
|
516
516
|
language
|
|
517
517
|
});
|
|
518
518
|
if (!apiResponse.ok) {
|
|
519
|
-
if (globalErrorHandler && typeof window !== "undefined") {
|
|
519
|
+
if (globalErrorHandler && typeof window !== "undefined" && !params.suppressGlobalError) {
|
|
520
520
|
globalErrorHandler(apiResponse.response, apiResponse.error);
|
|
521
521
|
return void 0;
|
|
522
522
|
} else {
|
|
@@ -7822,4 +7822,4 @@ export {
|
|
|
7822
7822
|
AuditLogService,
|
|
7823
7823
|
AuditLogModule
|
|
7824
7824
|
};
|
|
7825
|
-
//# sourceMappingURL=chunk-
|
|
7825
|
+
//# sourceMappingURL=chunk-UBBTQUFB.mjs.map
|