@carlonicora/nextjs-jsonapi 1.24.2 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-7OSPCSFW.js → BlockNoteEditor-CKMTHP7C.js} +13 -13
- package/dist/{BlockNoteEditor-7OSPCSFW.js.map → BlockNoteEditor-CKMTHP7C.js.map} +1 -1
- package/dist/{BlockNoteEditor-63GKCJK3.mjs → BlockNoteEditor-EJQLNOLB.mjs} +3 -3
- package/dist/billing/index.js +345 -348
- package/dist/billing/index.js.map +1 -1
- package/dist/billing/index.mjs +6 -9
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{chunk-UTPWUC6O.mjs → chunk-JNLXGGHE.mjs} +5790 -4519
- package/dist/chunk-JNLXGGHE.mjs.map +1 -0
- package/dist/{chunk-5U4NJJOF.mjs → chunk-LNBT2YPZ.mjs} +289 -2
- package/dist/chunk-LNBT2YPZ.mjs.map +1 -0
- package/dist/{chunk-NQVPCNRS.js → chunk-O3LLMGP7.js} +290 -3
- package/dist/chunk-O3LLMGP7.js.map +1 -0
- package/dist/{chunk-HIKTQMCR.js → chunk-YYZ2U4WU.js} +7332 -6061
- package/dist/chunk-YYZ2U4WU.js.map +1 -0
- package/dist/client/index.d.mts +96 -1
- package/dist/client/index.d.ts +96 -1
- package/dist/client/index.js +9 -3
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +8 -2
- package/dist/components/index.d.mts +291 -32
- package/dist/components/index.d.ts +291 -32
- package/dist/components/index.js +43 -3
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +58 -18
- package/dist/contexts/index.js +3 -3
- package/dist/contexts/index.mjs +2 -2
- package/dist/core/index.d.mts +108 -1
- package/dist/core/index.d.ts +108 -1
- 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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -1
- package/dist/oauth.interface-DsZ5ecSX.d.mts +119 -0
- package/dist/oauth.interface-vL7za9Bz.d.ts +119 -0
- package/dist/scripts/generate-web-module/templates/components/editor.template.js +11 -13
- package/dist/scripts/generate-web-module/templates/components/editor.template.js.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/multi-selector.template.d.ts.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/multi-selector.template.js +13 -26
- package/dist/scripts/generate-web-module/templates/components/multi-selector.template.js.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/selector.template.d.ts.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/selector.template.js +59 -76
- package/dist/scripts/generate-web-module/templates/components/selector.template.js.map +1 -1
- package/dist/scripts/generate-web-module/transformers/field-mapper.d.ts.map +1 -1
- package/dist/scripts/generate-web-module/transformers/field-mapper.js +10 -12
- package/dist/scripts/generate-web-module/transformers/field-mapper.js.map +1 -1
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/scripts/generate-web-module/templates/components/editor.template.ts +11 -13
- package/scripts/generate-web-module/templates/components/multi-selector.template.ts +13 -26
- package/scripts/generate-web-module/templates/components/selector.template.ts +59 -76
- package/scripts/generate-web-module/transformers/field-mapper.ts +10 -12
- package/src/client/index.ts +1 -0
- package/src/components/forms/FormCheckbox.tsx +18 -24
- package/src/components/forms/FormDate.tsx +103 -116
- package/src/components/forms/FormDateTime.tsx +122 -130
- package/src/components/forms/FormFieldWrapper.tsx +54 -0
- package/src/components/forms/FormInput.tsx +58 -46
- package/src/components/forms/FormPassword.tsx +17 -24
- package/src/components/forms/FormPlaceAutocomplete.tsx +50 -75
- package/src/components/forms/FormSelect.tsx +29 -35
- package/src/components/forms/FormSlider.tsx +23 -27
- package/src/components/forms/FormSwitch.tsx +12 -14
- package/src/components/forms/FormTextarea.tsx +12 -19
- package/src/components/forms/index.ts +1 -1
- package/src/components/index.ts +1 -0
- package/src/core/index.ts +3 -0
- package/src/core/registry/ModuleRegistry.ts +2 -0
- package/src/features/billing/stripe-price/components/forms/PriceEditor.tsx +9 -13
- package/src/features/company/components/forms/CompanyConfigurationSecurityForm.tsx +19 -33
- package/src/features/feature/components/forms/FormFeatures.tsx +3 -4
- package/src/features/index.ts +1 -0
- package/src/features/oauth/atoms/index.ts +1 -0
- package/src/features/oauth/atoms/oauth.atoms.ts +131 -0
- package/src/features/oauth/components/OAuthClientCard.tsx +105 -0
- package/src/features/oauth/components/OAuthClientDetail.tsx +269 -0
- package/src/features/oauth/components/OAuthClientForm.tsx +212 -0
- package/src/features/oauth/components/OAuthClientList.tsx +127 -0
- package/src/features/oauth/components/OAuthClientSecretDisplay.tsx +127 -0
- package/src/features/oauth/components/OAuthRedirectUriInput.tsx +152 -0
- package/src/features/oauth/components/OAuthScopeSelector.tsx +123 -0
- package/src/features/oauth/components/consent/OAuthConsentActions.tsx +41 -0
- package/src/features/oauth/components/consent/OAuthConsentHeader.tsx +51 -0
- package/src/features/oauth/components/consent/OAuthConsentScreen.tsx +142 -0
- package/src/features/oauth/components/consent/OAuthScopeList.tsx +72 -0
- package/src/features/oauth/components/consent/index.ts +4 -0
- package/src/features/oauth/components/index.ts +8 -0
- package/src/features/oauth/data/index.ts +2 -0
- package/src/features/oauth/data/oauth.service.ts +191 -0
- package/src/features/oauth/data/oauth.ts +87 -0
- package/src/features/oauth/hooks/index.ts +3 -0
- package/src/features/oauth/hooks/useOAuthClient.ts +161 -0
- package/src/features/oauth/hooks/useOAuthClients.ts +111 -0
- package/src/features/oauth/hooks/useOAuthConsent.ts +125 -0
- package/src/features/oauth/index.ts +6 -0
- package/src/features/oauth/interfaces/index.ts +1 -0
- package/src/features/oauth/interfaces/oauth.interface.ts +175 -0
- package/src/features/oauth/oauth.module.ts +9 -0
- package/src/features/role/components/forms/FormRoles.tsx +40 -51
- package/src/features/user/components/forms/UserMultiSelect.tsx +12 -29
- package/src/features/user/components/forms/UserSelector.tsx +79 -91
- package/src/shadcnui/index.ts +2 -0
- package/src/shadcnui/ui/field.tsx +3 -3
- package/src/shadcnui/ui/form.tsx +17 -134
- package/src/shadcnui/ui/input-group.tsx +4 -4
- package/dist/chunk-5U4NJJOF.mjs.map +0 -1
- package/dist/chunk-HIKTQMCR.js.map +0 -1
- package/dist/chunk-NQVPCNRS.js.map +0 -1
- package/dist/chunk-UTPWUC6O.mjs.map +0 -1
- package/src/components/forms/FormContainerGeneric.tsx +0 -39
- /package/dist/{BlockNoteEditor-63GKCJK3.mjs.map → BlockNoteEditor-EJQLNOLB.mjs.map} +0 -0
|
@@ -152,6 +152,16 @@ import {
|
|
|
152
152
|
DropdownMenuSubTrigger,
|
|
153
153
|
DropdownMenuTrigger,
|
|
154
154
|
ErrorDetails,
|
|
155
|
+
Field,
|
|
156
|
+
FieldContent,
|
|
157
|
+
FieldDescription,
|
|
158
|
+
FieldError,
|
|
159
|
+
FieldGroup,
|
|
160
|
+
FieldLabel,
|
|
161
|
+
FieldLegend,
|
|
162
|
+
FieldSeparator,
|
|
163
|
+
FieldSet,
|
|
164
|
+
FieldTitle,
|
|
155
165
|
FileInput,
|
|
156
166
|
FileUploader,
|
|
157
167
|
FileUploaderContent,
|
|
@@ -159,17 +169,11 @@ import {
|
|
|
159
169
|
ForgotPassword,
|
|
160
170
|
Form,
|
|
161
171
|
FormCheckbox,
|
|
162
|
-
FormContainerGeneric,
|
|
163
|
-
FormControl,
|
|
164
172
|
FormDate,
|
|
165
173
|
FormDateTime,
|
|
166
|
-
FormDescription,
|
|
167
174
|
FormFeatures,
|
|
168
|
-
|
|
175
|
+
FormFieldWrapper,
|
|
169
176
|
FormInput,
|
|
170
|
-
FormItem,
|
|
171
|
-
FormLabel,
|
|
172
|
-
FormMessage,
|
|
173
177
|
FormPassword,
|
|
174
178
|
FormPlaceAutocomplete,
|
|
175
179
|
FormRoles,
|
|
@@ -182,6 +186,12 @@ import {
|
|
|
182
186
|
HoverCardContent,
|
|
183
187
|
HoverCardTrigger,
|
|
184
188
|
Input,
|
|
189
|
+
InputGroup,
|
|
190
|
+
InputGroupAddon,
|
|
191
|
+
InputGroupButton,
|
|
192
|
+
InputGroupInput,
|
|
193
|
+
InputGroupText,
|
|
194
|
+
InputGroupTextarea,
|
|
185
195
|
InputOTP,
|
|
186
196
|
InputOTPGroup,
|
|
187
197
|
InputOTPSeparator,
|
|
@@ -214,6 +224,17 @@ import {
|
|
|
214
224
|
NotificationToast,
|
|
215
225
|
NotificationsList,
|
|
216
226
|
NotificationsListContainer,
|
|
227
|
+
OAuthClientCard,
|
|
228
|
+
OAuthClientDetail,
|
|
229
|
+
OAuthClientForm,
|
|
230
|
+
OAuthClientList,
|
|
231
|
+
OAuthClientSecretDisplay,
|
|
232
|
+
OAuthConsentActions,
|
|
233
|
+
OAuthConsentHeader,
|
|
234
|
+
OAuthConsentScreen,
|
|
235
|
+
OAuthRedirectUriInput,
|
|
236
|
+
OAuthScopeList,
|
|
237
|
+
OAuthScopeSelector,
|
|
217
238
|
PageContainer,
|
|
218
239
|
PageContainerContentDetails,
|
|
219
240
|
PageContentContainer,
|
|
@@ -347,11 +368,10 @@ import {
|
|
|
347
368
|
triggerAssociationToast,
|
|
348
369
|
useCarousel,
|
|
349
370
|
useFileUpload,
|
|
350
|
-
useFormField,
|
|
351
371
|
useSidebar
|
|
352
|
-
} from "../chunk-
|
|
372
|
+
} from "../chunk-JNLXGGHE.mjs";
|
|
353
373
|
import "../chunk-GR4QPP36.mjs";
|
|
354
|
-
import "../chunk-
|
|
374
|
+
import "../chunk-LNBT2YPZ.mjs";
|
|
355
375
|
import "../chunk-AUXK7QSA.mjs";
|
|
356
376
|
import "../chunk-C7C7VY4F.mjs";
|
|
357
377
|
import "../chunk-U4MTVHOC.mjs";
|
|
@@ -513,6 +533,16 @@ export {
|
|
|
513
533
|
DropdownMenuSubTrigger,
|
|
514
534
|
DropdownMenuTrigger,
|
|
515
535
|
ErrorDetails,
|
|
536
|
+
Field,
|
|
537
|
+
FieldContent,
|
|
538
|
+
FieldDescription,
|
|
539
|
+
FieldError,
|
|
540
|
+
FieldGroup,
|
|
541
|
+
FieldLabel,
|
|
542
|
+
FieldLegend,
|
|
543
|
+
FieldSeparator,
|
|
544
|
+
FieldSet,
|
|
545
|
+
FieldTitle,
|
|
516
546
|
FileInput,
|
|
517
547
|
FileUploader,
|
|
518
548
|
FileUploaderContent,
|
|
@@ -520,17 +550,11 @@ export {
|
|
|
520
550
|
ForgotPassword,
|
|
521
551
|
Form,
|
|
522
552
|
FormCheckbox,
|
|
523
|
-
FormContainerGeneric,
|
|
524
|
-
FormControl,
|
|
525
553
|
FormDate,
|
|
526
554
|
FormDateTime,
|
|
527
|
-
FormDescription,
|
|
528
555
|
FormFeatures,
|
|
529
|
-
|
|
556
|
+
FormFieldWrapper,
|
|
530
557
|
FormInput,
|
|
531
|
-
FormItem,
|
|
532
|
-
FormLabel,
|
|
533
|
-
FormMessage,
|
|
534
558
|
FormPassword,
|
|
535
559
|
FormPlaceAutocomplete,
|
|
536
560
|
FormRoles,
|
|
@@ -543,6 +567,12 @@ export {
|
|
|
543
567
|
HoverCardContent,
|
|
544
568
|
HoverCardTrigger,
|
|
545
569
|
Input,
|
|
570
|
+
InputGroup,
|
|
571
|
+
InputGroupAddon,
|
|
572
|
+
InputGroupButton,
|
|
573
|
+
InputGroupInput,
|
|
574
|
+
InputGroupText,
|
|
575
|
+
InputGroupTextarea,
|
|
546
576
|
InputOTP,
|
|
547
577
|
InputOTPGroup,
|
|
548
578
|
InputOTPSeparator,
|
|
@@ -577,6 +607,17 @@ export {
|
|
|
577
607
|
NotificationToast,
|
|
578
608
|
NotificationsList,
|
|
579
609
|
NotificationsListContainer,
|
|
610
|
+
OAuthClientCard,
|
|
611
|
+
OAuthClientDetail,
|
|
612
|
+
OAuthClientForm,
|
|
613
|
+
OAuthClientList,
|
|
614
|
+
OAuthClientSecretDisplay,
|
|
615
|
+
OAuthConsentActions,
|
|
616
|
+
OAuthConsentHeader,
|
|
617
|
+
OAuthConsentScreen,
|
|
618
|
+
OAuthRedirectUriInput,
|
|
619
|
+
OAuthScopeList,
|
|
620
|
+
OAuthScopeSelector,
|
|
580
621
|
KanbanOverlay as Overlay,
|
|
581
622
|
PageContainer,
|
|
582
623
|
PageContainerContentDetails,
|
|
@@ -712,7 +753,6 @@ export {
|
|
|
712
753
|
triggerAssociationToast,
|
|
713
754
|
useCarousel,
|
|
714
755
|
useFileUpload,
|
|
715
|
-
useFormField,
|
|
716
756
|
useSidebar
|
|
717
757
|
};
|
|
718
758
|
//# sourceMappingURL=index.mjs.map
|
package/dist/contexts/index.js
CHANGED
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
21
|
+
var _chunkYYZ2U4WUjs = require('../chunk-YYZ2U4WU.js');
|
|
22
22
|
require('../chunk-EW6QPMN3.js');
|
|
23
|
-
require('../chunk-
|
|
23
|
+
require('../chunk-O3LLMGP7.js');
|
|
24
24
|
require('../chunk-LXKSUWAV.js');
|
|
25
25
|
require('../chunk-IBS6NI7D.js');
|
|
26
26
|
require('../chunk-FM6WRAN5.js');
|
|
@@ -45,5 +45,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
exports.CommonProvider =
|
|
48
|
+
exports.CommonProvider = _chunkYYZ2U4WUjs.CommonProvider; exports.CompanyProvider = _chunkYYZ2U4WUjs.CompanyProvider; exports.CurrentUserProvider = _chunkYYZ2U4WUjs.CurrentUserProvider; exports.NotificationContextProvider = _chunkYYZ2U4WUjs.NotificationContextProvider; exports.RoleProvider = _chunkYYZ2U4WUjs.RoleProvider; exports.SharedProvider = _chunkYYZ2U4WUjs.SharedProvider; exports.SocketContext = _chunkYYZ2U4WUjs.SocketContext; exports.SocketProvider = _chunkYYZ2U4WUjs.SocketProvider; exports.UserProvider = _chunkYYZ2U4WUjs.UserProvider; exports.recentPagesAtom = _chunkYYZ2U4WUjs.recentPagesAtom; exports.useCommonContext = _chunkYYZ2U4WUjs.useCommonContext; exports.useCompanyContext = _chunkYYZ2U4WUjs.useCompanyContext; exports.useCurrentUserContext = _chunkYYZ2U4WUjs.useCurrentUserContext; exports.useNotificationContext = _chunkYYZ2U4WUjs.useNotificationContext; exports.useRoleContext = _chunkYYZ2U4WUjs.useRoleContext; exports.useSharedContext = _chunkYYZ2U4WUjs.useSharedContext; exports.useSocketContext = _chunkYYZ2U4WUjs.useSocketContext; exports.useUserContext = _chunkYYZ2U4WUjs.useUserContext;
|
|
49
49
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -18,9 +18,9 @@ import {
|
|
|
18
18
|
useSharedContext,
|
|
19
19
|
useSocketContext,
|
|
20
20
|
useUserContext
|
|
21
|
-
} from "../chunk-
|
|
21
|
+
} from "../chunk-JNLXGGHE.mjs";
|
|
22
22
|
import "../chunk-GR4QPP36.mjs";
|
|
23
|
-
import "../chunk-
|
|
23
|
+
import "../chunk-LNBT2YPZ.mjs";
|
|
24
24
|
import "../chunk-AUXK7QSA.mjs";
|
|
25
25
|
import "../chunk-C7C7VY4F.mjs";
|
|
26
26
|
import "../chunk-U4MTVHOC.mjs";
|
package/dist/core/index.d.mts
CHANGED
|
@@ -20,6 +20,8 @@ export { A as AuthComponent } from '../AuthComponent-hxOPs9o8.mjs';
|
|
|
20
20
|
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 } from '../stripe-subscription.interface-CFtupgYh.mjs';
|
|
21
21
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-subscription.interface-CFtupgYh.mjs';
|
|
22
22
|
import { a as ContentInterface, C as ContentInput } from '../content.interface-QcsFR5Ad.mjs';
|
|
23
|
+
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
24
|
+
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
23
25
|
import 'd3';
|
|
24
26
|
|
|
25
27
|
declare abstract class AbstractApiData implements ApiDataInterface {
|
|
@@ -214,6 +216,7 @@ interface FoundationModuleDefinitions {
|
|
|
214
216
|
StripeProduct: ModuleWithPermissions;
|
|
215
217
|
StripePrice: ModuleWithPermissions;
|
|
216
218
|
StripeUsage: ModuleWithPermissions;
|
|
219
|
+
OAuth: ModuleWithPermissions;
|
|
217
220
|
}
|
|
218
221
|
interface AppModuleDefinitions {
|
|
219
222
|
}
|
|
@@ -1282,4 +1285,108 @@ declare class S3 extends AbstractApiData implements S3Interface {
|
|
|
1282
1285
|
createJsonApi(data: S3Input): any;
|
|
1283
1286
|
}
|
|
1284
1287
|
|
|
1285
|
-
|
|
1288
|
+
declare const OAuthModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1289
|
+
|
|
1290
|
+
/**
|
|
1291
|
+
* OAuth client data model
|
|
1292
|
+
* Represents a registered OAuth application that can request access tokens
|
|
1293
|
+
*/
|
|
1294
|
+
declare class OAuthClient extends AbstractApiData implements OAuthClientInterface {
|
|
1295
|
+
private _clientId?;
|
|
1296
|
+
private _name?;
|
|
1297
|
+
private _description?;
|
|
1298
|
+
private _redirectUris;
|
|
1299
|
+
private _allowedScopes;
|
|
1300
|
+
private _allowedGrantTypes;
|
|
1301
|
+
private _isConfidential;
|
|
1302
|
+
private _isActive;
|
|
1303
|
+
get clientId(): string;
|
|
1304
|
+
get name(): string;
|
|
1305
|
+
get description(): string | undefined;
|
|
1306
|
+
get redirectUris(): string[];
|
|
1307
|
+
get allowedScopes(): string[];
|
|
1308
|
+
get allowedGrantTypes(): string[];
|
|
1309
|
+
get isConfidential(): boolean;
|
|
1310
|
+
get isActive(): boolean;
|
|
1311
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1312
|
+
createJsonApi(data: OAuthClientInput): any;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
/**
|
|
1316
|
+
* Service for OAuth client management and authorization consent flow.
|
|
1317
|
+
*
|
|
1318
|
+
* Client Management endpoints:
|
|
1319
|
+
* - GET /oauth/clients - List all clients for current user
|
|
1320
|
+
* - GET /oauth/clients/:clientId - Get single client
|
|
1321
|
+
* - POST /oauth/clients - Create new client (returns secret once)
|
|
1322
|
+
* - PATCH /oauth/clients/:clientId - Update client
|
|
1323
|
+
* - DELETE /oauth/clients/:clientId - Delete client
|
|
1324
|
+
* - POST /oauth/clients/:clientId/regenerate-secret - Regenerate client secret
|
|
1325
|
+
*
|
|
1326
|
+
* Consent Flow endpoints:
|
|
1327
|
+
* - GET /oauth/authorize/info - Get client info for consent screen
|
|
1328
|
+
* - POST /oauth/authorize/approve - Approve authorization
|
|
1329
|
+
* - POST /oauth/authorize/deny - Deny authorization
|
|
1330
|
+
*/
|
|
1331
|
+
declare class OAuthService extends AbstractService {
|
|
1332
|
+
/**
|
|
1333
|
+
* List all OAuth clients for the current user
|
|
1334
|
+
*/
|
|
1335
|
+
static listClients(params?: {
|
|
1336
|
+
next?: NextRef;
|
|
1337
|
+
}): Promise<OAuthClientInterface[]>;
|
|
1338
|
+
/**
|
|
1339
|
+
* Get a single OAuth client by ID
|
|
1340
|
+
*/
|
|
1341
|
+
static getClient(params: {
|
|
1342
|
+
clientId: string;
|
|
1343
|
+
}): Promise<OAuthClientInterface>;
|
|
1344
|
+
/**
|
|
1345
|
+
* Create a new OAuth client
|
|
1346
|
+
* @returns The created client AND the client secret (shown only once!)
|
|
1347
|
+
*/
|
|
1348
|
+
static createClient(data: OAuthClientCreateRequest): Promise<OAuthClientCreateResponse>;
|
|
1349
|
+
/**
|
|
1350
|
+
* Update an existing OAuth client
|
|
1351
|
+
*/
|
|
1352
|
+
static updateClient(params: {
|
|
1353
|
+
clientId: string;
|
|
1354
|
+
data: Partial<OAuthClientInput>;
|
|
1355
|
+
}): Promise<OAuthClientInterface>;
|
|
1356
|
+
/**
|
|
1357
|
+
* Delete an OAuth client
|
|
1358
|
+
*/
|
|
1359
|
+
static deleteClient(params: {
|
|
1360
|
+
clientId: string;
|
|
1361
|
+
}): Promise<void>;
|
|
1362
|
+
/**
|
|
1363
|
+
* Regenerate the client secret
|
|
1364
|
+
* @returns The new client secret (shown only once!)
|
|
1365
|
+
*/
|
|
1366
|
+
static regenerateSecret(params: {
|
|
1367
|
+
clientId: string;
|
|
1368
|
+
}): Promise<{
|
|
1369
|
+
clientSecret: string;
|
|
1370
|
+
}>;
|
|
1371
|
+
/**
|
|
1372
|
+
* Get client information for the consent screen
|
|
1373
|
+
* Called when user is redirected to /oauth/authorize
|
|
1374
|
+
*/
|
|
1375
|
+
static getAuthorizationInfo(params: OAuthConsentRequest): Promise<OAuthConsentInfo>;
|
|
1376
|
+
/**
|
|
1377
|
+
* Approve the authorization request
|
|
1378
|
+
* @returns Redirect URL with authorization code
|
|
1379
|
+
*/
|
|
1380
|
+
static approveAuthorization(params: OAuthConsentRequest): Promise<{
|
|
1381
|
+
redirectUrl: string;
|
|
1382
|
+
}>;
|
|
1383
|
+
/**
|
|
1384
|
+
* Deny the authorization request
|
|
1385
|
+
* @returns Redirect URL with error=access_denied
|
|
1386
|
+
*/
|
|
1387
|
+
static denyAuthorization(params: OAuthConsentRequest): Promise<{
|
|
1388
|
+
redirectUrl: string;
|
|
1389
|
+
}>;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, 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, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, PaymentMethod, PaymentMethodInterface, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, 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, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getIcon, getIconByModule, getIconByModuleName, getLucideIcon, getLucideIconByModule, getLucideIconByModuleName, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
|
package/dist/core/index.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export { A as AuthComponent } from '../AuthComponent-hxOPs9o8.js';
|
|
|
20
20
|
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 } from '../stripe-subscription.interface-CNTsrbAx.js';
|
|
21
21
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-subscription.interface-CNTsrbAx.js';
|
|
22
22
|
import { a as ContentInterface, C as ContentInput } from '../content.interface-CUIEQ0jk.js';
|
|
23
|
+
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-vL7za9Bz.js';
|
|
24
|
+
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-vL7za9Bz.js';
|
|
23
25
|
import 'd3';
|
|
24
26
|
|
|
25
27
|
declare abstract class AbstractApiData implements ApiDataInterface {
|
|
@@ -214,6 +216,7 @@ interface FoundationModuleDefinitions {
|
|
|
214
216
|
StripeProduct: ModuleWithPermissions;
|
|
215
217
|
StripePrice: ModuleWithPermissions;
|
|
216
218
|
StripeUsage: ModuleWithPermissions;
|
|
219
|
+
OAuth: ModuleWithPermissions;
|
|
217
220
|
}
|
|
218
221
|
interface AppModuleDefinitions {
|
|
219
222
|
}
|
|
@@ -1282,4 +1285,108 @@ declare class S3 extends AbstractApiData implements S3Interface {
|
|
|
1282
1285
|
createJsonApi(data: S3Input): any;
|
|
1283
1286
|
}
|
|
1284
1287
|
|
|
1285
|
-
|
|
1288
|
+
declare const OAuthModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1289
|
+
|
|
1290
|
+
/**
|
|
1291
|
+
* OAuth client data model
|
|
1292
|
+
* Represents a registered OAuth application that can request access tokens
|
|
1293
|
+
*/
|
|
1294
|
+
declare class OAuthClient extends AbstractApiData implements OAuthClientInterface {
|
|
1295
|
+
private _clientId?;
|
|
1296
|
+
private _name?;
|
|
1297
|
+
private _description?;
|
|
1298
|
+
private _redirectUris;
|
|
1299
|
+
private _allowedScopes;
|
|
1300
|
+
private _allowedGrantTypes;
|
|
1301
|
+
private _isConfidential;
|
|
1302
|
+
private _isActive;
|
|
1303
|
+
get clientId(): string;
|
|
1304
|
+
get name(): string;
|
|
1305
|
+
get description(): string | undefined;
|
|
1306
|
+
get redirectUris(): string[];
|
|
1307
|
+
get allowedScopes(): string[];
|
|
1308
|
+
get allowedGrantTypes(): string[];
|
|
1309
|
+
get isConfidential(): boolean;
|
|
1310
|
+
get isActive(): boolean;
|
|
1311
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1312
|
+
createJsonApi(data: OAuthClientInput): any;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
/**
|
|
1316
|
+
* Service for OAuth client management and authorization consent flow.
|
|
1317
|
+
*
|
|
1318
|
+
* Client Management endpoints:
|
|
1319
|
+
* - GET /oauth/clients - List all clients for current user
|
|
1320
|
+
* - GET /oauth/clients/:clientId - Get single client
|
|
1321
|
+
* - POST /oauth/clients - Create new client (returns secret once)
|
|
1322
|
+
* - PATCH /oauth/clients/:clientId - Update client
|
|
1323
|
+
* - DELETE /oauth/clients/:clientId - Delete client
|
|
1324
|
+
* - POST /oauth/clients/:clientId/regenerate-secret - Regenerate client secret
|
|
1325
|
+
*
|
|
1326
|
+
* Consent Flow endpoints:
|
|
1327
|
+
* - GET /oauth/authorize/info - Get client info for consent screen
|
|
1328
|
+
* - POST /oauth/authorize/approve - Approve authorization
|
|
1329
|
+
* - POST /oauth/authorize/deny - Deny authorization
|
|
1330
|
+
*/
|
|
1331
|
+
declare class OAuthService extends AbstractService {
|
|
1332
|
+
/**
|
|
1333
|
+
* List all OAuth clients for the current user
|
|
1334
|
+
*/
|
|
1335
|
+
static listClients(params?: {
|
|
1336
|
+
next?: NextRef;
|
|
1337
|
+
}): Promise<OAuthClientInterface[]>;
|
|
1338
|
+
/**
|
|
1339
|
+
* Get a single OAuth client by ID
|
|
1340
|
+
*/
|
|
1341
|
+
static getClient(params: {
|
|
1342
|
+
clientId: string;
|
|
1343
|
+
}): Promise<OAuthClientInterface>;
|
|
1344
|
+
/**
|
|
1345
|
+
* Create a new OAuth client
|
|
1346
|
+
* @returns The created client AND the client secret (shown only once!)
|
|
1347
|
+
*/
|
|
1348
|
+
static createClient(data: OAuthClientCreateRequest): Promise<OAuthClientCreateResponse>;
|
|
1349
|
+
/**
|
|
1350
|
+
* Update an existing OAuth client
|
|
1351
|
+
*/
|
|
1352
|
+
static updateClient(params: {
|
|
1353
|
+
clientId: string;
|
|
1354
|
+
data: Partial<OAuthClientInput>;
|
|
1355
|
+
}): Promise<OAuthClientInterface>;
|
|
1356
|
+
/**
|
|
1357
|
+
* Delete an OAuth client
|
|
1358
|
+
*/
|
|
1359
|
+
static deleteClient(params: {
|
|
1360
|
+
clientId: string;
|
|
1361
|
+
}): Promise<void>;
|
|
1362
|
+
/**
|
|
1363
|
+
* Regenerate the client secret
|
|
1364
|
+
* @returns The new client secret (shown only once!)
|
|
1365
|
+
*/
|
|
1366
|
+
static regenerateSecret(params: {
|
|
1367
|
+
clientId: string;
|
|
1368
|
+
}): Promise<{
|
|
1369
|
+
clientSecret: string;
|
|
1370
|
+
}>;
|
|
1371
|
+
/**
|
|
1372
|
+
* Get client information for the consent screen
|
|
1373
|
+
* Called when user is redirected to /oauth/authorize
|
|
1374
|
+
*/
|
|
1375
|
+
static getAuthorizationInfo(params: OAuthConsentRequest): Promise<OAuthConsentInfo>;
|
|
1376
|
+
/**
|
|
1377
|
+
* Approve the authorization request
|
|
1378
|
+
* @returns Redirect URL with authorization code
|
|
1379
|
+
*/
|
|
1380
|
+
static approveAuthorization(params: OAuthConsentRequest): Promise<{
|
|
1381
|
+
redirectUrl: string;
|
|
1382
|
+
}>;
|
|
1383
|
+
/**
|
|
1384
|
+
* Deny the authorization request
|
|
1385
|
+
* @returns Redirect URL with error=access_denied
|
|
1386
|
+
*/
|
|
1387
|
+
static denyAuthorization(params: OAuthConsentRequest): Promise<{
|
|
1388
|
+
redirectUrl: string;
|
|
1389
|
+
}>;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, 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, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, PaymentMethod, PaymentMethodInterface, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, 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, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getIcon, getIconByModule, getIconByModuleName, getLucideIcon, getLucideIconByModule, getLucideIconByModuleName, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
|
package/dist/core/index.js
CHANGED
|
@@ -100,7 +100,13 @@
|
|
|
100
100
|
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
var _chunkO3LLMGP7js = require('../chunk-O3LLMGP7.js');
|
|
104
110
|
require('../chunk-LXKSUWAV.js');
|
|
105
111
|
require('../chunk-IBS6NI7D.js');
|
|
106
112
|
|
|
@@ -227,5 +233,11 @@ require('../chunk-7QVYU63E.js');
|
|
|
227
233
|
|
|
228
234
|
|
|
229
235
|
|
|
230
|
-
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
exports.AVAILABLE_OAUTH_SCOPES = _chunkO3LLMGP7js.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkO3LLMGP7js.AbstractApiData; exports.AbstractService = _chunkO3LLMGP7js.AbstractService; exports.Action = _chunkO3LLMGP7js.Action; exports.Auth = _chunkO3LLMGP7js.Auth; exports.AuthComponent = _chunkO3LLMGP7js.AuthComponent; exports.AuthModule = _chunkO3LLMGP7js.AuthModule; exports.AuthService = _chunkO3LLMGP7js.AuthService; exports.AuthorModule = _chunkO3LLMGP7js.AuthorModule; exports.Billing = _chunkO3LLMGP7js.Billing; exports.BillingModule = _chunkO3LLMGP7js.BillingModule; exports.BillingService = _chunkO3LLMGP7js.BillingService; exports.BlockNoteDiffUtil = _chunkO3LLMGP7js.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkO3LLMGP7js.BlockNoteWordDiffRendererUtil; exports.ClientAbstractService = _chunkO3LLMGP7js.ClientAbstractService; exports.ClientHttpMethod = _chunkO3LLMGP7js.ClientHttpMethod; exports.Company = _chunkO3LLMGP7js.Company; exports.CompanyFields = _chunkO3LLMGP7js.CompanyFields; exports.CompanyModule = _chunkO3LLMGP7js.CompanyModule; exports.CompanyService = _chunkO3LLMGP7js.CompanyService; exports.Content = _chunkO3LLMGP7js.Content; exports.ContentFields = _chunkO3LLMGP7js.ContentFields; exports.ContentModule = _chunkO3LLMGP7js.ContentModule; exports.ContentService = _chunkO3LLMGP7js.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkO3LLMGP7js.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkFM6WRAN5js.DataClassRegistry; exports.DataClassRegistry = _chunkFM6WRAN5js.DataClassRegistry; exports.EndpointCreator = _chunkO3LLMGP7js.EndpointCreator; exports.Feature = _chunkO3LLMGP7js.Feature; exports.FeatureModule = _chunkO3LLMGP7js.FeatureModule; exports.FeatureService = _chunkO3LLMGP7js.FeatureService; exports.HttpMethod = _chunkO3LLMGP7js.HttpMethod; exports.InvoiceStatus = _chunkO3LLMGP7js.InvoiceStatus; exports.JsonApiDataFactory = _chunkFM6WRAN5js.JsonApiDataFactory; exports.Module = _chunkO3LLMGP7js.Module; exports.ModuleModule = _chunkO3LLMGP7js.ModuleModule; exports.ModuleRegistrar = _chunkO3LLMGP7js.ModuleRegistrar; exports.ModuleRegistry = _chunkO3LLMGP7js.ModuleRegistry; exports.Modules = _chunkO3LLMGP7js.Modules; exports.Notification = _chunkO3LLMGP7js.Notification; exports.NotificationFields = _chunkO3LLMGP7js.NotificationFields; exports.NotificationModule = _chunkO3LLMGP7js.NotificationModule; exports.NotificationService = _chunkO3LLMGP7js.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkO3LLMGP7js.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkO3LLMGP7js.OAuthClient; exports.OAuthModule = _chunkO3LLMGP7js.OAuthModule; exports.OAuthService = _chunkO3LLMGP7js.OAuthService; exports.PaymentMethod = _chunkO3LLMGP7js.PaymentMethod; exports.Push = _chunkO3LLMGP7js.Push; exports.PushModule = _chunkO3LLMGP7js.PushModule; exports.PushService = _chunkO3LLMGP7js.PushService; exports.RehydrationFactory = _chunkO3LLMGP7js.RehydrationFactory; exports.Role = _chunkO3LLMGP7js.Role; exports.RoleFields = _chunkO3LLMGP7js.RoleFields; exports.RoleModule = _chunkO3LLMGP7js.RoleModule; exports.RoleService = _chunkO3LLMGP7js.RoleService; exports.S3 = _chunkO3LLMGP7js.S3; exports.S3Module = _chunkO3LLMGP7js.S3Module; exports.S3Service = _chunkO3LLMGP7js.S3Service; exports.StripeCustomer = _chunkO3LLMGP7js.StripeCustomer; exports.StripeCustomerModule = _chunkO3LLMGP7js.StripeCustomerModule; exports.StripeCustomerService = _chunkO3LLMGP7js.StripeCustomerService; exports.StripeInvoice = _chunkO3LLMGP7js.StripeInvoice; exports.StripeInvoiceModule = _chunkO3LLMGP7js.StripeInvoiceModule; exports.StripeInvoiceService = _chunkO3LLMGP7js.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkO3LLMGP7js.StripePaymentMethodModule; exports.StripePrice = _chunkO3LLMGP7js.StripePrice; exports.StripePriceModule = _chunkO3LLMGP7js.StripePriceModule; exports.StripePriceService = _chunkO3LLMGP7js.StripePriceService; exports.StripeProduct = _chunkO3LLMGP7js.StripeProduct; exports.StripeProductModule = _chunkO3LLMGP7js.StripeProductModule; exports.StripeProductService = _chunkO3LLMGP7js.StripeProductService; exports.StripeSubscription = _chunkO3LLMGP7js.StripeSubscription; exports.StripeSubscriptionModule = _chunkO3LLMGP7js.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkO3LLMGP7js.StripeSubscriptionService; exports.StripeUsage = _chunkO3LLMGP7js.StripeUsage; exports.StripeUsageModule = _chunkO3LLMGP7js.StripeUsageModule; exports.StripeUsageService = _chunkO3LLMGP7js.StripeUsageService; exports.SubscriptionStatus = _chunkO3LLMGP7js.SubscriptionStatus; exports.TableOptions = _chunkO3LLMGP7js.TableOptions; exports.User = _chunkO3LLMGP7js.User; exports.UserFields = _chunkO3LLMGP7js.UserFields; exports.UserModule = _chunkO3LLMGP7js.UserModule; exports.UserService = _chunkO3LLMGP7js.UserService; exports.checkPermissions = _chunkO3LLMGP7js.checkPermissions; exports.checkPermissionsFromServer = _chunkO3LLMGP7js.checkPermissionsFromServer; exports.cn = _chunkO3LLMGP7js.cn; exports.composeRefs = _chunkO3LLMGP7js.composeRefs; exports.createJsonApiInclusion = _chunkO3LLMGP7js.createJsonApiInclusion; exports.entityObjectSchema = _chunkO3LLMGP7js.entityObjectSchema; exports.exists = _chunkO3LLMGP7js.exists; exports.formatDate = _chunkO3LLMGP7js.formatDate; exports.getBootstrapper = _chunkFM6WRAN5js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkO3LLMGP7js.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkO3LLMGP7js.getGlobalErrorHandler; exports.getIcon = _chunkO3LLMGP7js.getIcon; exports.getIconByModule = _chunkO3LLMGP7js.getIconByModule; exports.getIconByModuleName = _chunkO3LLMGP7js.getIconByModuleName; exports.getLucideIcon = _chunkO3LLMGP7js.getLucideIcon; exports.getLucideIconByModule = _chunkO3LLMGP7js.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkO3LLMGP7js.getLucideIconByModuleName; exports.getTableComponents = _chunkO3LLMGP7js.getTableComponents; exports.getTableOptions = _chunkO3LLMGP7js.getTableOptions; exports.getValueFromPath = _chunkO3LLMGP7js.getValueFromPath; exports.hasBootstrapper = _chunkFM6WRAN5js.hasBootstrapper; exports.rehydrate = _chunkO3LLMGP7js.rehydrate; exports.rehydrateList = _chunkO3LLMGP7js.rehydrateList; exports.resetBootstrapStore = _chunkFM6WRAN5js.resetBootstrapStore; exports.setBootstrapper = _chunkFM6WRAN5js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkO3LLMGP7js.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkO3LLMGP7js.setGlobalErrorHandler; exports.translateData = _chunkFM6WRAN5js.translateData; exports.translateResponse = _chunkFM6WRAN5js.translateResponse; exports.tryBootstrap = _chunkFM6WRAN5js.tryBootstrap; exports.useComposedRefs = _chunkO3LLMGP7js.useComposedRefs; exports.useIsMobile = _chunkO3LLMGP7js.useIsMobile; exports.userObjectSchema = _chunkO3LLMGP7js.userObjectSchema;
|
|
231
243
|
//# 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;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;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;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;AACF,6sNAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/core/index.js"}
|
package/dist/core/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AVAILABLE_OAUTH_SCOPES,
|
|
2
3
|
AbstractApiData,
|
|
3
4
|
AbstractService,
|
|
4
5
|
Action,
|
|
@@ -22,6 +23,7 @@ import {
|
|
|
22
23
|
ContentFields,
|
|
23
24
|
ContentModule,
|
|
24
25
|
ContentService,
|
|
26
|
+
DEFAULT_GRANT_TYPES,
|
|
25
27
|
EndpointCreator,
|
|
26
28
|
Feature,
|
|
27
29
|
FeatureModule,
|
|
@@ -37,6 +39,10 @@ import {
|
|
|
37
39
|
NotificationFields,
|
|
38
40
|
NotificationModule,
|
|
39
41
|
NotificationService,
|
|
42
|
+
OAUTH_SCOPE_DISPLAY,
|
|
43
|
+
OAuthClient,
|
|
44
|
+
OAuthModule,
|
|
45
|
+
OAuthService,
|
|
40
46
|
PaymentMethod,
|
|
41
47
|
Push,
|
|
42
48
|
PushModule,
|
|
@@ -100,7 +106,7 @@ import {
|
|
|
100
106
|
useComposedRefs,
|
|
101
107
|
useIsMobile,
|
|
102
108
|
userObjectSchema
|
|
103
|
-
} from "../chunk-
|
|
109
|
+
} from "../chunk-LNBT2YPZ.mjs";
|
|
104
110
|
import "../chunk-AUXK7QSA.mjs";
|
|
105
111
|
import "../chunk-C7C7VY4F.mjs";
|
|
106
112
|
import {
|
|
@@ -116,6 +122,7 @@ import {
|
|
|
116
122
|
} from "../chunk-U4MTVHOC.mjs";
|
|
117
123
|
import "../chunk-PAWJFY3S.mjs";
|
|
118
124
|
export {
|
|
125
|
+
AVAILABLE_OAUTH_SCOPES,
|
|
119
126
|
AbstractApiData,
|
|
120
127
|
AbstractService,
|
|
121
128
|
Action,
|
|
@@ -139,6 +146,7 @@ export {
|
|
|
139
146
|
ContentFields,
|
|
140
147
|
ContentModule,
|
|
141
148
|
ContentService,
|
|
149
|
+
DEFAULT_GRANT_TYPES,
|
|
142
150
|
DataClassRegistry as DataClass,
|
|
143
151
|
DataClassRegistry,
|
|
144
152
|
EndpointCreator,
|
|
@@ -157,6 +165,10 @@ export {
|
|
|
157
165
|
NotificationFields,
|
|
158
166
|
NotificationModule,
|
|
159
167
|
NotificationService,
|
|
168
|
+
OAUTH_SCOPE_DISPLAY,
|
|
169
|
+
OAuthClient,
|
|
170
|
+
OAuthModule,
|
|
171
|
+
OAuthService,
|
|
160
172
|
PaymentMethod,
|
|
161
173
|
Push,
|
|
162
174
|
PushModule,
|
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ export { A as ApiData } from './ApiData-DPKNfY-9.mjs';
|
|
|
2
2
|
export { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiDataInterface-DPP8s46n.mjs';
|
|
3
3
|
export { A as ApiRequestDataTypeInterface, F as FieldSelector, G as GetterKeys, c as createJsonApiInclusion } from './ApiRequestDataTypeInterface-CUKFDBx2.mjs';
|
|
4
4
|
export { A as ApiResponseInterface } from './ApiResponseInterface-zeewugD7.mjs';
|
|
5
|
-
export { AbstractApiData, AppModuleDefinitions, Auth, AuthModule, AuthorModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, PaymentMethod, Push, PushInput, PushInterface, PushModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, User, UserModule, UserObject, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getIcon, getIconByModule, getIconByModuleName, getLucideIcon, getLucideIconByModule, getLucideIconByModuleName, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.mjs';
|
|
5
|
+
export { AbstractApiData, AppModuleDefinitions, Auth, AuthModule, AuthorModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, PaymentMethod, Push, PushInput, PushInterface, PushModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, User, UserModule, UserObject, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getIcon, getIconByModule, getIconByModuleName, getLucideIcon, getLucideIconByModule, getLucideIconByModuleName, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.mjs';
|
|
6
6
|
export { A as AbstractService, a as AuthInput, c as AuthInterface, b as AuthQuery, d as AuthService, C as CompanyService, e as ContentService, F as FeatureService, H as HttpMethod, N as NextRef, f as NotificationService, P as PreviousRef, h as PushService, R as RoleService, i as S3Input, j as S3Interface, k as S3Service, S as SelfRef, U as UserService, g as getGlobalErrorHandler, s as setGlobalErrorHandler } from './s3.service-DSDfcr0S.mjs';
|
|
7
7
|
export { B as BreadcrumbItemData } from './breadcrumb.item.data.interface-CgB4_1EE.mjs';
|
|
8
8
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-Ck5lkQ5d.mjs';
|
|
@@ -11,6 +11,7 @@ export { A as Action, C as CompanyInput, h as CompanyInterface, F as FeatureInte
|
|
|
11
11
|
export { A as AuthComponent } from './AuthComponent-hxOPs9o8.mjs';
|
|
12
12
|
export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, e as PriceRecurring, 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-subscription.interface-CFtupgYh.mjs';
|
|
13
13
|
export { C as ContentInput, a as ContentInterface } from './content.interface-QcsFR5Ad.mjs';
|
|
14
|
+
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-DsZ5ecSX.mjs';
|
|
14
15
|
export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-h0hNLceh.mjs';
|
|
15
16
|
import 'react';
|
|
16
17
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { A as ApiData } from './ApiData-DPKNfY-9.js';
|
|
|
2
2
|
export { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from './ApiDataInterface-DPP8s46n.js';
|
|
3
3
|
export { A as ApiRequestDataTypeInterface, F as FieldSelector, G as GetterKeys, c as createJsonApiInclusion } from './ApiRequestDataTypeInterface-CUKFDBx2.js';
|
|
4
4
|
export { A as ApiResponseInterface } from './ApiResponseInterface-CAIAeP5d.js';
|
|
5
|
-
export { AbstractApiData, AppModuleDefinitions, Auth, AuthModule, AuthorModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, PaymentMethod, Push, PushInput, PushInterface, PushModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, User, UserModule, UserObject, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getIcon, getIconByModule, getIconByModuleName, getLucideIcon, getLucideIconByModule, getLucideIconByModuleName, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.js';
|
|
5
|
+
export { AbstractApiData, AppModuleDefinitions, Auth, AuthModule, AuthorModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, JsonApiDataFactory, Module, ModuleDefinitions, ModuleModule, ModuleRegistrar, ModuleRegistry, Modules, Notification, NotificationFields, NotificationModule, OAuthClient, OAuthModule, OAuthService, PaymentMethod, Push, PushInput, PushInterface, PushModule, RehydrationFactory, Role, RoleModule, S3, S3Module, SearchResultInterface, StripeCustomer, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceModule, StripePriceService, StripeProduct, StripeProductModule, StripeProductService, StripeSubscription, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageModule, StripeUsageService, TableOptions, User, UserModule, UserObject, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, entityObjectSchema, exists, formatDate, getBootstrapper, getClientGlobalErrorHandler, getIcon, getIconByModule, getIconByModuleName, getLucideIcon, getLucideIconByModule, getLucideIconByModuleName, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema } from './core/index.js';
|
|
6
6
|
export { A as AbstractService, a as AuthInput, c as AuthInterface, b as AuthQuery, d as AuthService, C as CompanyService, e as ContentService, F as FeatureService, H as HttpMethod, N as NextRef, f as NotificationService, P as PreviousRef, h as PushService, R as RoleService, i as S3Input, j as S3Interface, k as S3Service, S as SelfRef, U as UserService, g as getGlobalErrorHandler, s as setGlobalErrorHandler } from './s3.service-B83hUhqV.js';
|
|
7
7
|
export { B as BreadcrumbItemData } from './breadcrumb.item.data.interface-CgB4_1EE.js';
|
|
8
8
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-Ck5lkQ5d.js';
|
|
@@ -11,6 +11,7 @@ export { A as Action, C as CompanyInput, h as CompanyInterface, F as FeatureInte
|
|
|
11
11
|
export { A as AuthComponent } from './AuthComponent-hxOPs9o8.js';
|
|
12
12
|
export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, e as PriceRecurring, 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-subscription.interface-CNTsrbAx.js';
|
|
13
13
|
export { C as ContentInput, a as ContentInterface } from './content.interface-CUIEQ0jk.js';
|
|
14
|
+
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-vL7za9Bz.js';
|
|
14
15
|
export { I as I18nConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, d as getStripePublishableKey, b as getTrackablePages } from './config-D_91hrI-.js';
|
|
15
16
|
import 'react';
|
|
16
17
|
import 'zod';
|