@carlonicora/nextjs-jsonapi 1.77.2 → 1.78.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/AssistantInterface-BYgI5z1-.d.mts +12 -0
- package/dist/AssistantInterface-DfDcz0gJ.d.ts +12 -0
- package/dist/AssistantMessageInterface-D0Kwf8CR.d.mts +36 -0
- package/dist/AssistantMessageInterface-DS_tyJTV.d.ts +36 -0
- package/dist/{BlockNoteEditor-ILXF7KHN.js → BlockNoteEditor-2G5UYALC.js} +14 -14
- package/dist/{BlockNoteEditor-ILXF7KHN.js.map → BlockNoteEditor-2G5UYALC.js.map} +1 -1
- package/dist/{BlockNoteEditor-ALVN35PS.mjs → BlockNoteEditor-JXK3JGKJ.mjs} +4 -4
- package/dist/billing/index.js +346 -346
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-FKLP4NED.js → chunk-FDJQRIMY.js} +320 -18
- package/dist/chunk-FDJQRIMY.js.map +1 -0
- package/dist/{chunk-XI35ALWY.mjs → chunk-I65SSQ5Z.mjs} +303 -1
- package/dist/chunk-I65SSQ5Z.mjs.map +1 -0
- package/dist/{chunk-ICD6MZ43.mjs → chunk-NB6TIKHK.mjs} +2090 -1463
- package/dist/chunk-NB6TIKHK.mjs.map +1 -0
- package/dist/{chunk-JOJZRGZL.mjs → chunk-NZOUEN67.mjs} +2 -2
- package/dist/{chunk-OTZEXASK.js → chunk-X4YDETTD.js} +11 -11
- package/dist/{chunk-OTZEXASK.js.map → chunk-X4YDETTD.js.map} +1 -1
- package/dist/{chunk-VSWQ7WIV.js → chunk-ZEDB6JVB.js} +1359 -732
- package/dist/chunk-ZEDB6JVB.js.map +1 -0
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +21 -2
- package/dist/components/index.d.ts +21 -2
- package/dist/components/index.js +10 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +9 -3
- package/dist/contexts/index.d.mts +26 -2
- package/dist/contexts/index.d.ts +26 -2
- 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 +110 -3
- package/dist/core/index.d.ts +110 -3
- package/dist/core/index.js +14 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +13 -1
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -2
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/index.ts +2 -0
- package/src/contexts/index.ts +1 -0
- package/src/core/index.ts +4 -0
- package/src/core/registry/ModuleRegistry.ts +9 -0
- package/src/features/assistant/AssistantModule.ts +19 -0
- package/src/features/assistant/components/containers/AssistantContainer.tsx +56 -0
- package/src/features/assistant/components/containers/__tests__/AssistantContainer.spec.tsx +101 -0
- package/src/features/assistant/components/index.ts +1 -0
- package/src/features/assistant/components/parts/AssistantComposer.tsx +56 -0
- package/src/features/assistant/components/parts/AssistantEmptyState.tsx +47 -0
- package/src/features/assistant/components/parts/AssistantSidebar.tsx +64 -0
- package/src/features/assistant/components/parts/AssistantStatusLine.tsx +19 -0
- package/src/features/assistant/components/parts/AssistantThread.tsx +36 -0
- package/src/features/assistant/components/parts/AssistantThreadHeader.tsx +91 -0
- package/src/features/assistant/components/parts/__tests__/AssistantComposer.spec.tsx +32 -0
- package/src/features/assistant/components/parts/__tests__/AssistantEmptyState.spec.tsx +27 -0
- package/src/features/assistant/components/parts/__tests__/AssistantSidebar.spec.tsx +58 -0
- package/src/features/assistant/components/parts/__tests__/AssistantStatusLine.spec.tsx +19 -0
- package/src/features/assistant/components/parts/__tests__/AssistantThread.spec.tsx +39 -0
- package/src/features/assistant/components/parts/__tests__/AssistantThreadHeader.spec.tsx +67 -0
- package/src/features/assistant/contexts/AssistantContext.tsx +255 -0
- package/src/features/assistant/contexts/__tests__/AssistantContext.spec.tsx +375 -0
- package/src/features/assistant/data/Assistant.ts +37 -0
- package/src/features/assistant/data/AssistantInterface.ts +11 -0
- package/src/features/assistant/data/AssistantService.ts +79 -0
- package/src/features/assistant/data/index.ts +3 -0
- package/src/features/assistant/index.ts +2 -0
- package/src/features/assistant/utils/__tests__/groupThreadsByBucket.spec.ts +24 -0
- package/src/features/assistant/utils/__tests__/resolveReferenceableModules.spec.ts +92 -0
- package/src/features/assistant/utils/groupThreadsByBucket.ts +26 -0
- package/src/features/assistant/utils/resolveReferenceableModules.ts +14 -0
- package/src/features/assistant-message/AssistantMessageModule.ts +28 -0
- package/src/features/assistant-message/components/MessageItem.tsx +60 -0
- package/src/features/assistant-message/components/MessageList.tsx +38 -0
- package/src/features/assistant-message/components/__tests__/MessageItem.spec.tsx +108 -0
- package/src/features/assistant-message/components/index.ts +2 -0
- package/src/features/assistant-message/components/parts/ReferenceBadges.tsx +46 -0
- package/src/features/assistant-message/components/parts/SuggestedFollowUps.tsx +52 -0
- package/src/features/assistant-message/components/parts/__tests__/ReferenceBadges.spec.tsx +59 -0
- package/src/features/assistant-message/components/parts/__tests__/SuggestedFollowUps.spec.tsx +29 -0
- package/src/features/assistant-message/data/AssistantMessage.ts +95 -0
- package/src/features/assistant-message/data/AssistantMessageInterface.ts +21 -0
- package/src/features/assistant-message/data/AssistantMessageService.ts +40 -0
- package/src/features/assistant-message/data/__tests__/AssistantMessage.spec.ts +158 -0
- package/src/features/assistant-message/data/index.ts +3 -0
- package/src/features/assistant-message/index.ts +2 -0
- package/src/features/user/contexts/CurrentUserContext.tsx +5 -13
- package/src/features/user/contexts/__tests__/CurrentUserContext.spec.tsx +141 -0
- package/src/hooks/usePushNotifications.ts +3 -0
- package/src/index.ts +4 -0
- package/dist/HowToInterface-BKhnkzBp.d.ts +0 -17
- package/dist/HowToInterface-Cj8OuQFf.d.mts +0 -17
- package/dist/chunk-FKLP4NED.js.map +0 -1
- package/dist/chunk-ICD6MZ43.mjs.map +0 -1
- package/dist/chunk-VSWQ7WIV.js.map +0 -1
- package/dist/chunk-XI35ALWY.mjs.map +0 -1
- /package/dist/{BlockNoteEditor-ALVN35PS.mjs.map → BlockNoteEditor-JXK3JGKJ.mjs.map} +0 -0
- /package/dist/{chunk-JOJZRGZL.mjs.map → chunk-NZOUEN67.mjs.map} +0 -0
package/dist/contexts/index.mjs
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
|
+
AssistantProvider,
|
|
3
4
|
CommonProvider,
|
|
4
5
|
CompanyProvider,
|
|
5
6
|
CurrentUserProvider,
|
|
@@ -15,6 +16,7 @@ import {
|
|
|
15
16
|
SocketProvider,
|
|
16
17
|
UserProvider,
|
|
17
18
|
recentPagesAtom,
|
|
19
|
+
useAssistantContext,
|
|
18
20
|
useCommonContext,
|
|
19
21
|
useCompanyContext,
|
|
20
22
|
useCurrentUserContext,
|
|
@@ -27,15 +29,16 @@ import {
|
|
|
27
29
|
useSharedContext,
|
|
28
30
|
useSocketContext,
|
|
29
31
|
useUserContext
|
|
30
|
-
} from "../chunk-
|
|
31
|
-
import "../chunk-
|
|
32
|
-
import "../chunk-
|
|
32
|
+
} from "../chunk-NB6TIKHK.mjs";
|
|
33
|
+
import "../chunk-NZOUEN67.mjs";
|
|
34
|
+
import "../chunk-I65SSQ5Z.mjs";
|
|
33
35
|
import "../chunk-AUXK7QSA.mjs";
|
|
34
36
|
import "../chunk-C7C7VY4F.mjs";
|
|
35
37
|
import "../chunk-BTKJFMFL.mjs";
|
|
36
38
|
import "../chunk-VOXD3ZLY.mjs";
|
|
37
39
|
import "../chunk-PAWJFY3S.mjs";
|
|
38
40
|
export {
|
|
41
|
+
AssistantProvider,
|
|
39
42
|
CommonProvider,
|
|
40
43
|
CompanyProvider,
|
|
41
44
|
CurrentUserProvider,
|
|
@@ -51,6 +54,7 @@ export {
|
|
|
51
54
|
SocketProvider,
|
|
52
55
|
UserProvider,
|
|
53
56
|
recentPagesAtom,
|
|
57
|
+
useAssistantContext,
|
|
54
58
|
useCommonContext,
|
|
55
59
|
useCompanyContext,
|
|
56
60
|
useCurrentUserContext,
|
package/dist/core/index.d.mts
CHANGED
|
@@ -7,8 +7,8 @@ import { b as AbstractService, i as TwoFactorChallengeInterface, c as NextRef, d
|
|
|
7
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-DGilbikH.mjs';
|
|
8
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-DG6obXUH.mjs';
|
|
9
9
|
export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-DG6obXUH.mjs';
|
|
10
|
-
import { a as HowToInterface, H as HowToInput } from '../
|
|
11
|
-
export { B as BreadcrumbItemData } from '../
|
|
10
|
+
import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, b as AssistantMessageInput } from '../AssistantMessageInterface-D0Kwf8CR.mjs';
|
|
11
|
+
export { B as BreadcrumbItemData } from '../AssistantMessageInterface-D0Kwf8CR.mjs';
|
|
12
12
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.mjs';
|
|
13
13
|
import { ClassValue } from 'clsx';
|
|
14
14
|
export { ClassValue } from 'clsx';
|
|
@@ -25,6 +25,7 @@ import { PublicKeyCredentialCreationOptionsJSON, RegistrationResponseJSON, Publi
|
|
|
25
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-ClZ7DxS9.mjs';
|
|
26
26
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-promotion-code.interface-ClZ7DxS9.mjs';
|
|
27
27
|
import { M as ModuleInterface, F as FeatureInterface } from '../feature.interface-CXb1-vNq.mjs';
|
|
28
|
+
import { a as AssistantInterface, A as AssistantInput } from '../AssistantInterface-BYgI5z1-.mjs';
|
|
28
29
|
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-o5FLpiN7.mjs';
|
|
29
30
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-o5FLpiN7.mjs';
|
|
30
31
|
import 'lucide-react';
|
|
@@ -233,6 +234,8 @@ interface FoundationModuleDefinitions {
|
|
|
233
234
|
Module: ModuleWithPermissions;
|
|
234
235
|
Content: ModuleWithPermissions;
|
|
235
236
|
HowTo: ModuleWithPermissions;
|
|
237
|
+
Assistant: ModuleWithPermissions;
|
|
238
|
+
AssistantMessage: ModuleWithPermissions;
|
|
236
239
|
Billing: ModuleWithPermissions;
|
|
237
240
|
StripeCustomer: ModuleWithPermissions;
|
|
238
241
|
StripePaymentMethod: ModuleWithPermissions;
|
|
@@ -279,6 +282,7 @@ declare class ModuleRegistryClass {
|
|
|
279
282
|
}[];
|
|
280
283
|
findByModelName(modelName: string): ModuleWithPermissions;
|
|
281
284
|
findByFeature(feature: string): ModuleWithPermissions[];
|
|
285
|
+
getAll(): ApiRequestDataTypeInterface[];
|
|
282
286
|
}
|
|
283
287
|
declare const ModuleRegistry: ModuleRegistryClass;
|
|
284
288
|
declare const Modules: ModuleDefinitions & {
|
|
@@ -1789,6 +1793,109 @@ declare class HowToService extends AbstractService {
|
|
|
1789
1793
|
}): Promise<void>;
|
|
1790
1794
|
}
|
|
1791
1795
|
|
|
1796
|
+
declare const AssistantModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1797
|
+
|
|
1798
|
+
declare class Assistant extends AbstractApiData implements AssistantInterface {
|
|
1799
|
+
private _title?;
|
|
1800
|
+
private _messageCount?;
|
|
1801
|
+
get title(): string;
|
|
1802
|
+
get messageCount(): number;
|
|
1803
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1804
|
+
createJsonApi(data: AssistantInput): {
|
|
1805
|
+
data: {
|
|
1806
|
+
type: string;
|
|
1807
|
+
attributes: {
|
|
1808
|
+
title?: string | undefined;
|
|
1809
|
+
content: string;
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
included: never[];
|
|
1813
|
+
};
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
declare class AssistantService extends AbstractService {
|
|
1817
|
+
static findOne(params: {
|
|
1818
|
+
id: string;
|
|
1819
|
+
}): Promise<AssistantInterface>;
|
|
1820
|
+
static findMany(params?: {
|
|
1821
|
+
fetchAll?: boolean;
|
|
1822
|
+
}): Promise<AssistantInterface[]>;
|
|
1823
|
+
static create(params: AssistantInput): Promise<AssistantInterface>;
|
|
1824
|
+
/**
|
|
1825
|
+
* Sends a new user message to an existing assistant thread. The agent turn
|
|
1826
|
+
* runs synchronously; the response is a two-element list: [user, assistant].
|
|
1827
|
+
*/
|
|
1828
|
+
static appendMessage(params: {
|
|
1829
|
+
assistantId: string;
|
|
1830
|
+
content: string;
|
|
1831
|
+
}): Promise<AssistantMessageInterface[]>;
|
|
1832
|
+
static rename(params: {
|
|
1833
|
+
id: string;
|
|
1834
|
+
title: string;
|
|
1835
|
+
}): Promise<void>;
|
|
1836
|
+
static delete(params: {
|
|
1837
|
+
id: string;
|
|
1838
|
+
}): Promise<void>;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
declare const AssistantMessageModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1842
|
+
|
|
1843
|
+
declare class AssistantMessage extends AbstractApiData implements AssistantMessageInterface {
|
|
1844
|
+
private _role?;
|
|
1845
|
+
private _content?;
|
|
1846
|
+
private _position?;
|
|
1847
|
+
private _suggestedQuestions?;
|
|
1848
|
+
private _inputTokens?;
|
|
1849
|
+
private _outputTokens?;
|
|
1850
|
+
private _references?;
|
|
1851
|
+
get role(): AssistantMessageRole;
|
|
1852
|
+
get content(): string;
|
|
1853
|
+
get position(): number;
|
|
1854
|
+
get suggestedQuestions(): string[];
|
|
1855
|
+
get inputTokens(): number | undefined;
|
|
1856
|
+
get outputTokens(): number | undefined;
|
|
1857
|
+
get references(): ApiDataInterface[];
|
|
1858
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1859
|
+
createJsonApi(data: AssistantMessageInput): {
|
|
1860
|
+
data: {
|
|
1861
|
+
type: string;
|
|
1862
|
+
id: string;
|
|
1863
|
+
attributes: {
|
|
1864
|
+
role: AssistantMessageRole;
|
|
1865
|
+
content: string;
|
|
1866
|
+
position: number;
|
|
1867
|
+
};
|
|
1868
|
+
relationships: {
|
|
1869
|
+
assistant: {
|
|
1870
|
+
data: {
|
|
1871
|
+
type: string;
|
|
1872
|
+
id: string;
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
};
|
|
1876
|
+
};
|
|
1877
|
+
included: never[];
|
|
1878
|
+
};
|
|
1879
|
+
static buildOptimistic(params: {
|
|
1880
|
+
content: string;
|
|
1881
|
+
position: number;
|
|
1882
|
+
assistantId?: string;
|
|
1883
|
+
}): AssistantMessage;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
declare class AssistantMessageService extends AbstractService {
|
|
1887
|
+
static findByAssistant(params: {
|
|
1888
|
+
assistantId: string;
|
|
1889
|
+
next?: NextRef;
|
|
1890
|
+
}): Promise<AssistantMessageInterface[]>;
|
|
1891
|
+
static findOne(params: {
|
|
1892
|
+
id: string;
|
|
1893
|
+
}): Promise<AssistantMessageInterface>;
|
|
1894
|
+
static delete(params: {
|
|
1895
|
+
id: string;
|
|
1896
|
+
}): Promise<void>;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1792
1899
|
declare class Notification extends AbstractApiData implements NotificationInterface {
|
|
1793
1900
|
private _notificationType?;
|
|
1794
1901
|
private _isRead?;
|
|
@@ -2146,4 +2253,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2146
2253
|
|
|
2147
2254
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2148
2255
|
|
|
2149
|
-
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 };
|
|
2256
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantModule, AssistantService, 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.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ import { b as AbstractService, i as TwoFactorChallengeInterface, c as NextRef, d
|
|
|
7
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-DjwEQJPe.js';
|
|
8
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-DcSuc9CL.js';
|
|
9
9
|
export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-DcSuc9CL.js';
|
|
10
|
-
import { a as HowToInterface, H as HowToInput } from '../
|
|
11
|
-
export { B as BreadcrumbItemData } from '../
|
|
10
|
+
import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, b as AssistantMessageInput } from '../AssistantMessageInterface-DS_tyJTV.js';
|
|
11
|
+
export { B as BreadcrumbItemData } from '../AssistantMessageInterface-DS_tyJTV.js';
|
|
12
12
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.js';
|
|
13
13
|
import { ClassValue } from 'clsx';
|
|
14
14
|
export { ClassValue } from 'clsx';
|
|
@@ -25,6 +25,7 @@ import { PublicKeyCredentialCreationOptionsJSON, RegistrationResponseJSON, Publi
|
|
|
25
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-C3qqh3mi.js';
|
|
26
26
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-promotion-code.interface-C3qqh3mi.js';
|
|
27
27
|
import { M as ModuleInterface, F as FeatureInterface } from '../feature.interface-BO25VLlx.js';
|
|
28
|
+
import { a as AssistantInterface, A as AssistantInput } from '../AssistantInterface-DfDcz0gJ.js';
|
|
28
29
|
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-B6xmfDzK.js';
|
|
29
30
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-B6xmfDzK.js';
|
|
30
31
|
import 'lucide-react';
|
|
@@ -233,6 +234,8 @@ interface FoundationModuleDefinitions {
|
|
|
233
234
|
Module: ModuleWithPermissions;
|
|
234
235
|
Content: ModuleWithPermissions;
|
|
235
236
|
HowTo: ModuleWithPermissions;
|
|
237
|
+
Assistant: ModuleWithPermissions;
|
|
238
|
+
AssistantMessage: ModuleWithPermissions;
|
|
236
239
|
Billing: ModuleWithPermissions;
|
|
237
240
|
StripeCustomer: ModuleWithPermissions;
|
|
238
241
|
StripePaymentMethod: ModuleWithPermissions;
|
|
@@ -279,6 +282,7 @@ declare class ModuleRegistryClass {
|
|
|
279
282
|
}[];
|
|
280
283
|
findByModelName(modelName: string): ModuleWithPermissions;
|
|
281
284
|
findByFeature(feature: string): ModuleWithPermissions[];
|
|
285
|
+
getAll(): ApiRequestDataTypeInterface[];
|
|
282
286
|
}
|
|
283
287
|
declare const ModuleRegistry: ModuleRegistryClass;
|
|
284
288
|
declare const Modules: ModuleDefinitions & {
|
|
@@ -1789,6 +1793,109 @@ declare class HowToService extends AbstractService {
|
|
|
1789
1793
|
}): Promise<void>;
|
|
1790
1794
|
}
|
|
1791
1795
|
|
|
1796
|
+
declare const AssistantModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1797
|
+
|
|
1798
|
+
declare class Assistant extends AbstractApiData implements AssistantInterface {
|
|
1799
|
+
private _title?;
|
|
1800
|
+
private _messageCount?;
|
|
1801
|
+
get title(): string;
|
|
1802
|
+
get messageCount(): number;
|
|
1803
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1804
|
+
createJsonApi(data: AssistantInput): {
|
|
1805
|
+
data: {
|
|
1806
|
+
type: string;
|
|
1807
|
+
attributes: {
|
|
1808
|
+
title?: string | undefined;
|
|
1809
|
+
content: string;
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
included: never[];
|
|
1813
|
+
};
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
declare class AssistantService extends AbstractService {
|
|
1817
|
+
static findOne(params: {
|
|
1818
|
+
id: string;
|
|
1819
|
+
}): Promise<AssistantInterface>;
|
|
1820
|
+
static findMany(params?: {
|
|
1821
|
+
fetchAll?: boolean;
|
|
1822
|
+
}): Promise<AssistantInterface[]>;
|
|
1823
|
+
static create(params: AssistantInput): Promise<AssistantInterface>;
|
|
1824
|
+
/**
|
|
1825
|
+
* Sends a new user message to an existing assistant thread. The agent turn
|
|
1826
|
+
* runs synchronously; the response is a two-element list: [user, assistant].
|
|
1827
|
+
*/
|
|
1828
|
+
static appendMessage(params: {
|
|
1829
|
+
assistantId: string;
|
|
1830
|
+
content: string;
|
|
1831
|
+
}): Promise<AssistantMessageInterface[]>;
|
|
1832
|
+
static rename(params: {
|
|
1833
|
+
id: string;
|
|
1834
|
+
title: string;
|
|
1835
|
+
}): Promise<void>;
|
|
1836
|
+
static delete(params: {
|
|
1837
|
+
id: string;
|
|
1838
|
+
}): Promise<void>;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
declare const AssistantMessageModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1842
|
+
|
|
1843
|
+
declare class AssistantMessage extends AbstractApiData implements AssistantMessageInterface {
|
|
1844
|
+
private _role?;
|
|
1845
|
+
private _content?;
|
|
1846
|
+
private _position?;
|
|
1847
|
+
private _suggestedQuestions?;
|
|
1848
|
+
private _inputTokens?;
|
|
1849
|
+
private _outputTokens?;
|
|
1850
|
+
private _references?;
|
|
1851
|
+
get role(): AssistantMessageRole;
|
|
1852
|
+
get content(): string;
|
|
1853
|
+
get position(): number;
|
|
1854
|
+
get suggestedQuestions(): string[];
|
|
1855
|
+
get inputTokens(): number | undefined;
|
|
1856
|
+
get outputTokens(): number | undefined;
|
|
1857
|
+
get references(): ApiDataInterface[];
|
|
1858
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1859
|
+
createJsonApi(data: AssistantMessageInput): {
|
|
1860
|
+
data: {
|
|
1861
|
+
type: string;
|
|
1862
|
+
id: string;
|
|
1863
|
+
attributes: {
|
|
1864
|
+
role: AssistantMessageRole;
|
|
1865
|
+
content: string;
|
|
1866
|
+
position: number;
|
|
1867
|
+
};
|
|
1868
|
+
relationships: {
|
|
1869
|
+
assistant: {
|
|
1870
|
+
data: {
|
|
1871
|
+
type: string;
|
|
1872
|
+
id: string;
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
};
|
|
1876
|
+
};
|
|
1877
|
+
included: never[];
|
|
1878
|
+
};
|
|
1879
|
+
static buildOptimistic(params: {
|
|
1880
|
+
content: string;
|
|
1881
|
+
position: number;
|
|
1882
|
+
assistantId?: string;
|
|
1883
|
+
}): AssistantMessage;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
declare class AssistantMessageService extends AbstractService {
|
|
1887
|
+
static findByAssistant(params: {
|
|
1888
|
+
assistantId: string;
|
|
1889
|
+
next?: NextRef;
|
|
1890
|
+
}): Promise<AssistantMessageInterface[]>;
|
|
1891
|
+
static findOne(params: {
|
|
1892
|
+
id: string;
|
|
1893
|
+
}): Promise<AssistantMessageInterface>;
|
|
1894
|
+
static delete(params: {
|
|
1895
|
+
id: string;
|
|
1896
|
+
}): Promise<void>;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1792
1899
|
declare class Notification extends AbstractApiData implements NotificationInterface {
|
|
1793
1900
|
private _notificationType?;
|
|
1794
1901
|
private _isRead?;
|
|
@@ -2146,4 +2253,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2146
2253
|
|
|
2147
2254
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2148
2255
|
|
|
2149
|
-
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 };
|
|
2256
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantModule, AssistantService, 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
|
@@ -163,7 +163,13 @@
|
|
|
163
163
|
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
var _chunkFDJQRIMYjs = require('../chunk-FDJQRIMY.js');
|
|
167
173
|
require('../chunk-LXKSUWAV.js');
|
|
168
174
|
require('../chunk-IBS6NI7D.js');
|
|
169
175
|
|
|
@@ -353,5 +359,11 @@ require('../chunk-7QVYU63E.js');
|
|
|
353
359
|
|
|
354
360
|
|
|
355
361
|
|
|
356
|
-
exports.AVAILABLE_OAUTH_SCOPES = _chunkFKLP4NEDjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkFKLP4NEDjs.AbstractApiData; exports.AbstractService = _chunkFKLP4NEDjs.AbstractService; exports.Action = _chunkFKLP4NEDjs.Action; exports.AuditLog = _chunkFKLP4NEDjs.AuditLog; exports.AuditLogModule = _chunkFKLP4NEDjs.AuditLogModule; exports.AuditLogService = _chunkFKLP4NEDjs.AuditLogService; exports.Auth = _chunkFKLP4NEDjs.Auth; exports.AuthComponent = _chunkFKLP4NEDjs.AuthComponent; exports.AuthModule = _chunkFKLP4NEDjs.AuthModule; exports.AuthService = _chunkFKLP4NEDjs.AuthService; exports.AuthorModule = _chunkFKLP4NEDjs.AuthorModule; exports.BackupCodeVerify = _chunkFKLP4NEDjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkFKLP4NEDjs.BackupCodeVerifyModule; exports.Billing = _chunkFKLP4NEDjs.Billing; exports.BillingModule = _chunkFKLP4NEDjs.BillingModule; exports.BillingService = _chunkFKLP4NEDjs.BillingService; exports.BlockNoteDiffUtil = _chunkFKLP4NEDjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkFKLP4NEDjs.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunkFKLP4NEDjs.ClientAbstractService; exports.ClientHttpMethod = _chunkFKLP4NEDjs.ClientHttpMethod; exports.Company = _chunkFKLP4NEDjs.Company; exports.CompanyFields = _chunkFKLP4NEDjs.CompanyFields; exports.CompanyModule = _chunkFKLP4NEDjs.CompanyModule; exports.CompanyService = _chunkFKLP4NEDjs.CompanyService; exports.Content = _chunkFKLP4NEDjs.Content; exports.ContentFields = _chunkFKLP4NEDjs.ContentFields; exports.ContentModule = _chunkFKLP4NEDjs.ContentModule; exports.ContentService = _chunkFKLP4NEDjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkFKLP4NEDjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkFKLP4NEDjs.EndpointCreator; exports.Feature = _chunkFKLP4NEDjs.Feature; exports.FeatureModule = _chunkFKLP4NEDjs.FeatureModule; exports.FeatureService = _chunkFKLP4NEDjs.FeatureService; exports.HowTo = _chunkFKLP4NEDjs.HowTo; exports.HowToFields = _chunkFKLP4NEDjs.HowToFields; exports.HowToModule = _chunkFKLP4NEDjs.HowToModule; exports.HowToService = _chunkFKLP4NEDjs.HowToService; exports.HttpMethod = _chunkFKLP4NEDjs.HttpMethod; exports.InvoiceStatus = _chunkFKLP4NEDjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkFKLP4NEDjs.Module; exports.ModuleModule = _chunkFKLP4NEDjs.ModuleModule; exports.ModulePathsModule = _chunkFKLP4NEDjs.ModulePathsModule; exports.ModuleRegistrar = _chunkFKLP4NEDjs.ModuleRegistrar; exports.ModuleRegistry = _chunkFKLP4NEDjs.ModuleRegistry; exports.Modules = _chunkFKLP4NEDjs.Modules; exports.Notification = _chunkFKLP4NEDjs.Notification; exports.NotificationFields = _chunkFKLP4NEDjs.NotificationFields; exports.NotificationModule = _chunkFKLP4NEDjs.NotificationModule; exports.NotificationService = _chunkFKLP4NEDjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkFKLP4NEDjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkFKLP4NEDjs.OAuthClient; exports.OAuthModule = _chunkFKLP4NEDjs.OAuthModule; exports.OAuthService = _chunkFKLP4NEDjs.OAuthService; exports.Passkey = _chunkFKLP4NEDjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkFKLP4NEDjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkFKLP4NEDjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkFKLP4NEDjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkFKLP4NEDjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkFKLP4NEDjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkFKLP4NEDjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkFKLP4NEDjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkFKLP4NEDjs.PasskeyRename; exports.PasskeyRenameModule = _chunkFKLP4NEDjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkFKLP4NEDjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkFKLP4NEDjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkFKLP4NEDjs.PaymentMethod; exports.PermissionMappingModule = _chunkFKLP4NEDjs.PermissionMappingModule; exports.Push = _chunkFKLP4NEDjs.Push; exports.PushModule = _chunkFKLP4NEDjs.PushModule; exports.PushService = _chunkFKLP4NEDjs.PushService; exports.ReferralModule = _chunkFKLP4NEDjs.ReferralModule; exports.ReferralService = _chunkFKLP4NEDjs.ReferralService; exports.ReferralStats = _chunkFKLP4NEDjs.ReferralStats; exports.ReferralStatsModule = _chunkFKLP4NEDjs.ReferralStatsModule; exports.RehydrationFactory = _chunkFKLP4NEDjs.RehydrationFactory; exports.Role = _chunkFKLP4NEDjs.Role; exports.RoleFields = _chunkFKLP4NEDjs.RoleFields; exports.RoleModule = _chunkFKLP4NEDjs.RoleModule; exports.RoleService = _chunkFKLP4NEDjs.RoleService; exports.S3 = _chunkFKLP4NEDjs.S3; exports.S3Module = _chunkFKLP4NEDjs.S3Module; exports.S3Service = _chunkFKLP4NEDjs.S3Service; exports.StripeCustomer = _chunkFKLP4NEDjs.StripeCustomer; exports.StripeCustomerModule = _chunkFKLP4NEDjs.StripeCustomerModule; exports.StripeCustomerService = _chunkFKLP4NEDjs.StripeCustomerService; exports.StripeInvoice = _chunkFKLP4NEDjs.StripeInvoice; exports.StripeInvoiceModule = _chunkFKLP4NEDjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkFKLP4NEDjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkFKLP4NEDjs.StripePaymentMethodModule; exports.StripePrice = _chunkFKLP4NEDjs.StripePrice; exports.StripePriceModule = _chunkFKLP4NEDjs.StripePriceModule; exports.StripePriceService = _chunkFKLP4NEDjs.StripePriceService; exports.StripeProduct = _chunkFKLP4NEDjs.StripeProduct; exports.StripeProductModule = _chunkFKLP4NEDjs.StripeProductModule; exports.StripeProductService = _chunkFKLP4NEDjs.StripeProductService; exports.StripePromotionCode = _chunkFKLP4NEDjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkFKLP4NEDjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkFKLP4NEDjs.StripePromotionCodeService; exports.StripeSubscription = _chunkFKLP4NEDjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkFKLP4NEDjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkFKLP4NEDjs.StripeSubscriptionService; exports.StripeUsage = _chunkFKLP4NEDjs.StripeUsage; exports.StripeUsageModule = _chunkFKLP4NEDjs.StripeUsageModule; exports.StripeUsageService = _chunkFKLP4NEDjs.StripeUsageService; exports.SubscriptionStatus = _chunkFKLP4NEDjs.SubscriptionStatus; exports.TableOptions = _chunkFKLP4NEDjs.TableOptions; exports.TotpAuthenticator = _chunkFKLP4NEDjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkFKLP4NEDjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkFKLP4NEDjs.TotpSetup; exports.TotpSetupModule = _chunkFKLP4NEDjs.TotpSetupModule; exports.TotpVerify = _chunkFKLP4NEDjs.TotpVerify; exports.TotpVerifyLogin = _chunkFKLP4NEDjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkFKLP4NEDjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkFKLP4NEDjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkFKLP4NEDjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkFKLP4NEDjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkFKLP4NEDjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkFKLP4NEDjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkFKLP4NEDjs.TwoFactorService; exports.TwoFactorStatus = _chunkFKLP4NEDjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkFKLP4NEDjs.TwoFactorStatusModule; exports.User = _chunkFKLP4NEDjs.User; exports.UserFields = _chunkFKLP4NEDjs.UserFields; exports.UserModule = _chunkFKLP4NEDjs.UserModule; exports.UserService = _chunkFKLP4NEDjs.UserService; exports.Waitlist = _chunkFKLP4NEDjs.Waitlist; exports.WaitlistModule = _chunkFKLP4NEDjs.WaitlistModule; exports.WaitlistService = _chunkFKLP4NEDjs.WaitlistService; exports.WaitlistStats = _chunkFKLP4NEDjs.WaitlistStats; exports.WaitlistStatsModule = _chunkFKLP4NEDjs.WaitlistStatsModule; exports.checkPermissions = _chunkFKLP4NEDjs.checkPermissions; exports.checkPermissionsFromServer = _chunkFKLP4NEDjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkFKLP4NEDjs.clearLastApiTotal; exports.cn = _chunkFKLP4NEDjs.cn; exports.composeRefs = _chunkFKLP4NEDjs.composeRefs; exports.createJsonApiInclusion = _chunkFKLP4NEDjs.createJsonApiInclusion; exports.dismissToast = _chunkFKLP4NEDjs.dismissToast; exports.entityObjectSchema = _chunkFKLP4NEDjs.entityObjectSchema; exports.exists = _chunkFKLP4NEDjs.exists; exports.formatDate = _chunkFKLP4NEDjs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkFKLP4NEDjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkFKLP4NEDjs.getGlobalErrorHandler; exports.getIcon = _chunkFKLP4NEDjs.getIcon; exports.getIconByModule = _chunkFKLP4NEDjs.getIconByModule; exports.getIconByModuleName = _chunkFKLP4NEDjs.getIconByModuleName; exports.getInitials = _chunkFKLP4NEDjs.getInitials; exports.getLastApiTotal = _chunkFKLP4NEDjs.getLastApiTotal; exports.getLucideIcon = _chunkFKLP4NEDjs.getLucideIcon; exports.getLucideIconByModule = _chunkFKLP4NEDjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkFKLP4NEDjs.getLucideIconByModuleName; exports.getTableComponents = _chunkFKLP4NEDjs.getTableComponents; exports.getTableOptions = _chunkFKLP4NEDjs.getTableOptions; exports.getValueFromPath = _chunkFKLP4NEDjs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunkFKLP4NEDjs.rehydrate; exports.rehydrateList = _chunkFKLP4NEDjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkFKLP4NEDjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkFKLP4NEDjs.setGlobalErrorHandler; exports.showCustomToast = _chunkFKLP4NEDjs.showCustomToast; exports.showError = _chunkFKLP4NEDjs.showError; exports.showToast = _chunkFKLP4NEDjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkFKLP4NEDjs.useComposedRefs; exports.useIsMobile = _chunkFKLP4NEDjs.useIsMobile; exports.userObjectSchema = _chunkFKLP4NEDjs.userObjectSchema;
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
exports.AVAILABLE_OAUTH_SCOPES = _chunkFDJQRIMYjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkFDJQRIMYjs.AbstractApiData; exports.AbstractService = _chunkFDJQRIMYjs.AbstractService; exports.Action = _chunkFDJQRIMYjs.Action; exports.Assistant = _chunkFDJQRIMYjs.Assistant; exports.AssistantMessage = _chunkFDJQRIMYjs.AssistantMessage; exports.AssistantMessageModule = _chunkFDJQRIMYjs.AssistantMessageModule; exports.AssistantMessageService = _chunkFDJQRIMYjs.AssistantMessageService; exports.AssistantModule = _chunkFDJQRIMYjs.AssistantModule; exports.AssistantService = _chunkFDJQRIMYjs.AssistantService; exports.AuditLog = _chunkFDJQRIMYjs.AuditLog; exports.AuditLogModule = _chunkFDJQRIMYjs.AuditLogModule; exports.AuditLogService = _chunkFDJQRIMYjs.AuditLogService; exports.Auth = _chunkFDJQRIMYjs.Auth; exports.AuthComponent = _chunkFDJQRIMYjs.AuthComponent; exports.AuthModule = _chunkFDJQRIMYjs.AuthModule; exports.AuthService = _chunkFDJQRIMYjs.AuthService; exports.AuthorModule = _chunkFDJQRIMYjs.AuthorModule; exports.BackupCodeVerify = _chunkFDJQRIMYjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkFDJQRIMYjs.BackupCodeVerifyModule; exports.Billing = _chunkFDJQRIMYjs.Billing; exports.BillingModule = _chunkFDJQRIMYjs.BillingModule; exports.BillingService = _chunkFDJQRIMYjs.BillingService; exports.BlockNoteDiffUtil = _chunkFDJQRIMYjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkFDJQRIMYjs.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunkFDJQRIMYjs.ClientAbstractService; exports.ClientHttpMethod = _chunkFDJQRIMYjs.ClientHttpMethod; exports.Company = _chunkFDJQRIMYjs.Company; exports.CompanyFields = _chunkFDJQRIMYjs.CompanyFields; exports.CompanyModule = _chunkFDJQRIMYjs.CompanyModule; exports.CompanyService = _chunkFDJQRIMYjs.CompanyService; exports.Content = _chunkFDJQRIMYjs.Content; exports.ContentFields = _chunkFDJQRIMYjs.ContentFields; exports.ContentModule = _chunkFDJQRIMYjs.ContentModule; exports.ContentService = _chunkFDJQRIMYjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkFDJQRIMYjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkFDJQRIMYjs.EndpointCreator; exports.Feature = _chunkFDJQRIMYjs.Feature; exports.FeatureModule = _chunkFDJQRIMYjs.FeatureModule; exports.FeatureService = _chunkFDJQRIMYjs.FeatureService; exports.HowTo = _chunkFDJQRIMYjs.HowTo; exports.HowToFields = _chunkFDJQRIMYjs.HowToFields; exports.HowToModule = _chunkFDJQRIMYjs.HowToModule; exports.HowToService = _chunkFDJQRIMYjs.HowToService; exports.HttpMethod = _chunkFDJQRIMYjs.HttpMethod; exports.InvoiceStatus = _chunkFDJQRIMYjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkFDJQRIMYjs.Module; exports.ModuleModule = _chunkFDJQRIMYjs.ModuleModule; exports.ModulePathsModule = _chunkFDJQRIMYjs.ModulePathsModule; exports.ModuleRegistrar = _chunkFDJQRIMYjs.ModuleRegistrar; exports.ModuleRegistry = _chunkFDJQRIMYjs.ModuleRegistry; exports.Modules = _chunkFDJQRIMYjs.Modules; exports.Notification = _chunkFDJQRIMYjs.Notification; exports.NotificationFields = _chunkFDJQRIMYjs.NotificationFields; exports.NotificationModule = _chunkFDJQRIMYjs.NotificationModule; exports.NotificationService = _chunkFDJQRIMYjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkFDJQRIMYjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkFDJQRIMYjs.OAuthClient; exports.OAuthModule = _chunkFDJQRIMYjs.OAuthModule; exports.OAuthService = _chunkFDJQRIMYjs.OAuthService; exports.Passkey = _chunkFDJQRIMYjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkFDJQRIMYjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkFDJQRIMYjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkFDJQRIMYjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkFDJQRIMYjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkFDJQRIMYjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkFDJQRIMYjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkFDJQRIMYjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkFDJQRIMYjs.PasskeyRename; exports.PasskeyRenameModule = _chunkFDJQRIMYjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkFDJQRIMYjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkFDJQRIMYjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkFDJQRIMYjs.PaymentMethod; exports.PermissionMappingModule = _chunkFDJQRIMYjs.PermissionMappingModule; exports.Push = _chunkFDJQRIMYjs.Push; exports.PushModule = _chunkFDJQRIMYjs.PushModule; exports.PushService = _chunkFDJQRIMYjs.PushService; exports.ReferralModule = _chunkFDJQRIMYjs.ReferralModule; exports.ReferralService = _chunkFDJQRIMYjs.ReferralService; exports.ReferralStats = _chunkFDJQRIMYjs.ReferralStats; exports.ReferralStatsModule = _chunkFDJQRIMYjs.ReferralStatsModule; exports.RehydrationFactory = _chunkFDJQRIMYjs.RehydrationFactory; exports.Role = _chunkFDJQRIMYjs.Role; exports.RoleFields = _chunkFDJQRIMYjs.RoleFields; exports.RoleModule = _chunkFDJQRIMYjs.RoleModule; exports.RoleService = _chunkFDJQRIMYjs.RoleService; exports.S3 = _chunkFDJQRIMYjs.S3; exports.S3Module = _chunkFDJQRIMYjs.S3Module; exports.S3Service = _chunkFDJQRIMYjs.S3Service; exports.StripeCustomer = _chunkFDJQRIMYjs.StripeCustomer; exports.StripeCustomerModule = _chunkFDJQRIMYjs.StripeCustomerModule; exports.StripeCustomerService = _chunkFDJQRIMYjs.StripeCustomerService; exports.StripeInvoice = _chunkFDJQRIMYjs.StripeInvoice; exports.StripeInvoiceModule = _chunkFDJQRIMYjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkFDJQRIMYjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkFDJQRIMYjs.StripePaymentMethodModule; exports.StripePrice = _chunkFDJQRIMYjs.StripePrice; exports.StripePriceModule = _chunkFDJQRIMYjs.StripePriceModule; exports.StripePriceService = _chunkFDJQRIMYjs.StripePriceService; exports.StripeProduct = _chunkFDJQRIMYjs.StripeProduct; exports.StripeProductModule = _chunkFDJQRIMYjs.StripeProductModule; exports.StripeProductService = _chunkFDJQRIMYjs.StripeProductService; exports.StripePromotionCode = _chunkFDJQRIMYjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkFDJQRIMYjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkFDJQRIMYjs.StripePromotionCodeService; exports.StripeSubscription = _chunkFDJQRIMYjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkFDJQRIMYjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkFDJQRIMYjs.StripeSubscriptionService; exports.StripeUsage = _chunkFDJQRIMYjs.StripeUsage; exports.StripeUsageModule = _chunkFDJQRIMYjs.StripeUsageModule; exports.StripeUsageService = _chunkFDJQRIMYjs.StripeUsageService; exports.SubscriptionStatus = _chunkFDJQRIMYjs.SubscriptionStatus; exports.TableOptions = _chunkFDJQRIMYjs.TableOptions; exports.TotpAuthenticator = _chunkFDJQRIMYjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkFDJQRIMYjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkFDJQRIMYjs.TotpSetup; exports.TotpSetupModule = _chunkFDJQRIMYjs.TotpSetupModule; exports.TotpVerify = _chunkFDJQRIMYjs.TotpVerify; exports.TotpVerifyLogin = _chunkFDJQRIMYjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkFDJQRIMYjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkFDJQRIMYjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkFDJQRIMYjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkFDJQRIMYjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkFDJQRIMYjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkFDJQRIMYjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkFDJQRIMYjs.TwoFactorService; exports.TwoFactorStatus = _chunkFDJQRIMYjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkFDJQRIMYjs.TwoFactorStatusModule; exports.User = _chunkFDJQRIMYjs.User; exports.UserFields = _chunkFDJQRIMYjs.UserFields; exports.UserModule = _chunkFDJQRIMYjs.UserModule; exports.UserService = _chunkFDJQRIMYjs.UserService; exports.Waitlist = _chunkFDJQRIMYjs.Waitlist; exports.WaitlistModule = _chunkFDJQRIMYjs.WaitlistModule; exports.WaitlistService = _chunkFDJQRIMYjs.WaitlistService; exports.WaitlistStats = _chunkFDJQRIMYjs.WaitlistStats; exports.WaitlistStatsModule = _chunkFDJQRIMYjs.WaitlistStatsModule; exports.checkPermissions = _chunkFDJQRIMYjs.checkPermissions; exports.checkPermissionsFromServer = _chunkFDJQRIMYjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkFDJQRIMYjs.clearLastApiTotal; exports.cn = _chunkFDJQRIMYjs.cn; exports.composeRefs = _chunkFDJQRIMYjs.composeRefs; exports.createJsonApiInclusion = _chunkFDJQRIMYjs.createJsonApiInclusion; exports.dismissToast = _chunkFDJQRIMYjs.dismissToast; exports.entityObjectSchema = _chunkFDJQRIMYjs.entityObjectSchema; exports.exists = _chunkFDJQRIMYjs.exists; exports.formatDate = _chunkFDJQRIMYjs.formatDate; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkFDJQRIMYjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkFDJQRIMYjs.getGlobalErrorHandler; exports.getIcon = _chunkFDJQRIMYjs.getIcon; exports.getIconByModule = _chunkFDJQRIMYjs.getIconByModule; exports.getIconByModuleName = _chunkFDJQRIMYjs.getIconByModuleName; exports.getInitials = _chunkFDJQRIMYjs.getInitials; exports.getLastApiTotal = _chunkFDJQRIMYjs.getLastApiTotal; exports.getLucideIcon = _chunkFDJQRIMYjs.getLucideIcon; exports.getLucideIconByModule = _chunkFDJQRIMYjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkFDJQRIMYjs.getLucideIconByModuleName; exports.getTableComponents = _chunkFDJQRIMYjs.getTableComponents; exports.getTableOptions = _chunkFDJQRIMYjs.getTableOptions; exports.getValueFromPath = _chunkFDJQRIMYjs.getValueFromPath; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.rehydrate = _chunkFDJQRIMYjs.rehydrate; exports.rehydrateList = _chunkFDJQRIMYjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkFDJQRIMYjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkFDJQRIMYjs.setGlobalErrorHandler; exports.showCustomToast = _chunkFDJQRIMYjs.showCustomToast; exports.showError = _chunkFDJQRIMYjs.showError; exports.showToast = _chunkFDJQRIMYjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkFDJQRIMYjs.useComposedRefs; exports.useIsMobile = _chunkFDJQRIMYjs.useIsMobile; exports.userObjectSchema = _chunkFDJQRIMYjs.userObjectSchema;
|
|
357
369
|
//# 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;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,
|
|
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;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;AACA;AACA;AACA;AACA;AACA;AACA;AACF,yoVAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
|
package/dist/core/index.mjs
CHANGED
|
@@ -3,6 +3,12 @@ import {
|
|
|
3
3
|
AbstractApiData,
|
|
4
4
|
AbstractService,
|
|
5
5
|
Action,
|
|
6
|
+
Assistant,
|
|
7
|
+
AssistantMessage,
|
|
8
|
+
AssistantMessageModule,
|
|
9
|
+
AssistantMessageService,
|
|
10
|
+
AssistantModule,
|
|
11
|
+
AssistantService,
|
|
6
12
|
AuditLog,
|
|
7
13
|
AuditLogModule,
|
|
8
14
|
AuditLogService,
|
|
@@ -163,7 +169,7 @@ import {
|
|
|
163
169
|
useComposedRefs,
|
|
164
170
|
useIsMobile,
|
|
165
171
|
userObjectSchema
|
|
166
|
-
} from "../chunk-
|
|
172
|
+
} from "../chunk-I65SSQ5Z.mjs";
|
|
167
173
|
import "../chunk-AUXK7QSA.mjs";
|
|
168
174
|
import "../chunk-C7C7VY4F.mjs";
|
|
169
175
|
import {
|
|
@@ -183,6 +189,12 @@ export {
|
|
|
183
189
|
AbstractApiData,
|
|
184
190
|
AbstractService,
|
|
185
191
|
Action,
|
|
192
|
+
Assistant,
|
|
193
|
+
AssistantMessage,
|
|
194
|
+
AssistantMessageModule,
|
|
195
|
+
AssistantMessageService,
|
|
196
|
+
AssistantModule,
|
|
197
|
+
AssistantService,
|
|
186
198
|
AuditLog,
|
|
187
199
|
AuditLogModule,
|
|
188
200
|
AuditLogService,
|
package/dist/index.d.mts
CHANGED
|
@@ -4,10 +4,10 @@ export { A as ApiDataInterface } from './ApiDataInterface-BcZeXy5X.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-rsXRL_Hn.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, 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';
|
|
7
|
+
export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, 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
8
|
import { b as AbstractService } from './s3.service-DGilbikH.mjs';
|
|
9
9
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-DGilbikH.mjs';
|
|
10
|
-
export { B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './
|
|
10
|
+
export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-D0Kwf8CR.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
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-huIaK5rm.mjs';
|
|
@@ -15,6 +15,7 @@ import { R as RoleInterface } from './notification.interface-DG6obXUH.mjs';
|
|
|
15
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-DG6obXUH.mjs';
|
|
16
16
|
export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.interface-Bdq7-8iV.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-ClZ7DxS9.mjs';
|
|
18
|
+
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-BYgI5z1-.mjs';
|
|
18
19
|
import { F as FeatureInterface } from './feature.interface-CXb1-vNq.mjs';
|
|
19
20
|
export { M as ModuleInterface } from './feature.interface-CXb1-vNq.mjs';
|
|
20
21
|
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-o5FLpiN7.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ export { A as ApiDataInterface } from './ApiDataInterface-BcZeXy5X.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-CWLvSCvS.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, 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';
|
|
7
|
+
export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, 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
8
|
import { b as AbstractService } from './s3.service-DjwEQJPe.js';
|
|
9
9
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-DjwEQJPe.js';
|
|
10
|
-
export { B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './
|
|
10
|
+
export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-DS_tyJTV.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
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-Blbs06ud.js';
|
|
@@ -15,6 +15,7 @@ import { R as RoleInterface } from './notification.interface-DcSuc9CL.js';
|
|
|
15
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-DcSuc9CL.js';
|
|
16
16
|
export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.interface-CQJ6A2Cj.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-C3qqh3mi.js';
|
|
18
|
+
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-DfDcz0gJ.js';
|
|
18
19
|
import { F as FeatureInterface } from './feature.interface-BO25VLlx.js';
|
|
19
20
|
export { M as ModuleInterface } from './feature.interface-BO25VLlx.js';
|
|
20
21
|
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-B6xmfDzK.js';
|