@carlonicora/nextjs-jsonapi 1.63.0 → 1.65.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-TS62AHRY.mjs → BlockNoteEditor-SCQGD6F2.mjs} +4 -4
- package/dist/{BlockNoteEditor-QQ4XFT4G.js → BlockNoteEditor-Y5XAD6NR.js} +14 -14
- package/dist/{BlockNoteEditor-QQ4XFT4G.js.map → BlockNoteEditor-Y5XAD6NR.js.map} +1 -1
- package/dist/billing/index.js +346 -346
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-HRG4EAOG.mjs → chunk-5KMKI23S.mjs} +2 -2
- package/dist/{chunk-ZRKQQLYI.js → chunk-5ODPC3YX.js} +769 -821
- package/dist/chunk-5ODPC3YX.js.map +1 -0
- package/dist/{chunk-YHNDD34Z.mjs → chunk-G7PGWMFO.mjs} +95 -3
- package/dist/chunk-G7PGWMFO.mjs.map +1 -0
- package/dist/{chunk-NAST4OSM.js → chunk-LRXJT656.js} +96 -4
- package/dist/chunk-LRXJT656.js.map +1 -0
- package/dist/{chunk-K3DKXOEU.mjs → chunk-OLNMWVOV.mjs} +1172 -1224
- package/dist/chunk-OLNMWVOV.mjs.map +1 -0
- package/dist/{chunk-BQSMP4NU.js → chunk-RA4RYKYB.js} +11 -11
- package/dist/{chunk-BQSMP4NU.js.map → chunk-RA4RYKYB.js.map} +1 -1
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +11 -8
- package/dist/components/index.d.ts +11 -8
- package/dist/components/index.js +4 -6
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +3 -5
- package/dist/contexts/index.d.mts +2 -1
- package/dist/contexts/index.d.ts +2 -1
- package/dist/contexts/index.js +4 -4
- package/dist/contexts/index.mjs +3 -3
- package/dist/core/index.d.mts +44 -1
- package/dist/core/index.d.ts +44 -1
- package/dist/core/index.js +8 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +7 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/core/index.ts +1 -0
- package/src/core/registry/ModuleRegistry.ts +2 -0
- package/src/features/audit-log/audit-log.module.ts +10 -0
- package/src/features/audit-log/data/audit-log.interface.ts +12 -0
- package/src/features/audit-log/data/audit-log.service.ts +24 -0
- package/src/features/audit-log/data/audit-log.ts +65 -0
- package/src/features/audit-log/data/index.ts +3 -0
- package/src/features/audit-log/index.ts +2 -0
- package/src/features/company/company.module.ts +3 -1
- package/src/features/company/components/containers/CompanyContainer.tsx +7 -2
- package/src/features/company/components/details/CompanyDetails.tsx +16 -1
- package/src/features/company/components/forms/CompanyConfigurationEditor.tsx +19 -51
- package/src/features/company/components/forms/index.ts +0 -1
- package/src/features/company/contexts/CompanyContext.tsx +5 -3
- package/src/features/user/user.module.ts +3 -1
- package/dist/chunk-K3DKXOEU.mjs.map +0 -1
- package/dist/chunk-NAST4OSM.js.map +0 -1
- package/dist/chunk-YHNDD34Z.mjs.map +0 -1
- package/dist/chunk-ZRKQQLYI.js.map +0 -1
- package/src/features/company/components/forms/CompanyConfigurationSecurityForm.tsx +0 -83
- /package/dist/{BlockNoteEditor-TS62AHRY.mjs.map → BlockNoteEditor-SCQGD6F2.mjs.map} +0 -0
- /package/dist/{chunk-HRG4EAOG.mjs.map → chunk-5KMKI23S.mjs.map} +0 -0
package/dist/billing/index.mjs
CHANGED
|
@@ -47,11 +47,11 @@ import {
|
|
|
47
47
|
TabsList,
|
|
48
48
|
TabsTrigger,
|
|
49
49
|
useCurrentUserContext
|
|
50
|
-
} from "../chunk-
|
|
50
|
+
} from "../chunk-OLNMWVOV.mjs";
|
|
51
51
|
import {
|
|
52
52
|
getRoleId,
|
|
53
53
|
getStripePublishableKey
|
|
54
|
-
} from "../chunk-
|
|
54
|
+
} from "../chunk-5KMKI23S.mjs";
|
|
55
55
|
import {
|
|
56
56
|
FeatureService,
|
|
57
57
|
StripeCustomerService,
|
|
@@ -62,7 +62,7 @@ import {
|
|
|
62
62
|
StripeSubscriptionService,
|
|
63
63
|
StripeUsageService,
|
|
64
64
|
cn
|
|
65
|
-
} from "../chunk-
|
|
65
|
+
} from "../chunk-G7PGWMFO.mjs";
|
|
66
66
|
import "../chunk-AUXK7QSA.mjs";
|
|
67
67
|
import "../chunk-C7C7VY4F.mjs";
|
|
68
68
|
import "../chunk-BTKJFMFL.mjs";
|
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
AbstractService,
|
|
3
3
|
EndpointCreator,
|
|
4
4
|
Modules
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-G7PGWMFO.mjs";
|
|
6
6
|
import {
|
|
7
7
|
setBootstrapper
|
|
8
8
|
} from "./chunk-BTKJFMFL.mjs";
|
|
@@ -259,4 +259,4 @@ export {
|
|
|
259
259
|
ACTION_TYPES,
|
|
260
260
|
RbacService
|
|
261
261
|
};
|
|
262
|
-
//# sourceMappingURL=chunk-
|
|
262
|
+
//# sourceMappingURL=chunk-5KMKI23S.mjs.map
|