@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
|
@@ -19,8 +19,9 @@ interface CompanyContextType {
|
|
|
19
19
|
type CompanyProviderProps = {
|
|
20
20
|
children: ReactNode;
|
|
21
21
|
dehydratedCompany?: JsonApiHydratedDataInterface;
|
|
22
|
+
configurationEditorSlot?: ReactNode;
|
|
22
23
|
};
|
|
23
|
-
declare const CompanyProvider: ({ children, dehydratedCompany }: CompanyProviderProps) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
declare const CompanyProvider: ({ children, dehydratedCompany, configurationEditorSlot }: CompanyProviderProps) => react_jsx_runtime.JSX.Element;
|
|
24
25
|
declare const useCompanyContext: () => CompanyContextType;
|
|
25
26
|
|
|
26
27
|
interface NotificationContextType {
|
package/dist/contexts/index.d.ts
CHANGED
|
@@ -19,8 +19,9 @@ interface CompanyContextType {
|
|
|
19
19
|
type CompanyProviderProps = {
|
|
20
20
|
children: ReactNode;
|
|
21
21
|
dehydratedCompany?: JsonApiHydratedDataInterface;
|
|
22
|
+
configurationEditorSlot?: ReactNode;
|
|
22
23
|
};
|
|
23
|
-
declare const CompanyProvider: ({ children, dehydratedCompany }: CompanyProviderProps) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
declare const CompanyProvider: ({ children, dehydratedCompany, configurationEditorSlot }: CompanyProviderProps) => react_jsx_runtime.JSX.Element;
|
|
24
25
|
declare const useCompanyContext: () => CompanyContextType;
|
|
25
26
|
|
|
26
27
|
interface NotificationContextType {
|
package/dist/contexts/index.js
CHANGED
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
var
|
|
27
|
-
require('../chunk-
|
|
28
|
-
require('../chunk-
|
|
26
|
+
var _chunk5ODPC3YXjs = require('../chunk-5ODPC3YX.js');
|
|
27
|
+
require('../chunk-RA4RYKYB.js');
|
|
28
|
+
require('../chunk-LRXJT656.js');
|
|
29
29
|
require('../chunk-LXKSUWAV.js');
|
|
30
30
|
require('../chunk-IBS6NI7D.js');
|
|
31
31
|
require('../chunk-4MN547K7.js');
|
|
@@ -55,5 +55,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
exports.CommonProvider =
|
|
58
|
+
exports.CommonProvider = _chunk5ODPC3YXjs.CommonProvider; exports.CompanyProvider = _chunk5ODPC3YXjs.CompanyProvider; exports.CurrentUserProvider = _chunk5ODPC3YXjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunk5ODPC3YXjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunk5ODPC3YXjs.HeaderChildrenProvider; exports.NotificationContextProvider = _chunk5ODPC3YXjs.NotificationContextProvider; exports.OnboardingProvider = _chunk5ODPC3YXjs.OnboardingProvider; exports.RoleProvider = _chunk5ODPC3YXjs.RoleProvider; exports.SharedProvider = _chunk5ODPC3YXjs.SharedProvider; exports.SocketContext = _chunk5ODPC3YXjs.SocketContext; exports.SocketProvider = _chunk5ODPC3YXjs.SocketProvider; exports.UserProvider = _chunk5ODPC3YXjs.UserProvider; exports.recentPagesAtom = _chunk5ODPC3YXjs.recentPagesAtom; exports.useCommonContext = _chunk5ODPC3YXjs.useCommonContext; exports.useCompanyContext = _chunk5ODPC3YXjs.useCompanyContext; exports.useCurrentUserContext = _chunk5ODPC3YXjs.useCurrentUserContext; exports.useHeaderChildren = _chunk5ODPC3YXjs.useHeaderChildren; exports.useNotificationContext = _chunk5ODPC3YXjs.useNotificationContext; exports.useOnboarding = _chunk5ODPC3YXjs.useOnboarding; exports.useRoleContext = _chunk5ODPC3YXjs.useRoleContext; exports.useSharedContext = _chunk5ODPC3YXjs.useSharedContext; exports.useSocketContext = _chunk5ODPC3YXjs.useSocketContext; exports.useUserContext = _chunk5ODPC3YXjs.useUserContext;
|
|
59
59
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -23,9 +23,9 @@ import {
|
|
|
23
23
|
useSharedContext,
|
|
24
24
|
useSocketContext,
|
|
25
25
|
useUserContext
|
|
26
|
-
} from "../chunk-
|
|
27
|
-
import "../chunk-
|
|
28
|
-
import "../chunk-
|
|
26
|
+
} from "../chunk-OLNMWVOV.mjs";
|
|
27
|
+
import "../chunk-5KMKI23S.mjs";
|
|
28
|
+
import "../chunk-G7PGWMFO.mjs";
|
|
29
29
|
import "../chunk-AUXK7QSA.mjs";
|
|
30
30
|
import "../chunk-C7C7VY4F.mjs";
|
|
31
31
|
import "../chunk-BTKJFMFL.mjs";
|
package/dist/core/index.d.mts
CHANGED
|
@@ -260,6 +260,7 @@ interface FoundationModuleDefinitions {
|
|
|
260
260
|
BackupCodeVerify: ModuleWithPermissions;
|
|
261
261
|
PermissionMapping: ModuleWithPermissions;
|
|
262
262
|
ModulePaths: ModuleWithPermissions;
|
|
263
|
+
AuditLog: ModuleWithPermissions;
|
|
263
264
|
}
|
|
264
265
|
interface AppModuleDefinitions {
|
|
265
266
|
}
|
|
@@ -2029,4 +2030,46 @@ declare const ReferralModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
|
2029
2030
|
|
|
2030
2031
|
declare const ReferralStatsModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2031
2032
|
|
|
2032
|
-
|
|
2033
|
+
interface AuditLogInterface extends ApiDataInterface {
|
|
2034
|
+
get kind(): "audit" | "comment";
|
|
2035
|
+
get action(): string | undefined;
|
|
2036
|
+
get fieldName(): string | undefined;
|
|
2037
|
+
get oldValue(): string | undefined;
|
|
2038
|
+
get newValue(): string | undefined;
|
|
2039
|
+
get content(): string | undefined;
|
|
2040
|
+
get annotationId(): string | undefined;
|
|
2041
|
+
get user(): UserInterface | undefined;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
declare class AuditLog extends AbstractApiData implements AuditLogInterface {
|
|
2045
|
+
private _kind;
|
|
2046
|
+
private _action?;
|
|
2047
|
+
private _fieldName?;
|
|
2048
|
+
private _oldValue?;
|
|
2049
|
+
private _newValue?;
|
|
2050
|
+
private _content?;
|
|
2051
|
+
private _annotationId?;
|
|
2052
|
+
private _user?;
|
|
2053
|
+
get kind(): "audit" | "comment";
|
|
2054
|
+
get action(): string | undefined;
|
|
2055
|
+
get fieldName(): string | undefined;
|
|
2056
|
+
get oldValue(): string | undefined;
|
|
2057
|
+
get newValue(): string | undefined;
|
|
2058
|
+
get content(): string | undefined;
|
|
2059
|
+
get annotationId(): string | undefined;
|
|
2060
|
+
get user(): UserInterface | undefined;
|
|
2061
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
2062
|
+
createJsonApi(): any;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
declare class AuditLogService extends AbstractService {
|
|
2066
|
+
static findActivityByEntity(params: {
|
|
2067
|
+
entityType: string;
|
|
2068
|
+
entityId: string;
|
|
2069
|
+
next?: NextRef;
|
|
2070
|
+
}): Promise<AuditLogInterface[]>;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2074
|
+
|
|
2075
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
|
package/dist/core/index.d.ts
CHANGED
|
@@ -260,6 +260,7 @@ interface FoundationModuleDefinitions {
|
|
|
260
260
|
BackupCodeVerify: ModuleWithPermissions;
|
|
261
261
|
PermissionMapping: ModuleWithPermissions;
|
|
262
262
|
ModulePaths: ModuleWithPermissions;
|
|
263
|
+
AuditLog: ModuleWithPermissions;
|
|
263
264
|
}
|
|
264
265
|
interface AppModuleDefinitions {
|
|
265
266
|
}
|
|
@@ -2029,4 +2030,46 @@ declare const ReferralModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
|
2029
2030
|
|
|
2030
2031
|
declare const ReferralStatsModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2031
2032
|
|
|
2032
|
-
|
|
2033
|
+
interface AuditLogInterface extends ApiDataInterface {
|
|
2034
|
+
get kind(): "audit" | "comment";
|
|
2035
|
+
get action(): string | undefined;
|
|
2036
|
+
get fieldName(): string | undefined;
|
|
2037
|
+
get oldValue(): string | undefined;
|
|
2038
|
+
get newValue(): string | undefined;
|
|
2039
|
+
get content(): string | undefined;
|
|
2040
|
+
get annotationId(): string | undefined;
|
|
2041
|
+
get user(): UserInterface | undefined;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
declare class AuditLog extends AbstractApiData implements AuditLogInterface {
|
|
2045
|
+
private _kind;
|
|
2046
|
+
private _action?;
|
|
2047
|
+
private _fieldName?;
|
|
2048
|
+
private _oldValue?;
|
|
2049
|
+
private _newValue?;
|
|
2050
|
+
private _content?;
|
|
2051
|
+
private _annotationId?;
|
|
2052
|
+
private _user?;
|
|
2053
|
+
get kind(): "audit" | "comment";
|
|
2054
|
+
get action(): string | undefined;
|
|
2055
|
+
get fieldName(): string | undefined;
|
|
2056
|
+
get oldValue(): string | undefined;
|
|
2057
|
+
get newValue(): string | undefined;
|
|
2058
|
+
get content(): string | undefined;
|
|
2059
|
+
get annotationId(): string | undefined;
|
|
2060
|
+
get user(): UserInterface | undefined;
|
|
2061
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
2062
|
+
createJsonApi(): any;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
declare class AuditLogService extends AbstractService {
|
|
2066
|
+
static findActivityByEntity(params: {
|
|
2067
|
+
entityType: string;
|
|
2068
|
+
entityId: string;
|
|
2069
|
+
next?: NextRef;
|
|
2070
|
+
}): Promise<AuditLogInterface[]>;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2074
|
+
|
|
2075
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
|
package/dist/core/index.js
CHANGED
|
@@ -156,7 +156,10 @@
|
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
|
|
159
|
-
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
var _chunkLRXJT656js = require('../chunk-LRXJT656.js');
|
|
160
163
|
require('../chunk-LXKSUWAV.js');
|
|
161
164
|
require('../chunk-IBS6NI7D.js');
|
|
162
165
|
|
|
@@ -339,5 +342,8 @@ require('../chunk-7QVYU63E.js');
|
|
|
339
342
|
|
|
340
343
|
|
|
341
344
|
|
|
342
|
-
exports.AVAILABLE_OAUTH_SCOPES = _chunkNAST4OSMjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkNAST4OSMjs.AbstractApiData; exports.AbstractService = _chunkNAST4OSMjs.AbstractService; exports.Action = _chunkNAST4OSMjs.Action; exports.Auth = _chunkNAST4OSMjs.Auth; exports.AuthComponent = _chunkNAST4OSMjs.AuthComponent; exports.AuthModule = _chunkNAST4OSMjs.AuthModule; exports.AuthService = _chunkNAST4OSMjs.AuthService; exports.AuthorModule = _chunkNAST4OSMjs.AuthorModule; exports.BackupCodeVerify = _chunkNAST4OSMjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkNAST4OSMjs.BackupCodeVerifyModule; exports.Billing = _chunkNAST4OSMjs.Billing; exports.BillingModule = _chunkNAST4OSMjs.BillingModule; exports.BillingService = _chunkNAST4OSMjs.BillingService; exports.BlockNoteDiffUtil = _chunkNAST4OSMjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkNAST4OSMjs.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunkNAST4OSMjs.ClientAbstractService; exports.ClientHttpMethod = _chunkNAST4OSMjs.ClientHttpMethod; exports.Company = _chunkNAST4OSMjs.Company; exports.CompanyFields = _chunkNAST4OSMjs.CompanyFields; exports.CompanyModule = _chunkNAST4OSMjs.CompanyModule; exports.CompanyService = _chunkNAST4OSMjs.CompanyService; exports.Content = _chunkNAST4OSMjs.Content; exports.ContentFields = _chunkNAST4OSMjs.ContentFields; exports.ContentModule = _chunkNAST4OSMjs.ContentModule; exports.ContentService = _chunkNAST4OSMjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkNAST4OSMjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkNAST4OSMjs.EndpointCreator; exports.Feature = _chunkNAST4OSMjs.Feature; exports.FeatureModule = _chunkNAST4OSMjs.FeatureModule; exports.FeatureService = _chunkNAST4OSMjs.FeatureService; exports.HttpMethod = _chunkNAST4OSMjs.HttpMethod; exports.InvoiceStatus = _chunkNAST4OSMjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkNAST4OSMjs.Module; exports.ModuleModule = _chunkNAST4OSMjs.ModuleModule; exports.ModulePathsModule = _chunkNAST4OSMjs.ModulePathsModule; exports.ModuleRegistrar = _chunkNAST4OSMjs.ModuleRegistrar; exports.ModuleRegistry = _chunkNAST4OSMjs.ModuleRegistry; exports.Modules = _chunkNAST4OSMjs.Modules; exports.Notification = _chunkNAST4OSMjs.Notification; exports.NotificationFields = _chunkNAST4OSMjs.NotificationFields; exports.NotificationModule = _chunkNAST4OSMjs.NotificationModule; exports.NotificationService = _chunkNAST4OSMjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkNAST4OSMjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkNAST4OSMjs.OAuthClient; exports.OAuthModule = _chunkNAST4OSMjs.OAuthModule; exports.OAuthService = _chunkNAST4OSMjs.OAuthService; exports.Passkey = _chunkNAST4OSMjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkNAST4OSMjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkNAST4OSMjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkNAST4OSMjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkNAST4OSMjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkNAST4OSMjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkNAST4OSMjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkNAST4OSMjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkNAST4OSMjs.PasskeyRename; exports.PasskeyRenameModule = _chunkNAST4OSMjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkNAST4OSMjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkNAST4OSMjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkNAST4OSMjs.PaymentMethod; exports.PermissionMappingModule = _chunkNAST4OSMjs.PermissionMappingModule; exports.Push = _chunkNAST4OSMjs.Push; exports.PushModule = _chunkNAST4OSMjs.PushModule; exports.PushService = _chunkNAST4OSMjs.PushService; exports.ReferralModule = _chunkNAST4OSMjs.ReferralModule; exports.ReferralService = _chunkNAST4OSMjs.ReferralService; exports.ReferralStats = _chunkNAST4OSMjs.ReferralStats; exports.ReferralStatsModule = _chunkNAST4OSMjs.ReferralStatsModule; exports.RehydrationFactory = _chunkNAST4OSMjs.RehydrationFactory; exports.Role = _chunkNAST4OSMjs.Role; exports.RoleFields = _chunkNAST4OSMjs.RoleFields; exports.RoleModule = _chunkNAST4OSMjs.RoleModule; exports.RoleService = _chunkNAST4OSMjs.RoleService; exports.S3 = _chunkNAST4OSMjs.S3; exports.S3Module = _chunkNAST4OSMjs.S3Module; exports.S3Service = _chunkNAST4OSMjs.S3Service; exports.StripeCustomer = _chunkNAST4OSMjs.StripeCustomer; exports.StripeCustomerModule = _chunkNAST4OSMjs.StripeCustomerModule; exports.StripeCustomerService = _chunkNAST4OSMjs.StripeCustomerService; exports.StripeInvoice = _chunkNAST4OSMjs.StripeInvoice; exports.StripeInvoiceModule = _chunkNAST4OSMjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkNAST4OSMjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkNAST4OSMjs.StripePaymentMethodModule; exports.StripePrice = _chunkNAST4OSMjs.StripePrice; exports.StripePriceModule = _chunkNAST4OSMjs.StripePriceModule; exports.StripePriceService = _chunkNAST4OSMjs.StripePriceService; exports.StripeProduct = _chunkNAST4OSMjs.StripeProduct; exports.StripeProductModule = _chunkNAST4OSMjs.StripeProductModule; exports.StripeProductService = _chunkNAST4OSMjs.StripeProductService; exports.StripePromotionCode = _chunkNAST4OSMjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkNAST4OSMjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkNAST4OSMjs.StripePromotionCodeService; exports.StripeSubscription = _chunkNAST4OSMjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkNAST4OSMjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkNAST4OSMjs.StripeSubscriptionService; exports.StripeUsage = _chunkNAST4OSMjs.StripeUsage; exports.StripeUsageModule = _chunkNAST4OSMjs.StripeUsageModule; exports.StripeUsageService = _chunkNAST4OSMjs.StripeUsageService; exports.SubscriptionStatus = _chunkNAST4OSMjs.SubscriptionStatus; exports.TableOptions = _chunkNAST4OSMjs.TableOptions; exports.TotpAuthenticator = _chunkNAST4OSMjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkNAST4OSMjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkNAST4OSMjs.TotpSetup; exports.TotpSetupModule = _chunkNAST4OSMjs.TotpSetupModule; exports.TotpVerify = _chunkNAST4OSMjs.TotpVerify; exports.TotpVerifyLogin = _chunkNAST4OSMjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkNAST4OSMjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkNAST4OSMjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkNAST4OSMjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkNAST4OSMjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkNAST4OSMjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkNAST4OSMjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkNAST4OSMjs.TwoFactorService; exports.TwoFactorStatus = _chunkNAST4OSMjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkNAST4OSMjs.TwoFactorStatusModule; exports.User = _chunkNAST4OSMjs.User; exports.UserFields = _chunkNAST4OSMjs.UserFields; exports.UserModule = _chunkNAST4OSMjs.UserModule; exports.UserService = _chunkNAST4OSMjs.UserService; exports.Waitlist = _chunkNAST4OSMjs.Waitlist; exports.WaitlistModule = _chunkNAST4OSMjs.WaitlistModule; exports.WaitlistService = _chunkNAST4OSMjs.WaitlistService; exports.WaitlistStats = _chunkNAST4OSMjs.WaitlistStats; exports.WaitlistStatsModule = _chunkNAST4OSMjs.WaitlistStatsModule; exports.checkPermissions = _chunkNAST4OSMjs.checkPermissions; exports.checkPermissionsFromServer = _chunkNAST4OSMjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkNAST4OSMjs.clearLastApiTotal; exports.cn = _chunkNAST4OSMjs.cn; exports.composeRefs = _chunkNAST4OSMjs.composeRefs; exports.createJsonApiInclusion = _chunkNAST4OSMjs.createJsonApiInclusion; exports.dismissToast = _chunkNAST4OSMjs.dismissToast; exports.entityObjectSchema = _chunkNAST4OSMjs.entityObjectSchema; exports.exists = _chunkNAST4OSMjs.exists; exports.formatDate = _chunkNAST4OSMjs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkNAST4OSMjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkNAST4OSMjs.getGlobalErrorHandler; exports.getIcon = _chunkNAST4OSMjs.getIcon; exports.getIconByModule = _chunkNAST4OSMjs.getIconByModule; exports.getIconByModuleName = _chunkNAST4OSMjs.getIconByModuleName; exports.getInitials = _chunkNAST4OSMjs.getInitials; exports.getLastApiTotal = _chunkNAST4OSMjs.getLastApiTotal; exports.getLucideIcon = _chunkNAST4OSMjs.getLucideIcon; exports.getLucideIconByModule = _chunkNAST4OSMjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkNAST4OSMjs.getLucideIconByModuleName; exports.getTableComponents = _chunkNAST4OSMjs.getTableComponents; exports.getTableOptions = _chunkNAST4OSMjs.getTableOptions; exports.getValueFromPath = _chunkNAST4OSMjs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunkNAST4OSMjs.rehydrate; exports.rehydrateList = _chunkNAST4OSMjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkNAST4OSMjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkNAST4OSMjs.setGlobalErrorHandler; exports.showCustomToast = _chunkNAST4OSMjs.showCustomToast; exports.showError = _chunkNAST4OSMjs.showError; exports.showToast = _chunkNAST4OSMjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkNAST4OSMjs.useComposedRefs; exports.useIsMobile = _chunkNAST4OSMjs.useIsMobile; exports.userObjectSchema = _chunkNAST4OSMjs.userObjectSchema;
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
exports.AVAILABLE_OAUTH_SCOPES = _chunkLRXJT656js.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkLRXJT656js.AbstractApiData; exports.AbstractService = _chunkLRXJT656js.AbstractService; exports.Action = _chunkLRXJT656js.Action; exports.AuditLog = _chunkLRXJT656js.AuditLog; exports.AuditLogModule = _chunkLRXJT656js.AuditLogModule; exports.AuditLogService = _chunkLRXJT656js.AuditLogService; exports.Auth = _chunkLRXJT656js.Auth; exports.AuthComponent = _chunkLRXJT656js.AuthComponent; exports.AuthModule = _chunkLRXJT656js.AuthModule; exports.AuthService = _chunkLRXJT656js.AuthService; exports.AuthorModule = _chunkLRXJT656js.AuthorModule; exports.BackupCodeVerify = _chunkLRXJT656js.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkLRXJT656js.BackupCodeVerifyModule; exports.Billing = _chunkLRXJT656js.Billing; exports.BillingModule = _chunkLRXJT656js.BillingModule; exports.BillingService = _chunkLRXJT656js.BillingService; exports.BlockNoteDiffUtil = _chunkLRXJT656js.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkLRXJT656js.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunkLRXJT656js.ClientAbstractService; exports.ClientHttpMethod = _chunkLRXJT656js.ClientHttpMethod; exports.Company = _chunkLRXJT656js.Company; exports.CompanyFields = _chunkLRXJT656js.CompanyFields; exports.CompanyModule = _chunkLRXJT656js.CompanyModule; exports.CompanyService = _chunkLRXJT656js.CompanyService; exports.Content = _chunkLRXJT656js.Content; exports.ContentFields = _chunkLRXJT656js.ContentFields; exports.ContentModule = _chunkLRXJT656js.ContentModule; exports.ContentService = _chunkLRXJT656js.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkLRXJT656js.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkLRXJT656js.EndpointCreator; exports.Feature = _chunkLRXJT656js.Feature; exports.FeatureModule = _chunkLRXJT656js.FeatureModule; exports.FeatureService = _chunkLRXJT656js.FeatureService; exports.HttpMethod = _chunkLRXJT656js.HttpMethod; exports.InvoiceStatus = _chunkLRXJT656js.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkLRXJT656js.Module; exports.ModuleModule = _chunkLRXJT656js.ModuleModule; exports.ModulePathsModule = _chunkLRXJT656js.ModulePathsModule; exports.ModuleRegistrar = _chunkLRXJT656js.ModuleRegistrar; exports.ModuleRegistry = _chunkLRXJT656js.ModuleRegistry; exports.Modules = _chunkLRXJT656js.Modules; exports.Notification = _chunkLRXJT656js.Notification; exports.NotificationFields = _chunkLRXJT656js.NotificationFields; exports.NotificationModule = _chunkLRXJT656js.NotificationModule; exports.NotificationService = _chunkLRXJT656js.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkLRXJT656js.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkLRXJT656js.OAuthClient; exports.OAuthModule = _chunkLRXJT656js.OAuthModule; exports.OAuthService = _chunkLRXJT656js.OAuthService; exports.Passkey = _chunkLRXJT656js.Passkey; exports.PasskeyAuthenticationOptions = _chunkLRXJT656js.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkLRXJT656js.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkLRXJT656js.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkLRXJT656js.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkLRXJT656js.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkLRXJT656js.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkLRXJT656js.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkLRXJT656js.PasskeyRename; exports.PasskeyRenameModule = _chunkLRXJT656js.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkLRXJT656js.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkLRXJT656js.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkLRXJT656js.PaymentMethod; exports.PermissionMappingModule = _chunkLRXJT656js.PermissionMappingModule; exports.Push = _chunkLRXJT656js.Push; exports.PushModule = _chunkLRXJT656js.PushModule; exports.PushService = _chunkLRXJT656js.PushService; exports.ReferralModule = _chunkLRXJT656js.ReferralModule; exports.ReferralService = _chunkLRXJT656js.ReferralService; exports.ReferralStats = _chunkLRXJT656js.ReferralStats; exports.ReferralStatsModule = _chunkLRXJT656js.ReferralStatsModule; exports.RehydrationFactory = _chunkLRXJT656js.RehydrationFactory; exports.Role = _chunkLRXJT656js.Role; exports.RoleFields = _chunkLRXJT656js.RoleFields; exports.RoleModule = _chunkLRXJT656js.RoleModule; exports.RoleService = _chunkLRXJT656js.RoleService; exports.S3 = _chunkLRXJT656js.S3; exports.S3Module = _chunkLRXJT656js.S3Module; exports.S3Service = _chunkLRXJT656js.S3Service; exports.StripeCustomer = _chunkLRXJT656js.StripeCustomer; exports.StripeCustomerModule = _chunkLRXJT656js.StripeCustomerModule; exports.StripeCustomerService = _chunkLRXJT656js.StripeCustomerService; exports.StripeInvoice = _chunkLRXJT656js.StripeInvoice; exports.StripeInvoiceModule = _chunkLRXJT656js.StripeInvoiceModule; exports.StripeInvoiceService = _chunkLRXJT656js.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkLRXJT656js.StripePaymentMethodModule; exports.StripePrice = _chunkLRXJT656js.StripePrice; exports.StripePriceModule = _chunkLRXJT656js.StripePriceModule; exports.StripePriceService = _chunkLRXJT656js.StripePriceService; exports.StripeProduct = _chunkLRXJT656js.StripeProduct; exports.StripeProductModule = _chunkLRXJT656js.StripeProductModule; exports.StripeProductService = _chunkLRXJT656js.StripeProductService; exports.StripePromotionCode = _chunkLRXJT656js.StripePromotionCode; exports.StripePromotionCodeModule = _chunkLRXJT656js.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkLRXJT656js.StripePromotionCodeService; exports.StripeSubscription = _chunkLRXJT656js.StripeSubscription; exports.StripeSubscriptionModule = _chunkLRXJT656js.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkLRXJT656js.StripeSubscriptionService; exports.StripeUsage = _chunkLRXJT656js.StripeUsage; exports.StripeUsageModule = _chunkLRXJT656js.StripeUsageModule; exports.StripeUsageService = _chunkLRXJT656js.StripeUsageService; exports.SubscriptionStatus = _chunkLRXJT656js.SubscriptionStatus; exports.TableOptions = _chunkLRXJT656js.TableOptions; exports.TotpAuthenticator = _chunkLRXJT656js.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkLRXJT656js.TotpAuthenticatorModule; exports.TotpSetup = _chunkLRXJT656js.TotpSetup; exports.TotpSetupModule = _chunkLRXJT656js.TotpSetupModule; exports.TotpVerify = _chunkLRXJT656js.TotpVerify; exports.TotpVerifyLogin = _chunkLRXJT656js.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkLRXJT656js.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkLRXJT656js.TotpVerifyModule; exports.TwoFactorChallenge = _chunkLRXJT656js.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkLRXJT656js.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkLRXJT656js.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkLRXJT656js.TwoFactorEnableModule; exports.TwoFactorService = _chunkLRXJT656js.TwoFactorService; exports.TwoFactorStatus = _chunkLRXJT656js.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkLRXJT656js.TwoFactorStatusModule; exports.User = _chunkLRXJT656js.User; exports.UserFields = _chunkLRXJT656js.UserFields; exports.UserModule = _chunkLRXJT656js.UserModule; exports.UserService = _chunkLRXJT656js.UserService; exports.Waitlist = _chunkLRXJT656js.Waitlist; exports.WaitlistModule = _chunkLRXJT656js.WaitlistModule; exports.WaitlistService = _chunkLRXJT656js.WaitlistService; exports.WaitlistStats = _chunkLRXJT656js.WaitlistStats; exports.WaitlistStatsModule = _chunkLRXJT656js.WaitlistStatsModule; exports.checkPermissions = _chunkLRXJT656js.checkPermissions; exports.checkPermissionsFromServer = _chunkLRXJT656js.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkLRXJT656js.clearLastApiTotal; exports.cn = _chunkLRXJT656js.cn; exports.composeRefs = _chunkLRXJT656js.composeRefs; exports.createJsonApiInclusion = _chunkLRXJT656js.createJsonApiInclusion; exports.dismissToast = _chunkLRXJT656js.dismissToast; exports.entityObjectSchema = _chunkLRXJT656js.entityObjectSchema; exports.exists = _chunkLRXJT656js.exists; exports.formatDate = _chunkLRXJT656js.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkLRXJT656js.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkLRXJT656js.getGlobalErrorHandler; exports.getIcon = _chunkLRXJT656js.getIcon; exports.getIconByModule = _chunkLRXJT656js.getIconByModule; exports.getIconByModuleName = _chunkLRXJT656js.getIconByModuleName; exports.getInitials = _chunkLRXJT656js.getInitials; exports.getLastApiTotal = _chunkLRXJT656js.getLastApiTotal; exports.getLucideIcon = _chunkLRXJT656js.getLucideIcon; exports.getLucideIconByModule = _chunkLRXJT656js.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkLRXJT656js.getLucideIconByModuleName; exports.getTableComponents = _chunkLRXJT656js.getTableComponents; exports.getTableOptions = _chunkLRXJT656js.getTableOptions; exports.getValueFromPath = _chunkLRXJT656js.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunkLRXJT656js.rehydrate; exports.rehydrateList = _chunkLRXJT656js.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkLRXJT656js.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkLRXJT656js.setGlobalErrorHandler; exports.showCustomToast = _chunkLRXJT656js.showCustomToast; exports.showError = _chunkLRXJT656js.showError; exports.showToast = _chunkLRXJT656js.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkLRXJT656js.useComposedRefs; exports.useIsMobile = _chunkLRXJT656js.useIsMobile; exports.userObjectSchema = _chunkLRXJT656js.userObjectSchema;
|
|
343
349
|
//# sourceMappingURL=index.js.map
|
package/dist/core/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,qkUAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
|
package/dist/core/index.mjs
CHANGED
|
@@ -3,6 +3,9 @@ import {
|
|
|
3
3
|
AbstractApiData,
|
|
4
4
|
AbstractService,
|
|
5
5
|
Action,
|
|
6
|
+
AuditLog,
|
|
7
|
+
AuditLogModule,
|
|
8
|
+
AuditLogService,
|
|
6
9
|
Auth,
|
|
7
10
|
AuthComponent,
|
|
8
11
|
AuthModule,
|
|
@@ -156,7 +159,7 @@ import {
|
|
|
156
159
|
useComposedRefs,
|
|
157
160
|
useIsMobile,
|
|
158
161
|
userObjectSchema
|
|
159
|
-
} from "../chunk-
|
|
162
|
+
} from "../chunk-G7PGWMFO.mjs";
|
|
160
163
|
import "../chunk-AUXK7QSA.mjs";
|
|
161
164
|
import "../chunk-C7C7VY4F.mjs";
|
|
162
165
|
import {
|
|
@@ -176,6 +179,9 @@ export {
|
|
|
176
179
|
AbstractApiData,
|
|
177
180
|
AbstractService,
|
|
178
181
|
Action,
|
|
182
|
+
AuditLog,
|
|
183
|
+
AuditLogModule,
|
|
184
|
+
AuditLogService,
|
|
179
185
|
Auth,
|
|
180
186
|
AuthComponent,
|
|
181
187
|
AuthModule,
|
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ export { A as ApiDataInterface } from './ApiDataInterface-DPP8s46n.mjs';
|
|
|
4
4
|
export { A as ApiRequestDataTypeInterface, F as FieldSelector, G as GetterKeys, c as createJsonApiInclusion } from './ApiRequestDataTypeInterface-CYEcRUrh.mjs';
|
|
5
5
|
export { A as ApiResponseInterface } from './ApiResponseInterface-zeewugD7.mjs';
|
|
6
6
|
import { AbstractApiData } from './core/index.mjs';
|
|
7
|
-
export { AppModuleDefinitions, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.mjs';
|
|
7
|
+
export { AppModuleDefinitions, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.mjs';
|
|
8
8
|
import { b as AbstractService } from './s3.service-BoRPFx82.mjs';
|
|
9
9
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-BoRPFx82.mjs';
|
|
10
10
|
export { B as BreadcrumbItemData } from './breadcrumb.item.data.interface-CgB4_1EE.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export { A as ApiDataInterface } from './ApiDataInterface-DPP8s46n.js';
|
|
|
4
4
|
export { A as ApiRequestDataTypeInterface, F as FieldSelector, G as GetterKeys, c as createJsonApiInclusion } from './ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
5
5
|
export { A as ApiResponseInterface } from './ApiResponseInterface-CAIAeP5d.js';
|
|
6
6
|
import { AbstractApiData } from './core/index.js';
|
|
7
|
-
export { AppModuleDefinitions, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.js';
|
|
7
|
+
export { AppModuleDefinitions, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, InviteValidation, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, PasskeyAuthenticationOptionsInput, PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyModule, PasskeyRegistrationOptions, PasskeyRegistrationOptionsInput, PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PermissionMappingModule, Push, PushInput, PushInterface, PushModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, ToastOptions, TotpAuthenticator, TotpAuthenticatorModule, TotpSetup, TotpSetupInput, TotpSetupInterface, TotpSetupModule, TotpVerify, TotpVerifyInput, TotpVerifyLogin, TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, TwoFactorChallengeInput, TwoFactorChallengeModule, TwoFactorEnable, TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, TwoFactorStatusInterface, TwoFactorStatusModule, User, UserModule, UserObject, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.js';
|
|
8
8
|
import { b as AbstractService } from './s3.service-ppn9iGJU.js';
|
|
9
9
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-ppn9iGJU.js';
|
|
10
10
|
export { B as BreadcrumbItemData } from './breadcrumb.item.data.interface-CgB4_1EE.js';
|
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkRA4RYKYBjs = require('./chunk-RA4RYKYB.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -180,7 +180,10 @@ var _chunkBQSMP4NUjs = require('./chunk-BQSMP4NU.js');
|
|
|
180
180
|
|
|
181
181
|
|
|
182
182
|
|
|
183
|
-
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
var _chunkLRXJT656js = require('./chunk-LRXJT656.js');
|
|
184
187
|
require('./chunk-LXKSUWAV.js');
|
|
185
188
|
require('./chunk-IBS6NI7D.js');
|
|
186
189
|
|
|
@@ -385,5 +388,8 @@ require('./chunk-7QVYU63E.js');
|
|
|
385
388
|
|
|
386
389
|
|
|
387
390
|
|
|
388
|
-
exports.ACTION_TYPES = _chunkBQSMP4NUjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkNAST4OSMjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkNAST4OSMjs.AbstractApiData; exports.AbstractService = _chunkNAST4OSMjs.AbstractService; exports.Action = _chunkNAST4OSMjs.Action; exports.Auth = _chunkNAST4OSMjs.Auth; exports.AuthComponent = _chunkNAST4OSMjs.AuthComponent; exports.AuthModule = _chunkNAST4OSMjs.AuthModule; exports.AuthService = _chunkNAST4OSMjs.AuthService; exports.AuthorModule = _chunkNAST4OSMjs.AuthorModule; exports.BackupCodeVerify = _chunkNAST4OSMjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkNAST4OSMjs.BackupCodeVerifyModule; exports.Billing = _chunkNAST4OSMjs.Billing; exports.BillingModule = _chunkNAST4OSMjs.BillingModule; exports.BillingService = _chunkNAST4OSMjs.BillingService; exports.BlockNoteDiffUtil = _chunkNAST4OSMjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkNAST4OSMjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkBQSMP4NUjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.ClientAbstractService = _chunkNAST4OSMjs.ClientAbstractService; exports.ClientHttpMethod = _chunkNAST4OSMjs.ClientHttpMethod; exports.Company = _chunkNAST4OSMjs.Company; exports.CompanyFields = _chunkNAST4OSMjs.CompanyFields; exports.CompanyModule = _chunkNAST4OSMjs.CompanyModule; exports.CompanyService = _chunkNAST4OSMjs.CompanyService; exports.Content = _chunkNAST4OSMjs.Content; exports.ContentFields = _chunkNAST4OSMjs.ContentFields; exports.ContentModule = _chunkNAST4OSMjs.ContentModule; exports.ContentService = _chunkNAST4OSMjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkNAST4OSMjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkNAST4OSMjs.EndpointCreator; exports.Feature = _chunkNAST4OSMjs.Feature; exports.FeatureModule = _chunkNAST4OSMjs.FeatureModule; exports.FeatureService = _chunkNAST4OSMjs.FeatureService; exports.HttpMethod = _chunkNAST4OSMjs.HttpMethod; exports.InvoiceStatus = _chunkNAST4OSMjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkNAST4OSMjs.Module; exports.ModuleModule = _chunkNAST4OSMjs.ModuleModule; exports.ModulePaths = _chunkNAST4OSMjs.ModulePaths; exports.ModulePathsModule = _chunkNAST4OSMjs.ModulePathsModule; exports.ModuleRegistrar = _chunkNAST4OSMjs.ModuleRegistrar; exports.ModuleRegistry = _chunkNAST4OSMjs.ModuleRegistry; exports.Modules = _chunkNAST4OSMjs.Modules; exports.Notification = _chunkNAST4OSMjs.Notification; exports.NotificationFields = _chunkNAST4OSMjs.NotificationFields; exports.NotificationModule = _chunkNAST4OSMjs.NotificationModule; exports.NotificationService = _chunkNAST4OSMjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkNAST4OSMjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkNAST4OSMjs.OAuthClient; exports.OAuthModule = _chunkNAST4OSMjs.OAuthModule; exports.OAuthService = _chunkNAST4OSMjs.OAuthService; exports.Passkey = _chunkNAST4OSMjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkNAST4OSMjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkNAST4OSMjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkNAST4OSMjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkNAST4OSMjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkNAST4OSMjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkNAST4OSMjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkNAST4OSMjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkNAST4OSMjs.PasskeyRename; exports.PasskeyRenameModule = _chunkNAST4OSMjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkNAST4OSMjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkNAST4OSMjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkNAST4OSMjs.PaymentMethod; exports.PermissionMapping = _chunkNAST4OSMjs.PermissionMapping; exports.PermissionMappingModule = _chunkNAST4OSMjs.PermissionMappingModule; exports.Push = _chunkNAST4OSMjs.Push; exports.PushModule = _chunkNAST4OSMjs.PushModule; exports.PushService = _chunkNAST4OSMjs.PushService; exports.RbacService = _chunkBQSMP4NUjs.RbacService; exports.ReferralModule = _chunkNAST4OSMjs.ReferralModule; exports.ReferralService = _chunkNAST4OSMjs.ReferralService; exports.ReferralStats = _chunkNAST4OSMjs.ReferralStats; exports.ReferralStatsModule = _chunkNAST4OSMjs.ReferralStatsModule; exports.RehydrationFactory = _chunkNAST4OSMjs.RehydrationFactory; exports.Role = _chunkNAST4OSMjs.Role; exports.RoleFields = _chunkNAST4OSMjs.RoleFields; exports.RoleModule = _chunkNAST4OSMjs.RoleModule; exports.RoleService = _chunkNAST4OSMjs.RoleService; exports.S3 = _chunkNAST4OSMjs.S3; exports.S3Module = _chunkNAST4OSMjs.S3Module; exports.S3Service = _chunkNAST4OSMjs.S3Service; exports.StripeCustomer = _chunkNAST4OSMjs.StripeCustomer; exports.StripeCustomerModule = _chunkNAST4OSMjs.StripeCustomerModule; exports.StripeCustomerService = _chunkNAST4OSMjs.StripeCustomerService; exports.StripeInvoice = _chunkNAST4OSMjs.StripeInvoice; exports.StripeInvoiceModule = _chunkNAST4OSMjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkNAST4OSMjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkNAST4OSMjs.StripePaymentMethodModule; exports.StripePrice = _chunkNAST4OSMjs.StripePrice; exports.StripePriceModule = _chunkNAST4OSMjs.StripePriceModule; exports.StripePriceService = _chunkNAST4OSMjs.StripePriceService; exports.StripeProduct = _chunkNAST4OSMjs.StripeProduct; exports.StripeProductModule = _chunkNAST4OSMjs.StripeProductModule; exports.StripeProductService = _chunkNAST4OSMjs.StripeProductService; exports.StripePromotionCode = _chunkNAST4OSMjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkNAST4OSMjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkNAST4OSMjs.StripePromotionCodeService; exports.StripeSubscription = _chunkNAST4OSMjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkNAST4OSMjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkNAST4OSMjs.StripeSubscriptionService; exports.StripeUsage = _chunkNAST4OSMjs.StripeUsage; exports.StripeUsageModule = _chunkNAST4OSMjs.StripeUsageModule; exports.StripeUsageService = _chunkNAST4OSMjs.StripeUsageService; exports.SubscriptionStatus = _chunkNAST4OSMjs.SubscriptionStatus; exports.TableOptions = _chunkNAST4OSMjs.TableOptions; exports.TotpAuthenticator = _chunkNAST4OSMjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkNAST4OSMjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkNAST4OSMjs.TotpSetup; exports.TotpSetupModule = _chunkNAST4OSMjs.TotpSetupModule; exports.TotpVerify = _chunkNAST4OSMjs.TotpVerify; exports.TotpVerifyLogin = _chunkNAST4OSMjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkNAST4OSMjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkNAST4OSMjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkNAST4OSMjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkNAST4OSMjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkNAST4OSMjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkNAST4OSMjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkNAST4OSMjs.TwoFactorService; exports.TwoFactorStatus = _chunkNAST4OSMjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkNAST4OSMjs.TwoFactorStatusModule; exports.User = _chunkNAST4OSMjs.User; exports.UserFields = _chunkNAST4OSMjs.UserFields; exports.UserModule = _chunkNAST4OSMjs.UserModule; exports.UserService = _chunkNAST4OSMjs.UserService; exports.Waitlist = _chunkNAST4OSMjs.Waitlist; exports.WaitlistModule = _chunkNAST4OSMjs.WaitlistModule; exports.WaitlistService = _chunkNAST4OSMjs.WaitlistService; exports.WaitlistStats = _chunkNAST4OSMjs.WaitlistStats; exports.WaitlistStatsModule = _chunkNAST4OSMjs.WaitlistStatsModule; exports.checkPermissions = _chunkNAST4OSMjs.checkPermissions; exports.checkPermissionsFromServer = _chunkNAST4OSMjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkNAST4OSMjs.clearLastApiTotal; exports.cn = _chunkNAST4OSMjs.cn; exports.composeRefs = _chunkNAST4OSMjs.composeRefs; exports.configureAuth = _chunkNAST4OSMjs.configureAuth; exports.configureI18n = _chunkBQSMP4NUjs.configureI18n; exports.configureJsonApi = _chunkBQSMP4NUjs.configureJsonApi; exports.configureLogin = _chunkBQSMP4NUjs.configureLogin; exports.configureReferral = _chunkBQSMP4NUjs.configureReferral; exports.configureRoles = _chunkBQSMP4NUjs.configureRoles; exports.configureWaitlist = _chunkBQSMP4NUjs.configureWaitlist; exports.createJsonApiInclusion = _chunkNAST4OSMjs.createJsonApiInclusion; exports.dismissToast = _chunkNAST4OSMjs.dismissToast; exports.entityObjectSchema = _chunkNAST4OSMjs.entityObjectSchema; exports.exists = _chunkNAST4OSMjs.exists; exports.formatDate = _chunkNAST4OSMjs.formatDate; exports.getApiUrl = _chunkBQSMP4NUjs.getApiUrl; exports.getAppUrl = _chunkBQSMP4NUjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkNAST4OSMjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkNAST4OSMjs.getGlobalErrorHandler; exports.getIcon = _chunkNAST4OSMjs.getIcon; exports.getIconByModule = _chunkNAST4OSMjs.getIconByModule; exports.getIconByModuleName = _chunkNAST4OSMjs.getIconByModuleName; exports.getInitials = _chunkNAST4OSMjs.getInitials; exports.getLastApiTotal = _chunkNAST4OSMjs.getLastApiTotal; exports.getLucideIcon = _chunkNAST4OSMjs.getLucideIcon; exports.getLucideIconByModule = _chunkNAST4OSMjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkNAST4OSMjs.getLucideIconByModuleName; exports.getReferralConfig = _chunkBQSMP4NUjs.getReferralConfig; exports.getRoleId = _chunkBQSMP4NUjs.getRoleId; exports.getStripePublishableKey = _chunkBQSMP4NUjs.getStripePublishableKey; exports.getTableComponents = _chunkNAST4OSMjs.getTableComponents; exports.getTableOptions = _chunkNAST4OSMjs.getTableOptions; exports.getTokenHandler = _chunkNAST4OSMjs.getTokenHandler; exports.getTrackablePages = _chunkBQSMP4NUjs.getTrackablePages; exports.getValueFromPath = _chunkNAST4OSMjs.getValueFromPath; exports.getWaitlistConfig = _chunkBQSMP4NUjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkBQSMP4NUjs.isReferralEnabled; exports.isRolesConfigured = _chunkBQSMP4NUjs.isRolesConfigured; exports.rehydrate = _chunkNAST4OSMjs.rehydrate; exports.rehydrateList = _chunkNAST4OSMjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkNAST4OSMjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkNAST4OSMjs.setGlobalErrorHandler; exports.showCustomToast = _chunkNAST4OSMjs.showCustomToast; exports.showError = _chunkNAST4OSMjs.showError; exports.showToast = _chunkNAST4OSMjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkNAST4OSMjs.useComposedRefs; exports.useIsMobile = _chunkNAST4OSMjs.useIsMobile; exports.userObjectSchema = _chunkNAST4OSMjs.userObjectSchema;
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
exports.ACTION_TYPES = _chunkRA4RYKYBjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkLRXJT656js.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkLRXJT656js.AbstractApiData; exports.AbstractService = _chunkLRXJT656js.AbstractService; exports.Action = _chunkLRXJT656js.Action; exports.AuditLog = _chunkLRXJT656js.AuditLog; exports.AuditLogModule = _chunkLRXJT656js.AuditLogModule; exports.AuditLogService = _chunkLRXJT656js.AuditLogService; exports.Auth = _chunkLRXJT656js.Auth; exports.AuthComponent = _chunkLRXJT656js.AuthComponent; exports.AuthModule = _chunkLRXJT656js.AuthModule; exports.AuthService = _chunkLRXJT656js.AuthService; exports.AuthorModule = _chunkLRXJT656js.AuthorModule; exports.BackupCodeVerify = _chunkLRXJT656js.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkLRXJT656js.BackupCodeVerifyModule; exports.Billing = _chunkLRXJT656js.Billing; exports.BillingModule = _chunkLRXJT656js.BillingModule; exports.BillingService = _chunkLRXJT656js.BillingService; exports.BlockNoteDiffUtil = _chunkLRXJT656js.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkLRXJT656js.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkRA4RYKYBjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.ClientAbstractService = _chunkLRXJT656js.ClientAbstractService; exports.ClientHttpMethod = _chunkLRXJT656js.ClientHttpMethod; exports.Company = _chunkLRXJT656js.Company; exports.CompanyFields = _chunkLRXJT656js.CompanyFields; exports.CompanyModule = _chunkLRXJT656js.CompanyModule; exports.CompanyService = _chunkLRXJT656js.CompanyService; exports.Content = _chunkLRXJT656js.Content; exports.ContentFields = _chunkLRXJT656js.ContentFields; exports.ContentModule = _chunkLRXJT656js.ContentModule; exports.ContentService = _chunkLRXJT656js.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkLRXJT656js.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkLRXJT656js.EndpointCreator; exports.Feature = _chunkLRXJT656js.Feature; exports.FeatureModule = _chunkLRXJT656js.FeatureModule; exports.FeatureService = _chunkLRXJT656js.FeatureService; exports.HttpMethod = _chunkLRXJT656js.HttpMethod; exports.InvoiceStatus = _chunkLRXJT656js.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkLRXJT656js.Module; exports.ModuleModule = _chunkLRXJT656js.ModuleModule; exports.ModulePaths = _chunkLRXJT656js.ModulePaths; exports.ModulePathsModule = _chunkLRXJT656js.ModulePathsModule; exports.ModuleRegistrar = _chunkLRXJT656js.ModuleRegistrar; exports.ModuleRegistry = _chunkLRXJT656js.ModuleRegistry; exports.Modules = _chunkLRXJT656js.Modules; exports.Notification = _chunkLRXJT656js.Notification; exports.NotificationFields = _chunkLRXJT656js.NotificationFields; exports.NotificationModule = _chunkLRXJT656js.NotificationModule; exports.NotificationService = _chunkLRXJT656js.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkLRXJT656js.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkLRXJT656js.OAuthClient; exports.OAuthModule = _chunkLRXJT656js.OAuthModule; exports.OAuthService = _chunkLRXJT656js.OAuthService; exports.Passkey = _chunkLRXJT656js.Passkey; exports.PasskeyAuthenticationOptions = _chunkLRXJT656js.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkLRXJT656js.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkLRXJT656js.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkLRXJT656js.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkLRXJT656js.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkLRXJT656js.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkLRXJT656js.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkLRXJT656js.PasskeyRename; exports.PasskeyRenameModule = _chunkLRXJT656js.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkLRXJT656js.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkLRXJT656js.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkLRXJT656js.PaymentMethod; exports.PermissionMapping = _chunkLRXJT656js.PermissionMapping; exports.PermissionMappingModule = _chunkLRXJT656js.PermissionMappingModule; exports.Push = _chunkLRXJT656js.Push; exports.PushModule = _chunkLRXJT656js.PushModule; exports.PushService = _chunkLRXJT656js.PushService; exports.RbacService = _chunkRA4RYKYBjs.RbacService; exports.ReferralModule = _chunkLRXJT656js.ReferralModule; exports.ReferralService = _chunkLRXJT656js.ReferralService; exports.ReferralStats = _chunkLRXJT656js.ReferralStats; exports.ReferralStatsModule = _chunkLRXJT656js.ReferralStatsModule; exports.RehydrationFactory = _chunkLRXJT656js.RehydrationFactory; exports.Role = _chunkLRXJT656js.Role; exports.RoleFields = _chunkLRXJT656js.RoleFields; exports.RoleModule = _chunkLRXJT656js.RoleModule; exports.RoleService = _chunkLRXJT656js.RoleService; exports.S3 = _chunkLRXJT656js.S3; exports.S3Module = _chunkLRXJT656js.S3Module; exports.S3Service = _chunkLRXJT656js.S3Service; exports.StripeCustomer = _chunkLRXJT656js.StripeCustomer; exports.StripeCustomerModule = _chunkLRXJT656js.StripeCustomerModule; exports.StripeCustomerService = _chunkLRXJT656js.StripeCustomerService; exports.StripeInvoice = _chunkLRXJT656js.StripeInvoice; exports.StripeInvoiceModule = _chunkLRXJT656js.StripeInvoiceModule; exports.StripeInvoiceService = _chunkLRXJT656js.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkLRXJT656js.StripePaymentMethodModule; exports.StripePrice = _chunkLRXJT656js.StripePrice; exports.StripePriceModule = _chunkLRXJT656js.StripePriceModule; exports.StripePriceService = _chunkLRXJT656js.StripePriceService; exports.StripeProduct = _chunkLRXJT656js.StripeProduct; exports.StripeProductModule = _chunkLRXJT656js.StripeProductModule; exports.StripeProductService = _chunkLRXJT656js.StripeProductService; exports.StripePromotionCode = _chunkLRXJT656js.StripePromotionCode; exports.StripePromotionCodeModule = _chunkLRXJT656js.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkLRXJT656js.StripePromotionCodeService; exports.StripeSubscription = _chunkLRXJT656js.StripeSubscription; exports.StripeSubscriptionModule = _chunkLRXJT656js.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkLRXJT656js.StripeSubscriptionService; exports.StripeUsage = _chunkLRXJT656js.StripeUsage; exports.StripeUsageModule = _chunkLRXJT656js.StripeUsageModule; exports.StripeUsageService = _chunkLRXJT656js.StripeUsageService; exports.SubscriptionStatus = _chunkLRXJT656js.SubscriptionStatus; exports.TableOptions = _chunkLRXJT656js.TableOptions; exports.TotpAuthenticator = _chunkLRXJT656js.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkLRXJT656js.TotpAuthenticatorModule; exports.TotpSetup = _chunkLRXJT656js.TotpSetup; exports.TotpSetupModule = _chunkLRXJT656js.TotpSetupModule; exports.TotpVerify = _chunkLRXJT656js.TotpVerify; exports.TotpVerifyLogin = _chunkLRXJT656js.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkLRXJT656js.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkLRXJT656js.TotpVerifyModule; exports.TwoFactorChallenge = _chunkLRXJT656js.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkLRXJT656js.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkLRXJT656js.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkLRXJT656js.TwoFactorEnableModule; exports.TwoFactorService = _chunkLRXJT656js.TwoFactorService; exports.TwoFactorStatus = _chunkLRXJT656js.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkLRXJT656js.TwoFactorStatusModule; exports.User = _chunkLRXJT656js.User; exports.UserFields = _chunkLRXJT656js.UserFields; exports.UserModule = _chunkLRXJT656js.UserModule; exports.UserService = _chunkLRXJT656js.UserService; exports.Waitlist = _chunkLRXJT656js.Waitlist; exports.WaitlistModule = _chunkLRXJT656js.WaitlistModule; exports.WaitlistService = _chunkLRXJT656js.WaitlistService; exports.WaitlistStats = _chunkLRXJT656js.WaitlistStats; exports.WaitlistStatsModule = _chunkLRXJT656js.WaitlistStatsModule; exports.checkPermissions = _chunkLRXJT656js.checkPermissions; exports.checkPermissionsFromServer = _chunkLRXJT656js.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkLRXJT656js.clearLastApiTotal; exports.cn = _chunkLRXJT656js.cn; exports.composeRefs = _chunkLRXJT656js.composeRefs; exports.configureAuth = _chunkLRXJT656js.configureAuth; exports.configureI18n = _chunkRA4RYKYBjs.configureI18n; exports.configureJsonApi = _chunkRA4RYKYBjs.configureJsonApi; exports.configureLogin = _chunkRA4RYKYBjs.configureLogin; exports.configureReferral = _chunkRA4RYKYBjs.configureReferral; exports.configureRoles = _chunkRA4RYKYBjs.configureRoles; exports.configureWaitlist = _chunkRA4RYKYBjs.configureWaitlist; exports.createJsonApiInclusion = _chunkLRXJT656js.createJsonApiInclusion; exports.dismissToast = _chunkLRXJT656js.dismissToast; exports.entityObjectSchema = _chunkLRXJT656js.entityObjectSchema; exports.exists = _chunkLRXJT656js.exists; exports.formatDate = _chunkLRXJT656js.formatDate; exports.getApiUrl = _chunkRA4RYKYBjs.getApiUrl; exports.getAppUrl = _chunkRA4RYKYBjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkLRXJT656js.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkLRXJT656js.getGlobalErrorHandler; exports.getIcon = _chunkLRXJT656js.getIcon; exports.getIconByModule = _chunkLRXJT656js.getIconByModule; exports.getIconByModuleName = _chunkLRXJT656js.getIconByModuleName; exports.getInitials = _chunkLRXJT656js.getInitials; exports.getLastApiTotal = _chunkLRXJT656js.getLastApiTotal; exports.getLucideIcon = _chunkLRXJT656js.getLucideIcon; exports.getLucideIconByModule = _chunkLRXJT656js.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkLRXJT656js.getLucideIconByModuleName; exports.getReferralConfig = _chunkRA4RYKYBjs.getReferralConfig; exports.getRoleId = _chunkRA4RYKYBjs.getRoleId; exports.getStripePublishableKey = _chunkRA4RYKYBjs.getStripePublishableKey; exports.getTableComponents = _chunkLRXJT656js.getTableComponents; exports.getTableOptions = _chunkLRXJT656js.getTableOptions; exports.getTokenHandler = _chunkLRXJT656js.getTokenHandler; exports.getTrackablePages = _chunkRA4RYKYBjs.getTrackablePages; exports.getValueFromPath = _chunkLRXJT656js.getValueFromPath; exports.getWaitlistConfig = _chunkRA4RYKYBjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkRA4RYKYBjs.isReferralEnabled; exports.isRolesConfigured = _chunkRA4RYKYBjs.isRolesConfigured; exports.rehydrate = _chunkLRXJT656js.rehydrate; exports.rehydrateList = _chunkLRXJT656js.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkLRXJT656js.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkLRXJT656js.setGlobalErrorHandler; exports.showCustomToast = _chunkLRXJT656js.showCustomToast; exports.showError = _chunkLRXJT656js.showError; exports.showToast = _chunkLRXJT656js.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkLRXJT656js.useComposedRefs; exports.useIsMobile = _chunkLRXJT656js.useIsMobile; exports.userObjectSchema = _chunkLRXJT656js.userObjectSchema;
|
|
389
395
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,q3WAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
|
package/dist/index.mjs
CHANGED
|
@@ -17,12 +17,15 @@ import {
|
|
|
17
17
|
getWaitlistConfig,
|
|
18
18
|
isReferralEnabled,
|
|
19
19
|
isRolesConfigured
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-5KMKI23S.mjs";
|
|
21
21
|
import {
|
|
22
22
|
AVAILABLE_OAUTH_SCOPES,
|
|
23
23
|
AbstractApiData,
|
|
24
24
|
AbstractService,
|
|
25
25
|
Action,
|
|
26
|
+
AuditLog,
|
|
27
|
+
AuditLogModule,
|
|
28
|
+
AuditLogService,
|
|
26
29
|
Auth,
|
|
27
30
|
AuthComponent,
|
|
28
31
|
AuthModule,
|
|
@@ -180,7 +183,7 @@ import {
|
|
|
180
183
|
useComposedRefs,
|
|
181
184
|
useIsMobile,
|
|
182
185
|
userObjectSchema
|
|
183
|
-
} from "./chunk-
|
|
186
|
+
} from "./chunk-G7PGWMFO.mjs";
|
|
184
187
|
import "./chunk-AUXK7QSA.mjs";
|
|
185
188
|
import "./chunk-C7C7VY4F.mjs";
|
|
186
189
|
import {
|
|
@@ -201,6 +204,9 @@ export {
|
|
|
201
204
|
AbstractApiData,
|
|
202
205
|
AbstractService,
|
|
203
206
|
Action,
|
|
207
|
+
AuditLog,
|
|
208
|
+
AuditLogModule,
|
|
209
|
+
AuditLogService,
|
|
204
210
|
Auth,
|
|
205
211
|
AuthComponent,
|
|
206
212
|
AuthModule,
|
package/dist/server/index.js
CHANGED
|
@@ -15,7 +15,7 @@ var _chunk3ZPK4QOBjs = require('../chunk-3ZPK4QOB.js');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkLRXJT656js = require('../chunk-LRXJT656.js');
|
|
19
19
|
require('../chunk-LXKSUWAV.js');
|
|
20
20
|
require('../chunk-IBS6NI7D.js');
|
|
21
21
|
|
|
@@ -86,7 +86,7 @@ var ServerSession = class {
|
|
|
86
86
|
if (!rawModules) return false;
|
|
87
87
|
const modules = JSON.parse(_pako2.default.ungzip(Buffer.from(rawModules, "base64"), { to: "string" }));
|
|
88
88
|
const selectedModule = modules.find((module) => module.id === params.module.moduleId);
|
|
89
|
-
return
|
|
89
|
+
return _chunkLRXJT656js.checkPermissionsFromServer.call(void 0, {
|
|
90
90
|
module: params.module,
|
|
91
91
|
action: params.action,
|
|
92
92
|
data: params.data,
|
|
@@ -296,5 +296,5 @@ _chunk7QVYU63Ejs.__name.call(void 0, ServerJsonApiDelete, "ServerJsonApiDelete")
|
|
|
296
296
|
|
|
297
297
|
|
|
298
298
|
|
|
299
|
-
exports.ServerAuthService =
|
|
299
|
+
exports.ServerAuthService = _chunkLRXJT656js.AuthService; exports.ServerCompanyService = _chunkLRXJT656js.CompanyService; exports.ServerContentService = _chunkLRXJT656js.ContentService; exports.ServerFeatureService = _chunkLRXJT656js.FeatureService; exports.ServerJsonApiDelete = ServerJsonApiDelete; exports.ServerJsonApiGet = ServerJsonApiGet; exports.ServerJsonApiPatch = ServerJsonApiPatch; exports.ServerJsonApiPost = ServerJsonApiPost; exports.ServerJsonApiPut = ServerJsonApiPut; exports.ServerNotificationService = _chunkLRXJT656js.NotificationService; exports.ServerPushService = _chunkLRXJT656js.PushService; exports.ServerRoleService = _chunkLRXJT656js.RoleService; exports.ServerS3Service = _chunkLRXJT656js.S3Service; exports.ServerSession = ServerSession; exports.ServerUserService = _chunkLRXJT656js.UserService; exports.configureServerJsonApi = configureServerJsonApi; exports.getServerApiUrl = getServerApiUrl; exports.getServerAppUrl = getServerAppUrl; exports.getServerToken = _chunkYUO55Q5Ajs.getServerToken; exports.getServerTrackablePages = getServerTrackablePages; exports.invalidateCacheTag = invalidateCacheTag; exports.invalidateCacheTags = invalidateCacheTags; exports.serverRequest = _chunk3ZPK4QOBjs.serverRequest;
|
|
300
300
|
//# sourceMappingURL=index.js.map
|
package/dist/server/index.mjs
CHANGED
package/package.json
CHANGED
package/src/core/index.ts
CHANGED
|
@@ -51,6 +51,8 @@ export interface FoundationModuleDefinitions {
|
|
|
51
51
|
// RBAC modules
|
|
52
52
|
PermissionMapping: ModuleWithPermissions;
|
|
53
53
|
ModulePaths: ModuleWithPermissions;
|
|
54
|
+
// Audit modules
|
|
55
|
+
AuditLog: ModuleWithPermissions;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
// App-specific modules - apps will augment this interface ONLY
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ModuleFactory } from "../../permissions";
|
|
2
|
+
import { AuditLog } from "./data";
|
|
3
|
+
|
|
4
|
+
export const AuditLogModule = (factory: ModuleFactory) =>
|
|
5
|
+
factory({
|
|
6
|
+
name: "audit-logs",
|
|
7
|
+
pageUrl: "/audit-logs",
|
|
8
|
+
model: AuditLog,
|
|
9
|
+
moduleId: "b7e2f4a1-9c3d-4e8b-a6d5-2f1c8e7b3a90",
|
|
10
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ApiDataInterface, UserInterface } from "../../../core";
|
|
2
|
+
|
|
3
|
+
export interface AuditLogInterface extends ApiDataInterface {
|
|
4
|
+
get kind(): "audit" | "comment";
|
|
5
|
+
get action(): string | undefined;
|
|
6
|
+
get fieldName(): string | undefined;
|
|
7
|
+
get oldValue(): string | undefined;
|
|
8
|
+
get newValue(): string | undefined;
|
|
9
|
+
get content(): string | undefined;
|
|
10
|
+
get annotationId(): string | undefined;
|
|
11
|
+
get user(): UserInterface | undefined;
|
|
12
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AbstractService, EndpointCreator, HttpMethod, Modules, NextRef } from "../../../core";
|
|
2
|
+
import { AuditLogInterface } from "./audit-log.interface";
|
|
3
|
+
|
|
4
|
+
export class AuditLogService extends AbstractService {
|
|
5
|
+
static async findActivityByEntity(params: {
|
|
6
|
+
entityType: string;
|
|
7
|
+
entityId: string;
|
|
8
|
+
next?: NextRef;
|
|
9
|
+
}): Promise<AuditLogInterface[]> {
|
|
10
|
+
const endpoint = new EndpointCreator({
|
|
11
|
+
endpoint: Modules.AuditLog,
|
|
12
|
+
id: "activity",
|
|
13
|
+
childEndpoint: params.entityType,
|
|
14
|
+
childId: params.entityId,
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
return this.callApi({
|
|
18
|
+
type: Modules.AuditLog,
|
|
19
|
+
method: HttpMethod.GET,
|
|
20
|
+
endpoint: endpoint.generate(),
|
|
21
|
+
next: params.next,
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
}
|