@carlonicora/nextjs-jsonapi 1.68.0 → 1.70.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/{AuthComponent-NwQ_ZXsv.d.mts → AuthComponent-DXe3kPzb.d.mts} +1 -1
- package/dist/{AuthComponent-DL1D3y7f.d.ts → AuthComponent-Di8DsZ2I.d.ts} +1 -1
- package/dist/{BlockNoteEditor-6FDECIS2.mjs → BlockNoteEditor-6XV2IXLY.mjs} +15 -9
- package/dist/BlockNoteEditor-6XV2IXLY.mjs.map +1 -0
- package/dist/{BlockNoteEditor-DXHROT4C.js → BlockNoteEditor-NVPUPZXB.js} +25 -19
- package/dist/BlockNoteEditor-NVPUPZXB.js.map +1 -0
- package/dist/HowToInterface-DtVWAE1s.d.mts +17 -0
- package/dist/HowToInterface-NaqSG9sE.d.ts +17 -0
- package/dist/{auth.interface-BX_1qZZJ.d.ts → auth.interface-BTco8PWs.d.ts} +1 -1
- package/dist/{auth.interface-yeLelxdI.d.mts → auth.interface-C4uJzBec.d.mts} +1 -1
- package/dist/billing/index.js +346 -346
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-37KYO2UD.js → chunk-56VU7A4I.js} +172 -18
- package/dist/chunk-56VU7A4I.js.map +1 -0
- package/dist/{chunk-WOJIRXIP.js → chunk-6ROMPIIP.js} +11 -11
- package/dist/{chunk-WOJIRXIP.js.map → chunk-6ROMPIIP.js.map} +1 -1
- package/dist/{chunk-IOMDNRX5.mjs → chunk-GZNHBAZF.mjs} +155 -1
- package/dist/chunk-GZNHBAZF.mjs.map +1 -0
- package/dist/{chunk-H4ZS3R76.mjs → chunk-LQEKQYUJ.mjs} +2569 -1603
- package/dist/chunk-LQEKQYUJ.mjs.map +1 -0
- package/dist/{chunk-WVTBEVAL.mjs → chunk-WJYWWOTG.mjs} +2 -2
- package/dist/{chunk-ELTHSXBI.js → chunk-ZKOLKFAS.js} +1664 -698
- package/dist/chunk-ZKOLKFAS.js.map +1 -0
- package/dist/client/index.d.mts +5 -6
- package/dist/client/index.d.ts +5 -6
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +83 -10
- package/dist/components/index.d.ts +83 -10
- package/dist/components/index.js +26 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +25 -3
- package/dist/{config-D-mqttuF.d.mts → config-Bmr_0qTn.d.mts} +1 -1
- package/dist/{config-CyCAWW-d.d.ts → config-n0lfSf27.d.ts} +1 -1
- package/dist/contexts/index.d.mts +16 -4
- package/dist/contexts/index.d.ts +16 -4
- package/dist/contexts/index.js +8 -4
- package/dist/contexts/index.js.map +1 -1
- package/dist/contexts/index.mjs +7 -3
- package/dist/core/index.d.mts +61 -11
- package/dist/core/index.d.ts +61 -11
- package/dist/core/index.js +10 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +9 -1
- package/dist/index.d.mts +9 -10
- package/dist/index.d.ts +9 -10
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -2
- package/dist/{notification.interface-ItBxq2au.d.ts → notification.interface-DYDZENx2.d.ts} +18 -1
- package/dist/{notification.interface-C6UcmJqu.d.mts → notification.interface-DrHu_1MM.d.mts} +18 -1
- package/dist/{s3.service-N1g0piXD.d.ts → s3.service-DK2KKXbR.d.ts} +2 -3
- package/dist/{s3.service-CHOTwfWA.d.mts → s3.service-TsN2unZr.d.mts} +2 -3
- package/dist/server/index.d.mts +3 -4
- package/dist/server/index.d.ts +3 -4
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/dist/{useRbacState-CUj0hp8t.d.ts → useRbacState-BYaSdA78.d.ts} +1 -1
- package/dist/{useRbacState-Btk1gkQg.d.mts → useRbacState-CQEJ_ysV.d.mts} +1 -1
- package/dist/{useSocket-BSUN9s3p.d.ts → useSocket-Cjt_qvkI.d.ts} +1 -1
- package/dist/{useSocket-DKI92Fbg.d.mts → useSocket-VAGetcT3.d.mts} +1 -1
- package/package.json +1 -1
- package/src/components/editors/BlockNoteEditor.tsx +7 -1
- package/src/components/forms/FormBlockNote.tsx +6 -0
- package/src/components/forms/FormSelect.tsx +3 -0
- package/src/components/index.ts +1 -0
- package/src/contexts/index.ts +1 -0
- package/src/core/index.ts +2 -0
- package/src/core/registry/ModuleRegistry.ts +19 -0
- package/src/features/how-to/HowToModule.ts +18 -0
- package/src/features/how-to/components/containers/HowToCommand.tsx +230 -0
- package/src/features/how-to/components/containers/HowToCommandViewer.tsx +76 -0
- package/src/features/how-to/components/containers/HowToContainer.tsx +27 -0
- package/src/features/how-to/components/containers/HowToListContainer.tsx +17 -0
- package/src/features/how-to/components/details/HowToContent.tsx +16 -0
- package/src/features/how-to/components/details/HowToDetails.tsx +52 -0
- package/src/features/how-to/components/forms/HowToDeleter.tsx +31 -0
- package/src/features/how-to/components/forms/HowToEditor.tsx +270 -0
- package/src/features/how-to/components/forms/HowToMultiSelector.tsx +152 -0
- package/src/features/how-to/components/forms/HowToSelector.tsx +164 -0
- package/src/features/how-to/components/index.ts +11 -0
- package/src/features/how-to/components/lists/HowToList.tsx +39 -0
- package/src/features/how-to/contexts/HowToContext.tsx +101 -0
- package/src/features/how-to/data/HowTo.ts +69 -0
- package/src/features/how-to/data/HowToFields.ts +10 -0
- package/src/features/how-to/data/HowToInterface.ts +11 -0
- package/src/features/how-to/data/HowToService.ts +61 -0
- package/src/features/how-to/data/index.ts +4 -0
- package/src/features/how-to/hooks/useHowToTableStructure.tsx +86 -0
- package/src/features/how-to/index.ts +2 -0
- package/src/features/how-to/utils/blocknote.ts +108 -0
- package/src/features/how-to/utils/index.ts +1 -0
- package/dist/BlockNoteEditor-6FDECIS2.mjs.map +0 -1
- package/dist/BlockNoteEditor-DXHROT4C.js.map +0 -1
- package/dist/breadcrumb.item.data.interface-CgB4_1EE.d.mts +0 -6
- package/dist/breadcrumb.item.data.interface-CgB4_1EE.d.ts +0 -6
- package/dist/chunk-37KYO2UD.js.map +0 -1
- package/dist/chunk-ELTHSXBI.js.map +0 -1
- package/dist/chunk-H4ZS3R76.mjs.map +0 -1
- package/dist/chunk-IOMDNRX5.mjs.map +0 -1
- package/dist/content.interface-8T5-G84c.d.mts +0 -21
- package/dist/content.interface-D-xdYxjt.d.ts +0 -21
- /package/dist/{chunk-WVTBEVAL.mjs.map → chunk-WJYWWOTG.mjs.map} +0 -0
package/dist/core/index.d.ts
CHANGED
|
@@ -3,28 +3,28 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
3
3
|
import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
4
4
|
export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
5
5
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-CAIAeP5d.js';
|
|
6
|
-
import { b as AbstractService, i as TwoFactorChallengeInterface, c as NextRef, d as PreviousRef, k as S3Interface, j as S3Input } from '../s3.service-
|
|
7
|
-
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, N as NotificationService, P as PushService, R as RoleService, S as S3Service, e as SelfRef, T as TotalRef, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from '../s3.service-
|
|
8
|
-
import { M as ModuleWithPermissions,
|
|
9
|
-
export {
|
|
10
|
-
|
|
6
|
+
import { b as AbstractService, i as TwoFactorChallengeInterface, c as NextRef, d as PreviousRef, k as S3Interface, j as S3Input } from '../s3.service-DK2KKXbR.js';
|
|
7
|
+
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, N as NotificationService, P as PushService, R as RoleService, S as S3Service, e as SelfRef, T as TotalRef, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from '../s3.service-DK2KKXbR.js';
|
|
8
|
+
import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as PermissionModule, h as ModuleFactory, R as RoleInterface, l as RoleInput, U as UserInterface, j as CompanyInterface, m as UserInput, i as CompanyInput, C as ContentInterface, a as ContentInput, N as NotificationInterface, k as NotificationInput } from '../notification.interface-DYDZENx2.js';
|
|
9
|
+
export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-DYDZENx2.js';
|
|
10
|
+
import { a as HowToInterface, H as HowToInput } from '../HowToInterface-NaqSG9sE.js';
|
|
11
|
+
export { B as BreadcrumbItemData } from '../HowToInterface-NaqSG9sE.js';
|
|
11
12
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.js';
|
|
12
13
|
import { ClassValue } from 'clsx';
|
|
13
14
|
export { ClassValue } from 'clsx';
|
|
14
15
|
import * as React from 'react';
|
|
15
16
|
import { ReactElement, ReactNode, JSXElementConstructor } from 'react';
|
|
16
17
|
import { z } from 'zod';
|
|
17
|
-
import { T as TotpAuthenticatorInterface, P as PasskeyInterface } from '../AuthComponent-
|
|
18
|
-
export { A as AuthComponent, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from '../AuthComponent-
|
|
18
|
+
import { T as TotpAuthenticatorInterface, P as PasskeyInterface } from '../AuthComponent-Di8DsZ2I.js';
|
|
19
|
+
export { A as AuthComponent, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from '../AuthComponent-Di8DsZ2I.js';
|
|
19
20
|
import { PartialBlock } from '@blocknote/core';
|
|
20
21
|
import { ExternalToast } from 'sonner';
|
|
21
|
-
import { b as AuthInterface, A as AuthInput } from '../auth.interface-
|
|
22
|
-
export { a as AuthQuery } from '../auth.interface-
|
|
22
|
+
import { b as AuthInterface, A as AuthInput } from '../auth.interface-BTco8PWs.js';
|
|
23
|
+
export { a as AuthQuery } from '../auth.interface-BTco8PWs.js';
|
|
23
24
|
import { PublicKeyCredentialCreationOptionsJSON, RegistrationResponseJSON, PublicKeyCredentialRequestOptionsJSON, AuthenticationResponseJSON } from '@simplewebauthn/browser';
|
|
24
25
|
import { M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, S as StripeCustomerInterface, a as StripeInvoiceInterface, j as StripeSubscriptionInterface, I as InvoiceStatus, g as StripeProductInterface, d as StripePriceInterface, h as StripeProductInput, e as PriceRecurring, f as StripePriceInput, i as SubscriptionStatus, k as StripeSubscriptionInput, m as StripeSubscriptionCreateResponse, b as ProrationPreviewInterface, n as StripeUsageInterface, R as ReportUsageInput, U as UsageSummaryInterface, q as PromotionCodeValidationResult } from '../stripe-promotion-code.interface-BcJty0rv.js';
|
|
25
26
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-promotion-code.interface-BcJty0rv.js';
|
|
26
27
|
import { M as ModuleInterface, F as FeatureInterface } from '../feature.interface-CIWxo8NP.js';
|
|
27
|
-
import { a as ContentInterface, C as ContentInput } from '../content.interface-D-xdYxjt.js';
|
|
28
28
|
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-vL7za9Bz.js';
|
|
29
29
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-vL7za9Bz.js';
|
|
30
30
|
import 'lucide-react';
|
|
@@ -230,6 +230,7 @@ interface FoundationModuleDefinitions {
|
|
|
230
230
|
Feature: ModuleWithPermissions;
|
|
231
231
|
Module: ModuleWithPermissions;
|
|
232
232
|
Content: ModuleWithPermissions;
|
|
233
|
+
HowTo: ModuleWithPermissions;
|
|
233
234
|
Billing: ModuleWithPermissions;
|
|
234
235
|
StripeCustomer: ModuleWithPermissions;
|
|
235
236
|
StripePaymentMethod: ModuleWithPermissions;
|
|
@@ -270,6 +271,10 @@ declare class ModuleRegistryClass {
|
|
|
270
271
|
register<K extends string>(name: K, module: ApiRequestDataTypeInterface): void;
|
|
271
272
|
get<K extends keyof ModuleDefinitions>(name: K): ModuleDefinitions[K];
|
|
272
273
|
findByName(moduleName: string): ModuleWithPermissions;
|
|
274
|
+
getAllPageUrls(): {
|
|
275
|
+
id: string;
|
|
276
|
+
text: string;
|
|
277
|
+
}[];
|
|
273
278
|
findByModelName(modelName: string): ModuleWithPermissions;
|
|
274
279
|
}
|
|
275
280
|
declare const ModuleRegistry: ModuleRegistryClass;
|
|
@@ -1735,6 +1740,51 @@ declare class Content extends AbstractApiData implements ContentInterface, Searc
|
|
|
1735
1740
|
protected addContentInput(response: any, data: ContentInput): void;
|
|
1736
1741
|
}
|
|
1737
1742
|
|
|
1743
|
+
declare const HowToModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1744
|
+
|
|
1745
|
+
declare class HowTo extends Content implements HowToInterface {
|
|
1746
|
+
private _description?;
|
|
1747
|
+
private _pages?;
|
|
1748
|
+
/**
|
|
1749
|
+
* Parse pages from backend JSON string (handles legacy single string + JSON array)
|
|
1750
|
+
*/
|
|
1751
|
+
static parsePagesFromString(pagesStr?: string): string[];
|
|
1752
|
+
/**
|
|
1753
|
+
* Serialize pages array to JSON string for backend
|
|
1754
|
+
*/
|
|
1755
|
+
static serializePagesToString(pages: string[]): string | undefined;
|
|
1756
|
+
get description(): any;
|
|
1757
|
+
get pages(): string | undefined;
|
|
1758
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1759
|
+
createJsonApi(data: HowToInput): any;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
declare enum HowToFields {
|
|
1763
|
+
howToId = "howToId",
|
|
1764
|
+
name = "name",
|
|
1765
|
+
description = "description",
|
|
1766
|
+
pages = "pages",
|
|
1767
|
+
createdAt = "createdAt",
|
|
1768
|
+
updatedAt = "updatedAt"
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
declare class HowToService extends AbstractService {
|
|
1772
|
+
static findOne(params: {
|
|
1773
|
+
id: string;
|
|
1774
|
+
}): Promise<HowToInterface>;
|
|
1775
|
+
static findMany(params?: {
|
|
1776
|
+
search?: string;
|
|
1777
|
+
fetchAll?: boolean;
|
|
1778
|
+
next?: NextRef;
|
|
1779
|
+
prev?: PreviousRef;
|
|
1780
|
+
}): Promise<HowToInterface[]>;
|
|
1781
|
+
static create(params: HowToInput): Promise<HowToInterface>;
|
|
1782
|
+
static update(params: HowToInput): Promise<HowToInterface>;
|
|
1783
|
+
static delete(params: {
|
|
1784
|
+
howToId: string;
|
|
1785
|
+
}): Promise<void>;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1738
1788
|
declare class Notification extends AbstractApiData implements NotificationInterface {
|
|
1739
1789
|
private _notificationType?;
|
|
1740
1790
|
private _isRead?;
|
|
@@ -2092,4 +2142,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2092
2142
|
|
|
2093
2143
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2094
2144
|
|
|
2095
|
-
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 };
|
|
2145
|
+
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, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, 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
|
@@ -159,7 +159,11 @@
|
|
|
159
159
|
|
|
160
160
|
|
|
161
161
|
|
|
162
|
-
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
var _chunk56VU7A4Ijs = require('../chunk-56VU7A4I.js');
|
|
163
167
|
require('../chunk-LXKSUWAV.js');
|
|
164
168
|
require('../chunk-IBS6NI7D.js');
|
|
165
169
|
|
|
@@ -345,5 +349,9 @@ require('../chunk-7QVYU63E.js');
|
|
|
345
349
|
|
|
346
350
|
|
|
347
351
|
|
|
348
|
-
exports.AVAILABLE_OAUTH_SCOPES = _chunk37KYO2UDjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk37KYO2UDjs.AbstractApiData; exports.AbstractService = _chunk37KYO2UDjs.AbstractService; exports.Action = _chunk37KYO2UDjs.Action; exports.AuditLog = _chunk37KYO2UDjs.AuditLog; exports.AuditLogModule = _chunk37KYO2UDjs.AuditLogModule; exports.AuditLogService = _chunk37KYO2UDjs.AuditLogService; exports.Auth = _chunk37KYO2UDjs.Auth; exports.AuthComponent = _chunk37KYO2UDjs.AuthComponent; exports.AuthModule = _chunk37KYO2UDjs.AuthModule; exports.AuthService = _chunk37KYO2UDjs.AuthService; exports.AuthorModule = _chunk37KYO2UDjs.AuthorModule; exports.BackupCodeVerify = _chunk37KYO2UDjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk37KYO2UDjs.BackupCodeVerifyModule; exports.Billing = _chunk37KYO2UDjs.Billing; exports.BillingModule = _chunk37KYO2UDjs.BillingModule; exports.BillingService = _chunk37KYO2UDjs.BillingService; exports.BlockNoteDiffUtil = _chunk37KYO2UDjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk37KYO2UDjs.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunk37KYO2UDjs.ClientAbstractService; exports.ClientHttpMethod = _chunk37KYO2UDjs.ClientHttpMethod; exports.Company = _chunk37KYO2UDjs.Company; exports.CompanyFields = _chunk37KYO2UDjs.CompanyFields; exports.CompanyModule = _chunk37KYO2UDjs.CompanyModule; exports.CompanyService = _chunk37KYO2UDjs.CompanyService; exports.Content = _chunk37KYO2UDjs.Content; exports.ContentFields = _chunk37KYO2UDjs.ContentFields; exports.ContentModule = _chunk37KYO2UDjs.ContentModule; exports.ContentService = _chunk37KYO2UDjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk37KYO2UDjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunk37KYO2UDjs.EndpointCreator; exports.Feature = _chunk37KYO2UDjs.Feature; exports.FeatureModule = _chunk37KYO2UDjs.FeatureModule; exports.FeatureService = _chunk37KYO2UDjs.FeatureService; exports.HttpMethod = _chunk37KYO2UDjs.HttpMethod; exports.InvoiceStatus = _chunk37KYO2UDjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunk37KYO2UDjs.Module; exports.ModuleModule = _chunk37KYO2UDjs.ModuleModule; exports.ModulePathsModule = _chunk37KYO2UDjs.ModulePathsModule; exports.ModuleRegistrar = _chunk37KYO2UDjs.ModuleRegistrar; exports.ModuleRegistry = _chunk37KYO2UDjs.ModuleRegistry; exports.Modules = _chunk37KYO2UDjs.Modules; exports.Notification = _chunk37KYO2UDjs.Notification; exports.NotificationFields = _chunk37KYO2UDjs.NotificationFields; exports.NotificationModule = _chunk37KYO2UDjs.NotificationModule; exports.NotificationService = _chunk37KYO2UDjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk37KYO2UDjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk37KYO2UDjs.OAuthClient; exports.OAuthModule = _chunk37KYO2UDjs.OAuthModule; exports.OAuthService = _chunk37KYO2UDjs.OAuthService; exports.Passkey = _chunk37KYO2UDjs.Passkey; exports.PasskeyAuthenticationOptions = _chunk37KYO2UDjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk37KYO2UDjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk37KYO2UDjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk37KYO2UDjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk37KYO2UDjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk37KYO2UDjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk37KYO2UDjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk37KYO2UDjs.PasskeyRename; exports.PasskeyRenameModule = _chunk37KYO2UDjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk37KYO2UDjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk37KYO2UDjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk37KYO2UDjs.PaymentMethod; exports.PermissionMappingModule = _chunk37KYO2UDjs.PermissionMappingModule; exports.Push = _chunk37KYO2UDjs.Push; exports.PushModule = _chunk37KYO2UDjs.PushModule; exports.PushService = _chunk37KYO2UDjs.PushService; exports.ReferralModule = _chunk37KYO2UDjs.ReferralModule; exports.ReferralService = _chunk37KYO2UDjs.ReferralService; exports.ReferralStats = _chunk37KYO2UDjs.ReferralStats; exports.ReferralStatsModule = _chunk37KYO2UDjs.ReferralStatsModule; exports.RehydrationFactory = _chunk37KYO2UDjs.RehydrationFactory; exports.Role = _chunk37KYO2UDjs.Role; exports.RoleFields = _chunk37KYO2UDjs.RoleFields; exports.RoleModule = _chunk37KYO2UDjs.RoleModule; exports.RoleService = _chunk37KYO2UDjs.RoleService; exports.S3 = _chunk37KYO2UDjs.S3; exports.S3Module = _chunk37KYO2UDjs.S3Module; exports.S3Service = _chunk37KYO2UDjs.S3Service; exports.StripeCustomer = _chunk37KYO2UDjs.StripeCustomer; exports.StripeCustomerModule = _chunk37KYO2UDjs.StripeCustomerModule; exports.StripeCustomerService = _chunk37KYO2UDjs.StripeCustomerService; exports.StripeInvoice = _chunk37KYO2UDjs.StripeInvoice; exports.StripeInvoiceModule = _chunk37KYO2UDjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk37KYO2UDjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk37KYO2UDjs.StripePaymentMethodModule; exports.StripePrice = _chunk37KYO2UDjs.StripePrice; exports.StripePriceModule = _chunk37KYO2UDjs.StripePriceModule; exports.StripePriceService = _chunk37KYO2UDjs.StripePriceService; exports.StripeProduct = _chunk37KYO2UDjs.StripeProduct; exports.StripeProductModule = _chunk37KYO2UDjs.StripeProductModule; exports.StripeProductService = _chunk37KYO2UDjs.StripeProductService; exports.StripePromotionCode = _chunk37KYO2UDjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk37KYO2UDjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk37KYO2UDjs.StripePromotionCodeService; exports.StripeSubscription = _chunk37KYO2UDjs.StripeSubscription; exports.StripeSubscriptionModule = _chunk37KYO2UDjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk37KYO2UDjs.StripeSubscriptionService; exports.StripeUsage = _chunk37KYO2UDjs.StripeUsage; exports.StripeUsageModule = _chunk37KYO2UDjs.StripeUsageModule; exports.StripeUsageService = _chunk37KYO2UDjs.StripeUsageService; exports.SubscriptionStatus = _chunk37KYO2UDjs.SubscriptionStatus; exports.TableOptions = _chunk37KYO2UDjs.TableOptions; exports.TotpAuthenticator = _chunk37KYO2UDjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk37KYO2UDjs.TotpAuthenticatorModule; exports.TotpSetup = _chunk37KYO2UDjs.TotpSetup; exports.TotpSetupModule = _chunk37KYO2UDjs.TotpSetupModule; exports.TotpVerify = _chunk37KYO2UDjs.TotpVerify; exports.TotpVerifyLogin = _chunk37KYO2UDjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk37KYO2UDjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk37KYO2UDjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk37KYO2UDjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk37KYO2UDjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk37KYO2UDjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk37KYO2UDjs.TwoFactorEnableModule; exports.TwoFactorService = _chunk37KYO2UDjs.TwoFactorService; exports.TwoFactorStatus = _chunk37KYO2UDjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk37KYO2UDjs.TwoFactorStatusModule; exports.User = _chunk37KYO2UDjs.User; exports.UserFields = _chunk37KYO2UDjs.UserFields; exports.UserModule = _chunk37KYO2UDjs.UserModule; exports.UserService = _chunk37KYO2UDjs.UserService; exports.Waitlist = _chunk37KYO2UDjs.Waitlist; exports.WaitlistModule = _chunk37KYO2UDjs.WaitlistModule; exports.WaitlistService = _chunk37KYO2UDjs.WaitlistService; exports.WaitlistStats = _chunk37KYO2UDjs.WaitlistStats; exports.WaitlistStatsModule = _chunk37KYO2UDjs.WaitlistStatsModule; exports.checkPermissions = _chunk37KYO2UDjs.checkPermissions; exports.checkPermissionsFromServer = _chunk37KYO2UDjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk37KYO2UDjs.clearLastApiTotal; exports.cn = _chunk37KYO2UDjs.cn; exports.composeRefs = _chunk37KYO2UDjs.composeRefs; exports.createJsonApiInclusion = _chunk37KYO2UDjs.createJsonApiInclusion; exports.dismissToast = _chunk37KYO2UDjs.dismissToast; exports.entityObjectSchema = _chunk37KYO2UDjs.entityObjectSchema; exports.exists = _chunk37KYO2UDjs.exists; exports.formatDate = _chunk37KYO2UDjs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk37KYO2UDjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk37KYO2UDjs.getGlobalErrorHandler; exports.getIcon = _chunk37KYO2UDjs.getIcon; exports.getIconByModule = _chunk37KYO2UDjs.getIconByModule; exports.getIconByModuleName = _chunk37KYO2UDjs.getIconByModuleName; exports.getInitials = _chunk37KYO2UDjs.getInitials; exports.getLastApiTotal = _chunk37KYO2UDjs.getLastApiTotal; exports.getLucideIcon = _chunk37KYO2UDjs.getLucideIcon; exports.getLucideIconByModule = _chunk37KYO2UDjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk37KYO2UDjs.getLucideIconByModuleName; exports.getTableComponents = _chunk37KYO2UDjs.getTableComponents; exports.getTableOptions = _chunk37KYO2UDjs.getTableOptions; exports.getValueFromPath = _chunk37KYO2UDjs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunk37KYO2UDjs.rehydrate; exports.rehydrateList = _chunk37KYO2UDjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk37KYO2UDjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk37KYO2UDjs.setGlobalErrorHandler; exports.showCustomToast = _chunk37KYO2UDjs.showCustomToast; exports.showError = _chunk37KYO2UDjs.showError; exports.showToast = _chunk37KYO2UDjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunk37KYO2UDjs.useComposedRefs; exports.useIsMobile = _chunk37KYO2UDjs.useIsMobile; exports.userObjectSchema = _chunk37KYO2UDjs.userObjectSchema;
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
exports.AVAILABLE_OAUTH_SCOPES = _chunk56VU7A4Ijs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk56VU7A4Ijs.AbstractApiData; exports.AbstractService = _chunk56VU7A4Ijs.AbstractService; exports.Action = _chunk56VU7A4Ijs.Action; exports.AuditLog = _chunk56VU7A4Ijs.AuditLog; exports.AuditLogModule = _chunk56VU7A4Ijs.AuditLogModule; exports.AuditLogService = _chunk56VU7A4Ijs.AuditLogService; exports.Auth = _chunk56VU7A4Ijs.Auth; exports.AuthComponent = _chunk56VU7A4Ijs.AuthComponent; exports.AuthModule = _chunk56VU7A4Ijs.AuthModule; exports.AuthService = _chunk56VU7A4Ijs.AuthService; exports.AuthorModule = _chunk56VU7A4Ijs.AuthorModule; exports.BackupCodeVerify = _chunk56VU7A4Ijs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk56VU7A4Ijs.BackupCodeVerifyModule; exports.Billing = _chunk56VU7A4Ijs.Billing; exports.BillingModule = _chunk56VU7A4Ijs.BillingModule; exports.BillingService = _chunk56VU7A4Ijs.BillingService; exports.BlockNoteDiffUtil = _chunk56VU7A4Ijs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk56VU7A4Ijs.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunk56VU7A4Ijs.ClientAbstractService; exports.ClientHttpMethod = _chunk56VU7A4Ijs.ClientHttpMethod; exports.Company = _chunk56VU7A4Ijs.Company; exports.CompanyFields = _chunk56VU7A4Ijs.CompanyFields; exports.CompanyModule = _chunk56VU7A4Ijs.CompanyModule; exports.CompanyService = _chunk56VU7A4Ijs.CompanyService; exports.Content = _chunk56VU7A4Ijs.Content; exports.ContentFields = _chunk56VU7A4Ijs.ContentFields; exports.ContentModule = _chunk56VU7A4Ijs.ContentModule; exports.ContentService = _chunk56VU7A4Ijs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk56VU7A4Ijs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunk56VU7A4Ijs.EndpointCreator; exports.Feature = _chunk56VU7A4Ijs.Feature; exports.FeatureModule = _chunk56VU7A4Ijs.FeatureModule; exports.FeatureService = _chunk56VU7A4Ijs.FeatureService; exports.HowTo = _chunk56VU7A4Ijs.HowTo; exports.HowToFields = _chunk56VU7A4Ijs.HowToFields; exports.HowToModule = _chunk56VU7A4Ijs.HowToModule; exports.HowToService = _chunk56VU7A4Ijs.HowToService; exports.HttpMethod = _chunk56VU7A4Ijs.HttpMethod; exports.InvoiceStatus = _chunk56VU7A4Ijs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunk56VU7A4Ijs.Module; exports.ModuleModule = _chunk56VU7A4Ijs.ModuleModule; exports.ModulePathsModule = _chunk56VU7A4Ijs.ModulePathsModule; exports.ModuleRegistrar = _chunk56VU7A4Ijs.ModuleRegistrar; exports.ModuleRegistry = _chunk56VU7A4Ijs.ModuleRegistry; exports.Modules = _chunk56VU7A4Ijs.Modules; exports.Notification = _chunk56VU7A4Ijs.Notification; exports.NotificationFields = _chunk56VU7A4Ijs.NotificationFields; exports.NotificationModule = _chunk56VU7A4Ijs.NotificationModule; exports.NotificationService = _chunk56VU7A4Ijs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk56VU7A4Ijs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk56VU7A4Ijs.OAuthClient; exports.OAuthModule = _chunk56VU7A4Ijs.OAuthModule; exports.OAuthService = _chunk56VU7A4Ijs.OAuthService; exports.Passkey = _chunk56VU7A4Ijs.Passkey; exports.PasskeyAuthenticationOptions = _chunk56VU7A4Ijs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk56VU7A4Ijs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk56VU7A4Ijs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk56VU7A4Ijs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk56VU7A4Ijs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk56VU7A4Ijs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk56VU7A4Ijs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk56VU7A4Ijs.PasskeyRename; exports.PasskeyRenameModule = _chunk56VU7A4Ijs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk56VU7A4Ijs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk56VU7A4Ijs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk56VU7A4Ijs.PaymentMethod; exports.PermissionMappingModule = _chunk56VU7A4Ijs.PermissionMappingModule; exports.Push = _chunk56VU7A4Ijs.Push; exports.PushModule = _chunk56VU7A4Ijs.PushModule; exports.PushService = _chunk56VU7A4Ijs.PushService; exports.ReferralModule = _chunk56VU7A4Ijs.ReferralModule; exports.ReferralService = _chunk56VU7A4Ijs.ReferralService; exports.ReferralStats = _chunk56VU7A4Ijs.ReferralStats; exports.ReferralStatsModule = _chunk56VU7A4Ijs.ReferralStatsModule; exports.RehydrationFactory = _chunk56VU7A4Ijs.RehydrationFactory; exports.Role = _chunk56VU7A4Ijs.Role; exports.RoleFields = _chunk56VU7A4Ijs.RoleFields; exports.RoleModule = _chunk56VU7A4Ijs.RoleModule; exports.RoleService = _chunk56VU7A4Ijs.RoleService; exports.S3 = _chunk56VU7A4Ijs.S3; exports.S3Module = _chunk56VU7A4Ijs.S3Module; exports.S3Service = _chunk56VU7A4Ijs.S3Service; exports.StripeCustomer = _chunk56VU7A4Ijs.StripeCustomer; exports.StripeCustomerModule = _chunk56VU7A4Ijs.StripeCustomerModule; exports.StripeCustomerService = _chunk56VU7A4Ijs.StripeCustomerService; exports.StripeInvoice = _chunk56VU7A4Ijs.StripeInvoice; exports.StripeInvoiceModule = _chunk56VU7A4Ijs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk56VU7A4Ijs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk56VU7A4Ijs.StripePaymentMethodModule; exports.StripePrice = _chunk56VU7A4Ijs.StripePrice; exports.StripePriceModule = _chunk56VU7A4Ijs.StripePriceModule; exports.StripePriceService = _chunk56VU7A4Ijs.StripePriceService; exports.StripeProduct = _chunk56VU7A4Ijs.StripeProduct; exports.StripeProductModule = _chunk56VU7A4Ijs.StripeProductModule; exports.StripeProductService = _chunk56VU7A4Ijs.StripeProductService; exports.StripePromotionCode = _chunk56VU7A4Ijs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk56VU7A4Ijs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk56VU7A4Ijs.StripePromotionCodeService; exports.StripeSubscription = _chunk56VU7A4Ijs.StripeSubscription; exports.StripeSubscriptionModule = _chunk56VU7A4Ijs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk56VU7A4Ijs.StripeSubscriptionService; exports.StripeUsage = _chunk56VU7A4Ijs.StripeUsage; exports.StripeUsageModule = _chunk56VU7A4Ijs.StripeUsageModule; exports.StripeUsageService = _chunk56VU7A4Ijs.StripeUsageService; exports.SubscriptionStatus = _chunk56VU7A4Ijs.SubscriptionStatus; exports.TableOptions = _chunk56VU7A4Ijs.TableOptions; exports.TotpAuthenticator = _chunk56VU7A4Ijs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk56VU7A4Ijs.TotpAuthenticatorModule; exports.TotpSetup = _chunk56VU7A4Ijs.TotpSetup; exports.TotpSetupModule = _chunk56VU7A4Ijs.TotpSetupModule; exports.TotpVerify = _chunk56VU7A4Ijs.TotpVerify; exports.TotpVerifyLogin = _chunk56VU7A4Ijs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk56VU7A4Ijs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk56VU7A4Ijs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk56VU7A4Ijs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk56VU7A4Ijs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk56VU7A4Ijs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk56VU7A4Ijs.TwoFactorEnableModule; exports.TwoFactorService = _chunk56VU7A4Ijs.TwoFactorService; exports.TwoFactorStatus = _chunk56VU7A4Ijs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk56VU7A4Ijs.TwoFactorStatusModule; exports.User = _chunk56VU7A4Ijs.User; exports.UserFields = _chunk56VU7A4Ijs.UserFields; exports.UserModule = _chunk56VU7A4Ijs.UserModule; exports.UserService = _chunk56VU7A4Ijs.UserService; exports.Waitlist = _chunk56VU7A4Ijs.Waitlist; exports.WaitlistModule = _chunk56VU7A4Ijs.WaitlistModule; exports.WaitlistService = _chunk56VU7A4Ijs.WaitlistService; exports.WaitlistStats = _chunk56VU7A4Ijs.WaitlistStats; exports.WaitlistStatsModule = _chunk56VU7A4Ijs.WaitlistStatsModule; exports.checkPermissions = _chunk56VU7A4Ijs.checkPermissions; exports.checkPermissionsFromServer = _chunk56VU7A4Ijs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk56VU7A4Ijs.clearLastApiTotal; exports.cn = _chunk56VU7A4Ijs.cn; exports.composeRefs = _chunk56VU7A4Ijs.composeRefs; exports.createJsonApiInclusion = _chunk56VU7A4Ijs.createJsonApiInclusion; exports.dismissToast = _chunk56VU7A4Ijs.dismissToast; exports.entityObjectSchema = _chunk56VU7A4Ijs.entityObjectSchema; exports.exists = _chunk56VU7A4Ijs.exists; exports.formatDate = _chunk56VU7A4Ijs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk56VU7A4Ijs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk56VU7A4Ijs.getGlobalErrorHandler; exports.getIcon = _chunk56VU7A4Ijs.getIcon; exports.getIconByModule = _chunk56VU7A4Ijs.getIconByModule; exports.getIconByModuleName = _chunk56VU7A4Ijs.getIconByModuleName; exports.getInitials = _chunk56VU7A4Ijs.getInitials; exports.getLastApiTotal = _chunk56VU7A4Ijs.getLastApiTotal; exports.getLucideIcon = _chunk56VU7A4Ijs.getLucideIcon; exports.getLucideIconByModule = _chunk56VU7A4Ijs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk56VU7A4Ijs.getLucideIconByModuleName; exports.getTableComponents = _chunk56VU7A4Ijs.getTableComponents; exports.getTableOptions = _chunk56VU7A4Ijs.getTableOptions; exports.getValueFromPath = _chunk56VU7A4Ijs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunk56VU7A4Ijs.rehydrate; exports.rehydrateList = _chunk56VU7A4Ijs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk56VU7A4Ijs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk56VU7A4Ijs.setGlobalErrorHandler; exports.showCustomToast = _chunk56VU7A4Ijs.showCustomToast; exports.showError = _chunk56VU7A4Ijs.showError; exports.showToast = _chunk56VU7A4Ijs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunk56VU7A4Ijs.useComposedRefs; exports.useIsMobile = _chunk56VU7A4Ijs.useIsMobile; exports.userObjectSchema = _chunk56VU7A4Ijs.userObjectSchema;
|
|
349
357
|
//# 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;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,
|
|
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;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;AACA;AACA;AACA;AACA;AACF,2wUAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
|
package/dist/core/index.mjs
CHANGED
|
@@ -33,6 +33,10 @@ import {
|
|
|
33
33
|
Feature,
|
|
34
34
|
FeatureModule,
|
|
35
35
|
FeatureService,
|
|
36
|
+
HowTo,
|
|
37
|
+
HowToFields,
|
|
38
|
+
HowToModule,
|
|
39
|
+
HowToService,
|
|
36
40
|
HttpMethod,
|
|
37
41
|
InvoiceStatus,
|
|
38
42
|
Module,
|
|
@@ -159,7 +163,7 @@ import {
|
|
|
159
163
|
useComposedRefs,
|
|
160
164
|
useIsMobile,
|
|
161
165
|
userObjectSchema
|
|
162
|
-
} from "../chunk-
|
|
166
|
+
} from "../chunk-GZNHBAZF.mjs";
|
|
163
167
|
import "../chunk-AUXK7QSA.mjs";
|
|
164
168
|
import "../chunk-C7C7VY4F.mjs";
|
|
165
169
|
import {
|
|
@@ -211,6 +215,10 @@ export {
|
|
|
211
215
|
Feature,
|
|
212
216
|
FeatureModule,
|
|
213
217
|
FeatureService,
|
|
218
|
+
HowTo,
|
|
219
|
+
HowToFields,
|
|
220
|
+
HowToModule,
|
|
221
|
+
HowToService,
|
|
214
222
|
HttpMethod,
|
|
215
223
|
InvoiceStatus,
|
|
216
224
|
JsonApiDataFactory,
|
package/dist/index.d.mts
CHANGED
|
@@ -4,22 +4,21 @@ 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, 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
|
-
import { b as AbstractService } from './s3.service-
|
|
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-
|
|
10
|
-
export { B as BreadcrumbItemData } from './
|
|
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, HowTo, HowToFields, HowToModule, HowToService, 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
|
+
import { b as AbstractService } from './s3.service-TsN2unZr.mjs';
|
|
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-TsN2unZr.mjs';
|
|
10
|
+
export { B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './HowToInterface-DtVWAE1s.mjs';
|
|
11
11
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-Ck5lkQ5d.mjs';
|
|
12
12
|
export { ClassValue } from 'clsx';
|
|
13
|
-
export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-
|
|
14
|
-
import { R as RoleInterface } from './notification.interface-
|
|
15
|
-
export { A as Action,
|
|
16
|
-
export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.interface-
|
|
13
|
+
export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-DXe3kPzb.mjs';
|
|
14
|
+
import { R as RoleInterface } from './notification.interface-DrHu_1MM.mjs';
|
|
15
|
+
export { A as Action, i as CompanyInput, j as CompanyInterface, a as ContentInput, C as ContentInterface, d as ModuleDefinition, h as ModuleFactory, c as ModulePermissionDefinition, M as ModuleWithPermissions, k as NotificationInput, N as NotificationInterface, b as PageUrl, P as PermissionCheck, e as PermissionConfig, f as PermissionModule, g as PermissionUser, l as RoleInput, m as UserInput, U as UserInterface } from './notification.interface-DrHu_1MM.mjs';
|
|
16
|
+
export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.interface-C4uJzBec.mjs';
|
|
17
17
|
export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, e as PriceRecurring, q as PromotionCodeValidationResult, c as ProrationLineItem, b as ProrationPreviewInterface, R as ReportUsageInput, S as StripeCustomerInterface, a as StripeInvoiceInterface, f as StripePriceInput, d as StripePriceInterface, h as StripeProductInput, g as StripeProductInterface, l as StripeSubscriptionCreateMeta, m as StripeSubscriptionCreateResponse, k as StripeSubscriptionInput, j as StripeSubscriptionInterface, n as StripeUsageInterface, i as SubscriptionStatus, p as UsageRecordInterface, U as UsageSummaryInterface } from './stripe-promotion-code.interface-Dnm2DJKQ.mjs';
|
|
18
|
-
export { C as ContentInput, a as ContentInterface } from './content.interface-8T5-G84c.mjs';
|
|
19
18
|
import { F as FeatureInterface } from './feature.interface-BxFFOPNq.mjs';
|
|
20
19
|
export { M as ModuleInterface } from './feature.interface-BxFFOPNq.mjs';
|
|
21
20
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-DsZ5ecSX.mjs';
|
|
22
|
-
export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-
|
|
21
|
+
export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-Bmr_0qTn.mjs';
|
|
23
22
|
export { Q as QuestionnaireField, a as QuestionnaireFieldType, b as QuestionnaireOption, W as WaitlistConfig, c as configureWaitlist, g as getWaitlistConfig } from './waitlist.config-kPfjImle.mjs';
|
|
24
23
|
import { P as PermissionMappingInterface, M as ModulePathsInterface } from './ModulePathsInterface-49EWvbWy.mjs';
|
|
25
24
|
export { c as ACTION_TYPES, A as ActionType, C as COMPANY_ADMINISTRATOR_ROLE_ID, a as PermissionValue, b as PermissionsMap } from './ModulePathsInterface-49EWvbWy.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -4,22 +4,21 @@ 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, 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
|
-
import { b as AbstractService } from './s3.service-
|
|
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-
|
|
10
|
-
export { B as BreadcrumbItemData } from './
|
|
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, HowTo, HowToFields, HowToModule, HowToService, 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
|
+
import { b as AbstractService } from './s3.service-DK2KKXbR.js';
|
|
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-DK2KKXbR.js';
|
|
10
|
+
export { B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './HowToInterface-NaqSG9sE.js';
|
|
11
11
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-Ck5lkQ5d.js';
|
|
12
12
|
export { ClassValue } from 'clsx';
|
|
13
|
-
export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-
|
|
14
|
-
import { R as RoleInterface } from './notification.interface-
|
|
15
|
-
export { A as Action,
|
|
16
|
-
export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.interface-
|
|
13
|
+
export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-Di8DsZ2I.js';
|
|
14
|
+
import { R as RoleInterface } from './notification.interface-DYDZENx2.js';
|
|
15
|
+
export { A as Action, i as CompanyInput, j as CompanyInterface, a as ContentInput, C as ContentInterface, d as ModuleDefinition, h as ModuleFactory, c as ModulePermissionDefinition, M as ModuleWithPermissions, k as NotificationInput, N as NotificationInterface, b as PageUrl, P as PermissionCheck, e as PermissionConfig, f as PermissionModule, g as PermissionUser, l as RoleInput, m as UserInput, U as UserInterface } from './notification.interface-DYDZENx2.js';
|
|
16
|
+
export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.interface-BTco8PWs.js';
|
|
17
17
|
export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, e as PriceRecurring, q as PromotionCodeValidationResult, c as ProrationLineItem, b as ProrationPreviewInterface, R as ReportUsageInput, S as StripeCustomerInterface, a as StripeInvoiceInterface, f as StripePriceInput, d as StripePriceInterface, h as StripeProductInput, g as StripeProductInterface, l as StripeSubscriptionCreateMeta, m as StripeSubscriptionCreateResponse, k as StripeSubscriptionInput, j as StripeSubscriptionInterface, n as StripeUsageInterface, i as SubscriptionStatus, p as UsageRecordInterface, U as UsageSummaryInterface } from './stripe-promotion-code.interface-BcJty0rv.js';
|
|
18
|
-
export { C as ContentInput, a as ContentInterface } from './content.interface-D-xdYxjt.js';
|
|
19
18
|
import { F as FeatureInterface } from './feature.interface-CIWxo8NP.js';
|
|
20
19
|
export { M as ModuleInterface } from './feature.interface-CIWxo8NP.js';
|
|
21
20
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-vL7za9Bz.js';
|
|
22
|
-
export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-
|
|
21
|
+
export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-n0lfSf27.js';
|
|
23
22
|
export { Q as QuestionnaireField, a as QuestionnaireFieldType, b as QuestionnaireOption, W as WaitlistConfig, c as configureWaitlist, g as getWaitlistConfig } from './waitlist.config-kPfjImle.js';
|
|
24
23
|
import { P as PermissionMappingInterface, M as ModulePathsInterface } from './ModulePathsInterface-wVS5Raa4.js';
|
|
25
24
|
export { c as ACTION_TYPES, A as ActionType, C as COMPANY_ADMINISTRATOR_ROLE_ID, a as PermissionValue, b as PermissionsMap } from './ModulePathsInterface-wVS5Raa4.js';
|
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunk6ROMPIIPjs = require('./chunk-6ROMPIIP.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -183,7 +183,11 @@ var _chunkWOJIRXIPjs = require('./chunk-WOJIRXIP.js');
|
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
var _chunk56VU7A4Ijs = require('./chunk-56VU7A4I.js');
|
|
187
191
|
require('./chunk-LXKSUWAV.js');
|
|
188
192
|
require('./chunk-IBS6NI7D.js');
|
|
189
193
|
|
|
@@ -391,5 +395,9 @@ require('./chunk-7QVYU63E.js');
|
|
|
391
395
|
|
|
392
396
|
|
|
393
397
|
|
|
394
|
-
exports.ACTION_TYPES = _chunkWOJIRXIPjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunk37KYO2UDjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk37KYO2UDjs.AbstractApiData; exports.AbstractService = _chunk37KYO2UDjs.AbstractService; exports.Action = _chunk37KYO2UDjs.Action; exports.AuditLog = _chunk37KYO2UDjs.AuditLog; exports.AuditLogModule = _chunk37KYO2UDjs.AuditLogModule; exports.AuditLogService = _chunk37KYO2UDjs.AuditLogService; exports.Auth = _chunk37KYO2UDjs.Auth; exports.AuthComponent = _chunk37KYO2UDjs.AuthComponent; exports.AuthModule = _chunk37KYO2UDjs.AuthModule; exports.AuthService = _chunk37KYO2UDjs.AuthService; exports.AuthorModule = _chunk37KYO2UDjs.AuthorModule; exports.BackupCodeVerify = _chunk37KYO2UDjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk37KYO2UDjs.BackupCodeVerifyModule; exports.Billing = _chunk37KYO2UDjs.Billing; exports.BillingModule = _chunk37KYO2UDjs.BillingModule; exports.BillingService = _chunk37KYO2UDjs.BillingService; exports.BlockNoteDiffUtil = _chunk37KYO2UDjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk37KYO2UDjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkWOJIRXIPjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.ClientAbstractService = _chunk37KYO2UDjs.ClientAbstractService; exports.ClientHttpMethod = _chunk37KYO2UDjs.ClientHttpMethod; exports.Company = _chunk37KYO2UDjs.Company; exports.CompanyFields = _chunk37KYO2UDjs.CompanyFields; exports.CompanyModule = _chunk37KYO2UDjs.CompanyModule; exports.CompanyService = _chunk37KYO2UDjs.CompanyService; exports.Content = _chunk37KYO2UDjs.Content; exports.ContentFields = _chunk37KYO2UDjs.ContentFields; exports.ContentModule = _chunk37KYO2UDjs.ContentModule; exports.ContentService = _chunk37KYO2UDjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk37KYO2UDjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunk37KYO2UDjs.EndpointCreator; exports.Feature = _chunk37KYO2UDjs.Feature; exports.FeatureModule = _chunk37KYO2UDjs.FeatureModule; exports.FeatureService = _chunk37KYO2UDjs.FeatureService; exports.HttpMethod = _chunk37KYO2UDjs.HttpMethod; exports.InvoiceStatus = _chunk37KYO2UDjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunk37KYO2UDjs.Module; exports.ModuleModule = _chunk37KYO2UDjs.ModuleModule; exports.ModulePaths = _chunk37KYO2UDjs.ModulePaths; exports.ModulePathsModule = _chunk37KYO2UDjs.ModulePathsModule; exports.ModuleRegistrar = _chunk37KYO2UDjs.ModuleRegistrar; exports.ModuleRegistry = _chunk37KYO2UDjs.ModuleRegistry; exports.Modules = _chunk37KYO2UDjs.Modules; exports.Notification = _chunk37KYO2UDjs.Notification; exports.NotificationFields = _chunk37KYO2UDjs.NotificationFields; exports.NotificationModule = _chunk37KYO2UDjs.NotificationModule; exports.NotificationService = _chunk37KYO2UDjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk37KYO2UDjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk37KYO2UDjs.OAuthClient; exports.OAuthModule = _chunk37KYO2UDjs.OAuthModule; exports.OAuthService = _chunk37KYO2UDjs.OAuthService; exports.Passkey = _chunk37KYO2UDjs.Passkey; exports.PasskeyAuthenticationOptions = _chunk37KYO2UDjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk37KYO2UDjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk37KYO2UDjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk37KYO2UDjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk37KYO2UDjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk37KYO2UDjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk37KYO2UDjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk37KYO2UDjs.PasskeyRename; exports.PasskeyRenameModule = _chunk37KYO2UDjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk37KYO2UDjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk37KYO2UDjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk37KYO2UDjs.PaymentMethod; exports.PermissionMapping = _chunk37KYO2UDjs.PermissionMapping; exports.PermissionMappingModule = _chunk37KYO2UDjs.PermissionMappingModule; exports.Push = _chunk37KYO2UDjs.Push; exports.PushModule = _chunk37KYO2UDjs.PushModule; exports.PushService = _chunk37KYO2UDjs.PushService; exports.RbacService = _chunkWOJIRXIPjs.RbacService; exports.ReferralModule = _chunk37KYO2UDjs.ReferralModule; exports.ReferralService = _chunk37KYO2UDjs.ReferralService; exports.ReferralStats = _chunk37KYO2UDjs.ReferralStats; exports.ReferralStatsModule = _chunk37KYO2UDjs.ReferralStatsModule; exports.RehydrationFactory = _chunk37KYO2UDjs.RehydrationFactory; exports.Role = _chunk37KYO2UDjs.Role; exports.RoleFields = _chunk37KYO2UDjs.RoleFields; exports.RoleModule = _chunk37KYO2UDjs.RoleModule; exports.RoleService = _chunk37KYO2UDjs.RoleService; exports.S3 = _chunk37KYO2UDjs.S3; exports.S3Module = _chunk37KYO2UDjs.S3Module; exports.S3Service = _chunk37KYO2UDjs.S3Service; exports.StripeCustomer = _chunk37KYO2UDjs.StripeCustomer; exports.StripeCustomerModule = _chunk37KYO2UDjs.StripeCustomerModule; exports.StripeCustomerService = _chunk37KYO2UDjs.StripeCustomerService; exports.StripeInvoice = _chunk37KYO2UDjs.StripeInvoice; exports.StripeInvoiceModule = _chunk37KYO2UDjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk37KYO2UDjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk37KYO2UDjs.StripePaymentMethodModule; exports.StripePrice = _chunk37KYO2UDjs.StripePrice; exports.StripePriceModule = _chunk37KYO2UDjs.StripePriceModule; exports.StripePriceService = _chunk37KYO2UDjs.StripePriceService; exports.StripeProduct = _chunk37KYO2UDjs.StripeProduct; exports.StripeProductModule = _chunk37KYO2UDjs.StripeProductModule; exports.StripeProductService = _chunk37KYO2UDjs.StripeProductService; exports.StripePromotionCode = _chunk37KYO2UDjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk37KYO2UDjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk37KYO2UDjs.StripePromotionCodeService; exports.StripeSubscription = _chunk37KYO2UDjs.StripeSubscription; exports.StripeSubscriptionModule = _chunk37KYO2UDjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk37KYO2UDjs.StripeSubscriptionService; exports.StripeUsage = _chunk37KYO2UDjs.StripeUsage; exports.StripeUsageModule = _chunk37KYO2UDjs.StripeUsageModule; exports.StripeUsageService = _chunk37KYO2UDjs.StripeUsageService; exports.SubscriptionStatus = _chunk37KYO2UDjs.SubscriptionStatus; exports.TableOptions = _chunk37KYO2UDjs.TableOptions; exports.TotpAuthenticator = _chunk37KYO2UDjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk37KYO2UDjs.TotpAuthenticatorModule; exports.TotpSetup = _chunk37KYO2UDjs.TotpSetup; exports.TotpSetupModule = _chunk37KYO2UDjs.TotpSetupModule; exports.TotpVerify = _chunk37KYO2UDjs.TotpVerify; exports.TotpVerifyLogin = _chunk37KYO2UDjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk37KYO2UDjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk37KYO2UDjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk37KYO2UDjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk37KYO2UDjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk37KYO2UDjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk37KYO2UDjs.TwoFactorEnableModule; exports.TwoFactorService = _chunk37KYO2UDjs.TwoFactorService; exports.TwoFactorStatus = _chunk37KYO2UDjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk37KYO2UDjs.TwoFactorStatusModule; exports.User = _chunk37KYO2UDjs.User; exports.UserFields = _chunk37KYO2UDjs.UserFields; exports.UserModule = _chunk37KYO2UDjs.UserModule; exports.UserService = _chunk37KYO2UDjs.UserService; exports.Waitlist = _chunk37KYO2UDjs.Waitlist; exports.WaitlistModule = _chunk37KYO2UDjs.WaitlistModule; exports.WaitlistService = _chunk37KYO2UDjs.WaitlistService; exports.WaitlistStats = _chunk37KYO2UDjs.WaitlistStats; exports.WaitlistStatsModule = _chunk37KYO2UDjs.WaitlistStatsModule; exports.checkPermissions = _chunk37KYO2UDjs.checkPermissions; exports.checkPermissionsFromServer = _chunk37KYO2UDjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk37KYO2UDjs.clearLastApiTotal; exports.cn = _chunk37KYO2UDjs.cn; exports.composeRefs = _chunk37KYO2UDjs.composeRefs; exports.configureAuth = _chunk37KYO2UDjs.configureAuth; exports.configureI18n = _chunkWOJIRXIPjs.configureI18n; exports.configureJsonApi = _chunkWOJIRXIPjs.configureJsonApi; exports.configureLogin = _chunkWOJIRXIPjs.configureLogin; exports.configureReferral = _chunkWOJIRXIPjs.configureReferral; exports.configureRoles = _chunkWOJIRXIPjs.configureRoles; exports.configureWaitlist = _chunkWOJIRXIPjs.configureWaitlist; exports.createJsonApiInclusion = _chunk37KYO2UDjs.createJsonApiInclusion; exports.dismissToast = _chunk37KYO2UDjs.dismissToast; exports.entityObjectSchema = _chunk37KYO2UDjs.entityObjectSchema; exports.exists = _chunk37KYO2UDjs.exists; exports.formatDate = _chunk37KYO2UDjs.formatDate; exports.getApiUrl = _chunkWOJIRXIPjs.getApiUrl; exports.getAppUrl = _chunkWOJIRXIPjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk37KYO2UDjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk37KYO2UDjs.getGlobalErrorHandler; exports.getIcon = _chunk37KYO2UDjs.getIcon; exports.getIconByModule = _chunk37KYO2UDjs.getIconByModule; exports.getIconByModuleName = _chunk37KYO2UDjs.getIconByModuleName; exports.getInitials = _chunk37KYO2UDjs.getInitials; exports.getLastApiTotal = _chunk37KYO2UDjs.getLastApiTotal; exports.getLucideIcon = _chunk37KYO2UDjs.getLucideIcon; exports.getLucideIconByModule = _chunk37KYO2UDjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk37KYO2UDjs.getLucideIconByModuleName; exports.getReferralConfig = _chunkWOJIRXIPjs.getReferralConfig; exports.getRoleId = _chunkWOJIRXIPjs.getRoleId; exports.getStripePublishableKey = _chunkWOJIRXIPjs.getStripePublishableKey; exports.getTableComponents = _chunk37KYO2UDjs.getTableComponents; exports.getTableOptions = _chunk37KYO2UDjs.getTableOptions; exports.getTokenHandler = _chunk37KYO2UDjs.getTokenHandler; exports.getTrackablePages = _chunkWOJIRXIPjs.getTrackablePages; exports.getValueFromPath = _chunk37KYO2UDjs.getValueFromPath; exports.getWaitlistConfig = _chunkWOJIRXIPjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkWOJIRXIPjs.isReferralEnabled; exports.isRolesConfigured = _chunkWOJIRXIPjs.isRolesConfigured; exports.rehydrate = _chunk37KYO2UDjs.rehydrate; exports.rehydrateList = _chunk37KYO2UDjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk37KYO2UDjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk37KYO2UDjs.setGlobalErrorHandler; exports.showCustomToast = _chunk37KYO2UDjs.showCustomToast; exports.showError = _chunk37KYO2UDjs.showError; exports.showToast = _chunk37KYO2UDjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunk37KYO2UDjs.useComposedRefs; exports.useIsMobile = _chunk37KYO2UDjs.useIsMobile; exports.userObjectSchema = _chunk37KYO2UDjs.userObjectSchema;
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
exports.ACTION_TYPES = _chunk6ROMPIIPjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunk56VU7A4Ijs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk56VU7A4Ijs.AbstractApiData; exports.AbstractService = _chunk56VU7A4Ijs.AbstractService; exports.Action = _chunk56VU7A4Ijs.Action; exports.AuditLog = _chunk56VU7A4Ijs.AuditLog; exports.AuditLogModule = _chunk56VU7A4Ijs.AuditLogModule; exports.AuditLogService = _chunk56VU7A4Ijs.AuditLogService; exports.Auth = _chunk56VU7A4Ijs.Auth; exports.AuthComponent = _chunk56VU7A4Ijs.AuthComponent; exports.AuthModule = _chunk56VU7A4Ijs.AuthModule; exports.AuthService = _chunk56VU7A4Ijs.AuthService; exports.AuthorModule = _chunk56VU7A4Ijs.AuthorModule; exports.BackupCodeVerify = _chunk56VU7A4Ijs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk56VU7A4Ijs.BackupCodeVerifyModule; exports.Billing = _chunk56VU7A4Ijs.Billing; exports.BillingModule = _chunk56VU7A4Ijs.BillingModule; exports.BillingService = _chunk56VU7A4Ijs.BillingService; exports.BlockNoteDiffUtil = _chunk56VU7A4Ijs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk56VU7A4Ijs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunk6ROMPIIPjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.ClientAbstractService = _chunk56VU7A4Ijs.ClientAbstractService; exports.ClientHttpMethod = _chunk56VU7A4Ijs.ClientHttpMethod; exports.Company = _chunk56VU7A4Ijs.Company; exports.CompanyFields = _chunk56VU7A4Ijs.CompanyFields; exports.CompanyModule = _chunk56VU7A4Ijs.CompanyModule; exports.CompanyService = _chunk56VU7A4Ijs.CompanyService; exports.Content = _chunk56VU7A4Ijs.Content; exports.ContentFields = _chunk56VU7A4Ijs.ContentFields; exports.ContentModule = _chunk56VU7A4Ijs.ContentModule; exports.ContentService = _chunk56VU7A4Ijs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk56VU7A4Ijs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunk56VU7A4Ijs.EndpointCreator; exports.Feature = _chunk56VU7A4Ijs.Feature; exports.FeatureModule = _chunk56VU7A4Ijs.FeatureModule; exports.FeatureService = _chunk56VU7A4Ijs.FeatureService; exports.HowTo = _chunk56VU7A4Ijs.HowTo; exports.HowToFields = _chunk56VU7A4Ijs.HowToFields; exports.HowToModule = _chunk56VU7A4Ijs.HowToModule; exports.HowToService = _chunk56VU7A4Ijs.HowToService; exports.HttpMethod = _chunk56VU7A4Ijs.HttpMethod; exports.InvoiceStatus = _chunk56VU7A4Ijs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunk56VU7A4Ijs.Module; exports.ModuleModule = _chunk56VU7A4Ijs.ModuleModule; exports.ModulePaths = _chunk56VU7A4Ijs.ModulePaths; exports.ModulePathsModule = _chunk56VU7A4Ijs.ModulePathsModule; exports.ModuleRegistrar = _chunk56VU7A4Ijs.ModuleRegistrar; exports.ModuleRegistry = _chunk56VU7A4Ijs.ModuleRegistry; exports.Modules = _chunk56VU7A4Ijs.Modules; exports.Notification = _chunk56VU7A4Ijs.Notification; exports.NotificationFields = _chunk56VU7A4Ijs.NotificationFields; exports.NotificationModule = _chunk56VU7A4Ijs.NotificationModule; exports.NotificationService = _chunk56VU7A4Ijs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk56VU7A4Ijs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk56VU7A4Ijs.OAuthClient; exports.OAuthModule = _chunk56VU7A4Ijs.OAuthModule; exports.OAuthService = _chunk56VU7A4Ijs.OAuthService; exports.Passkey = _chunk56VU7A4Ijs.Passkey; exports.PasskeyAuthenticationOptions = _chunk56VU7A4Ijs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk56VU7A4Ijs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk56VU7A4Ijs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk56VU7A4Ijs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk56VU7A4Ijs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk56VU7A4Ijs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk56VU7A4Ijs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk56VU7A4Ijs.PasskeyRename; exports.PasskeyRenameModule = _chunk56VU7A4Ijs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk56VU7A4Ijs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk56VU7A4Ijs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk56VU7A4Ijs.PaymentMethod; exports.PermissionMapping = _chunk56VU7A4Ijs.PermissionMapping; exports.PermissionMappingModule = _chunk56VU7A4Ijs.PermissionMappingModule; exports.Push = _chunk56VU7A4Ijs.Push; exports.PushModule = _chunk56VU7A4Ijs.PushModule; exports.PushService = _chunk56VU7A4Ijs.PushService; exports.RbacService = _chunk6ROMPIIPjs.RbacService; exports.ReferralModule = _chunk56VU7A4Ijs.ReferralModule; exports.ReferralService = _chunk56VU7A4Ijs.ReferralService; exports.ReferralStats = _chunk56VU7A4Ijs.ReferralStats; exports.ReferralStatsModule = _chunk56VU7A4Ijs.ReferralStatsModule; exports.RehydrationFactory = _chunk56VU7A4Ijs.RehydrationFactory; exports.Role = _chunk56VU7A4Ijs.Role; exports.RoleFields = _chunk56VU7A4Ijs.RoleFields; exports.RoleModule = _chunk56VU7A4Ijs.RoleModule; exports.RoleService = _chunk56VU7A4Ijs.RoleService; exports.S3 = _chunk56VU7A4Ijs.S3; exports.S3Module = _chunk56VU7A4Ijs.S3Module; exports.S3Service = _chunk56VU7A4Ijs.S3Service; exports.StripeCustomer = _chunk56VU7A4Ijs.StripeCustomer; exports.StripeCustomerModule = _chunk56VU7A4Ijs.StripeCustomerModule; exports.StripeCustomerService = _chunk56VU7A4Ijs.StripeCustomerService; exports.StripeInvoice = _chunk56VU7A4Ijs.StripeInvoice; exports.StripeInvoiceModule = _chunk56VU7A4Ijs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk56VU7A4Ijs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk56VU7A4Ijs.StripePaymentMethodModule; exports.StripePrice = _chunk56VU7A4Ijs.StripePrice; exports.StripePriceModule = _chunk56VU7A4Ijs.StripePriceModule; exports.StripePriceService = _chunk56VU7A4Ijs.StripePriceService; exports.StripeProduct = _chunk56VU7A4Ijs.StripeProduct; exports.StripeProductModule = _chunk56VU7A4Ijs.StripeProductModule; exports.StripeProductService = _chunk56VU7A4Ijs.StripeProductService; exports.StripePromotionCode = _chunk56VU7A4Ijs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk56VU7A4Ijs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk56VU7A4Ijs.StripePromotionCodeService; exports.StripeSubscription = _chunk56VU7A4Ijs.StripeSubscription; exports.StripeSubscriptionModule = _chunk56VU7A4Ijs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk56VU7A4Ijs.StripeSubscriptionService; exports.StripeUsage = _chunk56VU7A4Ijs.StripeUsage; exports.StripeUsageModule = _chunk56VU7A4Ijs.StripeUsageModule; exports.StripeUsageService = _chunk56VU7A4Ijs.StripeUsageService; exports.SubscriptionStatus = _chunk56VU7A4Ijs.SubscriptionStatus; exports.TableOptions = _chunk56VU7A4Ijs.TableOptions; exports.TotpAuthenticator = _chunk56VU7A4Ijs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk56VU7A4Ijs.TotpAuthenticatorModule; exports.TotpSetup = _chunk56VU7A4Ijs.TotpSetup; exports.TotpSetupModule = _chunk56VU7A4Ijs.TotpSetupModule; exports.TotpVerify = _chunk56VU7A4Ijs.TotpVerify; exports.TotpVerifyLogin = _chunk56VU7A4Ijs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk56VU7A4Ijs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk56VU7A4Ijs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk56VU7A4Ijs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk56VU7A4Ijs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk56VU7A4Ijs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk56VU7A4Ijs.TwoFactorEnableModule; exports.TwoFactorService = _chunk56VU7A4Ijs.TwoFactorService; exports.TwoFactorStatus = _chunk56VU7A4Ijs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk56VU7A4Ijs.TwoFactorStatusModule; exports.User = _chunk56VU7A4Ijs.User; exports.UserFields = _chunk56VU7A4Ijs.UserFields; exports.UserModule = _chunk56VU7A4Ijs.UserModule; exports.UserService = _chunk56VU7A4Ijs.UserService; exports.Waitlist = _chunk56VU7A4Ijs.Waitlist; exports.WaitlistModule = _chunk56VU7A4Ijs.WaitlistModule; exports.WaitlistService = _chunk56VU7A4Ijs.WaitlistService; exports.WaitlistStats = _chunk56VU7A4Ijs.WaitlistStats; exports.WaitlistStatsModule = _chunk56VU7A4Ijs.WaitlistStatsModule; exports.checkPermissions = _chunk56VU7A4Ijs.checkPermissions; exports.checkPermissionsFromServer = _chunk56VU7A4Ijs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk56VU7A4Ijs.clearLastApiTotal; exports.cn = _chunk56VU7A4Ijs.cn; exports.composeRefs = _chunk56VU7A4Ijs.composeRefs; exports.configureAuth = _chunk56VU7A4Ijs.configureAuth; exports.configureI18n = _chunk6ROMPIIPjs.configureI18n; exports.configureJsonApi = _chunk6ROMPIIPjs.configureJsonApi; exports.configureLogin = _chunk6ROMPIIPjs.configureLogin; exports.configureReferral = _chunk6ROMPIIPjs.configureReferral; exports.configureRoles = _chunk6ROMPIIPjs.configureRoles; exports.configureWaitlist = _chunk6ROMPIIPjs.configureWaitlist; exports.createJsonApiInclusion = _chunk56VU7A4Ijs.createJsonApiInclusion; exports.dismissToast = _chunk56VU7A4Ijs.dismissToast; exports.entityObjectSchema = _chunk56VU7A4Ijs.entityObjectSchema; exports.exists = _chunk56VU7A4Ijs.exists; exports.formatDate = _chunk56VU7A4Ijs.formatDate; exports.getApiUrl = _chunk6ROMPIIPjs.getApiUrl; exports.getAppUrl = _chunk6ROMPIIPjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk56VU7A4Ijs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk56VU7A4Ijs.getGlobalErrorHandler; exports.getIcon = _chunk56VU7A4Ijs.getIcon; exports.getIconByModule = _chunk56VU7A4Ijs.getIconByModule; exports.getIconByModuleName = _chunk56VU7A4Ijs.getIconByModuleName; exports.getInitials = _chunk56VU7A4Ijs.getInitials; exports.getLastApiTotal = _chunk56VU7A4Ijs.getLastApiTotal; exports.getLucideIcon = _chunk56VU7A4Ijs.getLucideIcon; exports.getLucideIconByModule = _chunk56VU7A4Ijs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk56VU7A4Ijs.getLucideIconByModuleName; exports.getReferralConfig = _chunk6ROMPIIPjs.getReferralConfig; exports.getRoleId = _chunk6ROMPIIPjs.getRoleId; exports.getStripePublishableKey = _chunk6ROMPIIPjs.getStripePublishableKey; exports.getTableComponents = _chunk56VU7A4Ijs.getTableComponents; exports.getTableOptions = _chunk56VU7A4Ijs.getTableOptions; exports.getTokenHandler = _chunk56VU7A4Ijs.getTokenHandler; exports.getTrackablePages = _chunk6ROMPIIPjs.getTrackablePages; exports.getValueFromPath = _chunk56VU7A4Ijs.getValueFromPath; exports.getWaitlistConfig = _chunk6ROMPIIPjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunk6ROMPIIPjs.isReferralEnabled; exports.isRolesConfigured = _chunk6ROMPIIPjs.isRolesConfigured; exports.rehydrate = _chunk56VU7A4Ijs.rehydrate; exports.rehydrateList = _chunk56VU7A4Ijs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk56VU7A4Ijs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk56VU7A4Ijs.setGlobalErrorHandler; exports.showCustomToast = _chunk56VU7A4Ijs.showCustomToast; exports.showError = _chunk56VU7A4Ijs.showError; exports.showToast = _chunk56VU7A4Ijs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunk56VU7A4Ijs.useComposedRefs; exports.useIsMobile = _chunk56VU7A4Ijs.useIsMobile; exports.userObjectSchema = _chunk56VU7A4Ijs.userObjectSchema;
|
|
395
403
|
//# 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;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,
|
|
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;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;AACA;AACA;AACA;AACA;AACF,2jXAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
|
package/dist/index.mjs
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
getWaitlistConfig,
|
|
18
18
|
isReferralEnabled,
|
|
19
19
|
isRolesConfigured
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-WJYWWOTG.mjs";
|
|
21
21
|
import {
|
|
22
22
|
AVAILABLE_OAUTH_SCOPES,
|
|
23
23
|
AbstractApiData,
|
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
Feature,
|
|
54
54
|
FeatureModule,
|
|
55
55
|
FeatureService,
|
|
56
|
+
HowTo,
|
|
57
|
+
HowToFields,
|
|
58
|
+
HowToModule,
|
|
59
|
+
HowToService,
|
|
56
60
|
HttpMethod,
|
|
57
61
|
InvoiceStatus,
|
|
58
62
|
Module,
|
|
@@ -183,7 +187,7 @@ import {
|
|
|
183
187
|
useComposedRefs,
|
|
184
188
|
useIsMobile,
|
|
185
189
|
userObjectSchema
|
|
186
|
-
} from "./chunk-
|
|
190
|
+
} from "./chunk-GZNHBAZF.mjs";
|
|
187
191
|
import "./chunk-AUXK7QSA.mjs";
|
|
188
192
|
import "./chunk-C7C7VY4F.mjs";
|
|
189
193
|
import {
|
|
@@ -237,6 +241,10 @@ export {
|
|
|
237
241
|
Feature,
|
|
238
242
|
FeatureModule,
|
|
239
243
|
FeatureService,
|
|
244
|
+
HowTo,
|
|
245
|
+
HowToFields,
|
|
246
|
+
HowToModule,
|
|
247
|
+
HowToService,
|
|
240
248
|
HttpMethod,
|
|
241
249
|
InvoiceStatus,
|
|
242
250
|
JsonApiDataFactory,
|
|
@@ -189,6 +189,23 @@ interface UserInterface extends ApiDataInterface {
|
|
|
189
189
|
get modules(): ModuleInterface[];
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
+
type ContentInput = {
|
|
193
|
+
id: string;
|
|
194
|
+
name?: string;
|
|
195
|
+
authorId: string;
|
|
196
|
+
editorIds?: string[];
|
|
197
|
+
};
|
|
198
|
+
interface ContentInterface extends ApiDataInterface {
|
|
199
|
+
get contentType(): string | undefined;
|
|
200
|
+
get name(): string;
|
|
201
|
+
get abstract(): string | undefined;
|
|
202
|
+
get tldr(): string | undefined;
|
|
203
|
+
get aiStatus(): string;
|
|
204
|
+
get relevance(): number | undefined;
|
|
205
|
+
get author(): UserInterface;
|
|
206
|
+
get editors(): UserInterface[];
|
|
207
|
+
}
|
|
208
|
+
|
|
192
209
|
type NotificationInput = {
|
|
193
210
|
id: string;
|
|
194
211
|
isRead: boolean;
|
|
@@ -201,4 +218,4 @@ interface NotificationInterface extends ApiDataInterface {
|
|
|
201
218
|
get actor(): UserInterface | undefined;
|
|
202
219
|
}
|
|
203
220
|
|
|
204
|
-
export { Action as A, type
|
|
221
|
+
export { Action as A, type ContentInterface as C, type ModuleWithPermissions as M, type NotificationInterface as N, type PermissionCheck as P, type RoleInterface as R, type UserInterface as U, type ContentInput as a, type PageUrl as b, type ModulePermissionDefinition as c, type ModuleDefinition as d, type PermissionConfig as e, type PermissionModule as f, type PermissionUser as g, type ModuleFactory as h, type CompanyInput as i, type CompanyInterface as j, type NotificationInput as k, type RoleInput as l, type UserInput as m };
|
package/dist/{notification.interface-C6UcmJqu.d.mts → notification.interface-DrHu_1MM.d.mts}
RENAMED
|
@@ -189,6 +189,23 @@ interface UserInterface extends ApiDataInterface {
|
|
|
189
189
|
get modules(): ModuleInterface[];
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
+
type ContentInput = {
|
|
193
|
+
id: string;
|
|
194
|
+
name?: string;
|
|
195
|
+
authorId: string;
|
|
196
|
+
editorIds?: string[];
|
|
197
|
+
};
|
|
198
|
+
interface ContentInterface extends ApiDataInterface {
|
|
199
|
+
get contentType(): string | undefined;
|
|
200
|
+
get name(): string;
|
|
201
|
+
get abstract(): string | undefined;
|
|
202
|
+
get tldr(): string | undefined;
|
|
203
|
+
get aiStatus(): string;
|
|
204
|
+
get relevance(): number | undefined;
|
|
205
|
+
get author(): UserInterface;
|
|
206
|
+
get editors(): UserInterface[];
|
|
207
|
+
}
|
|
208
|
+
|
|
192
209
|
type NotificationInput = {
|
|
193
210
|
id: string;
|
|
194
211
|
isRead: boolean;
|
|
@@ -201,4 +218,4 @@ interface NotificationInterface extends ApiDataInterface {
|
|
|
201
218
|
get actor(): UserInterface | undefined;
|
|
202
219
|
}
|
|
203
220
|
|
|
204
|
-
export { Action as A, type
|
|
221
|
+
export { Action as A, type ContentInterface as C, type ModuleWithPermissions as M, type NotificationInterface as N, type PermissionCheck as P, type RoleInterface as R, type UserInterface as U, type ContentInput as a, type PageUrl as b, type ModulePermissionDefinition as c, type ModuleDefinition as d, type PermissionConfig as e, type PermissionModule as f, type PermissionUser as g, type ModuleFactory as h, type CompanyInput as i, type CompanyInterface as j, type NotificationInput as k, type RoleInput as l, type UserInput as m };
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { F as FeatureInterface } from './feature.interface-CIWxo8NP.js';
|
|
2
|
-
import { R as RoleInterface, U as UserInterface,
|
|
2
|
+
import { R as RoleInterface, U as UserInterface, m as UserInput, j as CompanyInterface, i as CompanyInput, C as ContentInterface, N as NotificationInterface } from './notification.interface-DYDZENx2.js';
|
|
3
3
|
import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiDataInterface-DPP8s46n.js';
|
|
4
|
-
import { A as AuthInput, b as AuthInterface } from './auth.interface-
|
|
5
|
-
import { a as ContentInterface } from './content.interface-D-xdYxjt.js';
|
|
4
|
+
import { A as AuthInput, b as AuthInterface } from './auth.interface-BTco8PWs.js';
|
|
6
5
|
import { A as ApiRequestDataTypeInterface } from './ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
7
6
|
|
|
8
7
|
declare enum HttpMethod {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { F as FeatureInterface } from './feature.interface-BxFFOPNq.mjs';
|
|
2
|
-
import { R as RoleInterface, U as UserInterface,
|
|
2
|
+
import { R as RoleInterface, U as UserInterface, m as UserInput, j as CompanyInterface, i as CompanyInput, C as ContentInterface, N as NotificationInterface } from './notification.interface-DrHu_1MM.mjs';
|
|
3
3
|
import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiDataInterface-DPP8s46n.mjs';
|
|
4
|
-
import { A as AuthInput, b as AuthInterface } from './auth.interface-
|
|
5
|
-
import { a as ContentInterface } from './content.interface-8T5-G84c.mjs';
|
|
4
|
+
import { A as AuthInput, b as AuthInterface } from './auth.interface-C4uJzBec.mjs';
|
|
6
5
|
import { A as ApiRequestDataTypeInterface } from './ApiRequestDataTypeInterface-CYEcRUrh.mjs';
|
|
7
6
|
|
|
8
7
|
declare enum HttpMethod {
|
package/dist/server/index.d.mts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { A as ApiData } from '../ApiData-DPKNfY-9.mjs';
|
|
2
|
-
import { M as ModuleWithPermissions, A as Action } from '../notification.interface-
|
|
2
|
+
import { M as ModuleWithPermissions, A as Action } from '../notification.interface-DrHu_1MM.mjs';
|
|
3
3
|
import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
|
|
4
4
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-zeewugD7.mjs';
|
|
5
|
-
export { A as ServerAuthService, C as ServerCompanyService, a as ServerContentService, F as ServerFeatureService, N as ServerNotificationService, P as ServerPushService, R as ServerRoleService, S as ServerS3Service, U as ServerUserService } from '../s3.service-
|
|
5
|
+
export { A as ServerAuthService, C as ServerCompanyService, a as ServerContentService, F as ServerFeatureService, N as ServerNotificationService, P as ServerPushService, R as ServerRoleService, S as ServerS3Service, U as ServerUserService } from '../s3.service-TsN2unZr.mjs';
|
|
6
6
|
import 'lucide-react';
|
|
7
7
|
import '../ApiDataInterface-DPP8s46n.mjs';
|
|
8
8
|
import '../feature.interface-BxFFOPNq.mjs';
|
|
9
|
-
import '../auth.interface-
|
|
10
|
-
import '../content.interface-8T5-G84c.mjs';
|
|
9
|
+
import '../auth.interface-C4uJzBec.mjs';
|
|
11
10
|
|
|
12
11
|
type CacheProfile = "seconds" | "minutes" | "hours" | "days" | "weeks" | "max" | "default";
|
|
13
12
|
/**
|