@carlonicora/nextjs-jsonapi 2.0.2 → 2.1.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-DMh-zApr.d.mts +34 -0
- package/dist/AssistantInterface-DwdBzS9f.d.ts +34 -0
- package/dist/{BlockNoteEditor-4224DOTR.js → BlockNoteEditor-C5CYCS3I.js} +22 -20
- package/dist/BlockNoteEditor-C5CYCS3I.js.map +1 -0
- package/dist/{BlockNoteEditor-7NVXRTVR.mjs → BlockNoteEditor-NXDUGMP7.mjs} +7 -5
- package/dist/BlockNoteEditor-NXDUGMP7.mjs.map +1 -0
- package/dist/{BlockNoteViewer-UW5VZ5UF.js → BlockNoteViewer-6N2GQWTI.js} +4 -2
- package/dist/BlockNoteViewer-6N2GQWTI.js.map +1 -0
- package/dist/{BlockNoteViewer-OPSCTHKJ.mjs → BlockNoteViewer-IBQRJ3WM.mjs} +4 -2
- package/dist/BlockNoteViewer-IBQRJ3WM.mjs.map +1 -0
- package/dist/billing/index.js +357 -357
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-DS4IBFWA.js → chunk-6YIZX26T.js} +185 -33
- package/dist/chunk-6YIZX26T.js.map +1 -0
- package/dist/{chunk-TESVH5PV.mjs → chunk-A7AGXKZX.mjs} +1100 -738
- package/dist/chunk-A7AGXKZX.mjs.map +1 -0
- package/dist/{chunk-QS5Y6ZBF.js → chunk-I3GHIU4Y.js} +1258 -896
- package/dist/chunk-I3GHIU4Y.js.map +1 -0
- package/dist/{chunk-UXJAS6C5.js → chunk-JG7MCYCW.js} +7 -7
- package/dist/{chunk-UXJAS6C5.js.map → chunk-JG7MCYCW.js.map} +1 -1
- package/dist/{chunk-HN5ED7OF.mjs → chunk-MAWTFEY3.mjs} +2 -2
- package/dist/{chunk-BIL2WQEV.mjs → chunk-P5TMD7GK.mjs} +158 -6
- package/dist/chunk-P5TMD7GK.mjs.map +1 -0
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +102 -11
- package/dist/components/index.d.ts +102 -11
- package/dist/components/index.js +12 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +11 -3
- package/dist/contexts/index.d.mts +29 -3
- package/dist/contexts/index.d.ts +29 -3
- package/dist/contexts/index.js +4 -4
- package/dist/contexts/index.mjs +3 -3
- package/dist/core/index.d.mts +99 -2
- package/dist/core/index.d.ts +99 -2
- package/dist/core/index.js +8 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +7 -1
- package/dist/features/help/index.js +37 -37
- package/dist/features/help/index.mjs +3 -3
- package/dist/features/tokenusage/index.js +71 -71
- package/dist/features/tokenusage/index.mjs +3 -3
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/editors/BlockNoteEditor.tsx +5 -1
- package/src/components/editors/BlockNoteEditorSuggestionMenuController.tsx +14 -2
- package/src/components/index.ts +1 -0
- package/src/components/viewers/BlockNoteViewer.tsx +5 -1
- package/src/core/index.ts +2 -0
- package/src/core/registry/ModuleRegistry.ts +1 -0
- package/src/features/assistant/components/containers/AssistantPageContainer.tsx +123 -0
- package/src/features/assistant/components/index.ts +2 -0
- package/src/features/assistant/components/parts/AssistantBlockNoteComposer.tsx +135 -0
- package/src/features/assistant/components/parts/AssistantThread.tsx +4 -1
- package/src/features/assistant/contexts/AssistantContext.tsx +60 -13
- package/src/features/assistant/contexts/__tests__/AssistantContext.spec.tsx +81 -0
- package/src/features/assistant/data/Assistant.ts +29 -1
- package/src/features/assistant/data/AssistantInterface.ts +15 -0
- package/src/features/assistant/data/AssistantService.ts +19 -2
- package/src/features/assistant/data/__tests__/Assistant.scope.spec.ts +64 -0
- package/src/features/assistant-action/AssistantActionModule.ts +13 -0
- package/src/features/assistant-action/components/ApprovalActionCard.tsx +127 -0
- package/src/features/assistant-action/components/AssistantContainerWithApprovals.tsx +34 -0
- package/src/features/assistant-action/components/index.ts +2 -0
- package/src/features/assistant-action/data/AssistantAction.ts +58 -0
- package/src/features/assistant-action/data/AssistantActionInterface.ts +24 -0
- package/src/features/assistant-action/data/AssistantActionService.ts +51 -0
- package/src/features/assistant-action/data/__tests__/AssistantAction.spec.ts +171 -0
- package/src/features/assistant-action/data/index.ts +3 -0
- package/src/features/assistant-action/index.ts +2 -0
- package/src/features/assistant-message/components/MessageItem.tsx +57 -6
- package/src/features/assistant-message/components/MessageList.tsx +11 -2
- package/src/features/assistant-message/components/__tests__/MessageItem.mentions.spec.tsx +34 -0
- package/src/features/assistant-message/components/parts/MessageSourcesContainer.tsx +30 -13
- package/src/features/assistant-message/components/parts/tabs/CitationsTab.tsx +23 -5
- package/src/features/assistant-message/components/parts/tabs/ContentsTab.tsx +3 -1
- package/src/features/assistant-message/components/parts/tabs/ReferencesTab.tsx +4 -1
- package/src/features/assistant-message/components/parts/tabs/useEntityLabel.ts +35 -0
- package/src/features/assistant-message/data/AssistantMessage.ts +11 -2
- package/src/features/company/components/details/TokenStatusIndicator.tsx +19 -14
- package/src/features/index.ts +1 -0
- package/dist/AssistantInterface-B56qznuH.d.mts +0 -16
- package/dist/AssistantInterface-CHiJIYDY.d.ts +0 -16
- package/dist/BlockNoteEditor-4224DOTR.js.map +0 -1
- package/dist/BlockNoteEditor-7NVXRTVR.mjs.map +0 -1
- package/dist/BlockNoteViewer-OPSCTHKJ.mjs.map +0 -1
- package/dist/BlockNoteViewer-UW5VZ5UF.js.map +0 -1
- package/dist/chunk-BIL2WQEV.mjs.map +0 -1
- package/dist/chunk-DS4IBFWA.js.map +0 -1
- package/dist/chunk-QS5Y6ZBF.js.map +0 -1
- package/dist/chunk-TESVH5PV.mjs.map +0 -1
- /package/dist/{chunk-HN5ED7OF.mjs.map → chunk-MAWTFEY3.mjs.map} +0 -0
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
var
|
|
30
|
-
require('../../chunk-
|
|
29
|
+
var _chunkI3GHIU4Yjs = require('../../chunk-I3GHIU4Y.js');
|
|
30
|
+
require('../../chunk-JG7MCYCW.js');
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
@@ -39,7 +39,7 @@ require('../../chunk-UXJAS6C5.js');
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
var
|
|
42
|
+
var _chunk6YIZX26Tjs = require('../../chunk-6YIZX26T.js');
|
|
43
43
|
require('../../chunk-LXKSUWAV.js');
|
|
44
44
|
require('../../chunk-IBS6NI7D.js');
|
|
45
45
|
require('../../chunk-QWCAOLBD.js');
|
|
@@ -64,7 +64,7 @@ function TokenUsageAdminFilterBar({ granularity, companyId, metric, companies, o
|
|
|
64
64
|
};
|
|
65
65
|
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex flex-wrap items-center gap-2", children: [
|
|
66
66
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
67
|
-
|
|
67
|
+
_chunkI3GHIU4Yjs.DateRangeSelector,
|
|
68
68
|
{
|
|
69
69
|
onDateChange: (range) => {
|
|
70
70
|
if (!_optionalChain([range, 'optionalAccess', _ => _.from]) || !_optionalChain([range, 'optionalAccess', _2 => _2.to])) return;
|
|
@@ -99,16 +99,16 @@ function TokenUsageAdminFilterBar({ granularity, companyId, metric, companies, o
|
|
|
99
99
|
}
|
|
100
100
|
),
|
|
101
101
|
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
102
|
-
|
|
102
|
+
_chunkI3GHIU4Yjs.Select,
|
|
103
103
|
{
|
|
104
104
|
items: companyItems,
|
|
105
105
|
value: _nullishCoalesce(companyId, () => ( ALL_COMPANIES)),
|
|
106
106
|
onValueChange: (value) => onChange({ companyId: !value || value === ALL_COMPANIES ? void 0 : value }),
|
|
107
107
|
children: [
|
|
108
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
109
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
110
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
111
|
-
companies.map((company) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
108
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectTrigger, { className: "w-56", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectValue, { placeholder: t("token_usage.admin.all_companies") }) }),
|
|
109
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.SelectContent, { children: [
|
|
110
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectItem, { value: ALL_COMPANIES, children: t("token_usage.admin.all_companies") }),
|
|
111
|
+
companies.map((company) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectItem, { value: company.id, children: company.label }, company.id))
|
|
112
112
|
] })
|
|
113
113
|
]
|
|
114
114
|
}
|
|
@@ -131,13 +131,13 @@ function Segmented({
|
|
|
131
131
|
children: options.map((option) => {
|
|
132
132
|
const selected = option.value === value;
|
|
133
133
|
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
134
|
-
|
|
134
|
+
_chunkI3GHIU4Yjs.Button,
|
|
135
135
|
{
|
|
136
136
|
type: "button",
|
|
137
137
|
size: "sm",
|
|
138
138
|
variant: selected ? "default" : "ghost",
|
|
139
139
|
"aria-pressed": selected,
|
|
140
|
-
className:
|
|
140
|
+
className: _chunk6YIZX26Tjs.cn.call(void 0, !selected && "text-muted-foreground"),
|
|
141
141
|
onClick: () => onSelect(option.value),
|
|
142
142
|
children: option.label
|
|
143
143
|
},
|
|
@@ -157,36 +157,36 @@ function withFilters(endpoint, filters) {
|
|
|
157
157
|
return endpoint;
|
|
158
158
|
}
|
|
159
159
|
_chunk7QVYU63Ejs.__name.call(void 0, withFilters, "withFilters");
|
|
160
|
-
var TokenUsageAdminService = class extends
|
|
160
|
+
var TokenUsageAdminService = class extends _chunk6YIZX26Tjs.AbstractService {
|
|
161
161
|
static {
|
|
162
162
|
_chunk7QVYU63Ejs.__name.call(void 0, this, "TokenUsageAdminService");
|
|
163
163
|
}
|
|
164
164
|
/** Six rows: {customer, platform, total} × {current, previous}. */
|
|
165
165
|
static async getSummary(filters) {
|
|
166
|
-
const endpoint = withFilters(new (0,
|
|
166
|
+
const endpoint = withFilters(new (0, _chunk6YIZX26Tjs.EndpointCreator)({ endpoint: _chunk6YIZX26Tjs.Modules.TokenUsageAdminSummary }), filters);
|
|
167
167
|
return this.callApi({
|
|
168
|
-
type:
|
|
168
|
+
type: _chunk6YIZX26Tjs.Modules.TokenUsageAdminSummary,
|
|
169
169
|
method: "GET" /* GET */,
|
|
170
170
|
endpoint: endpoint.generate()
|
|
171
171
|
});
|
|
172
172
|
}
|
|
173
173
|
static async getTimeline(params) {
|
|
174
|
-
const endpoint = withFilters(new (0,
|
|
174
|
+
const endpoint = withFilters(new (0, _chunk6YIZX26Tjs.EndpointCreator)({ endpoint: _chunk6YIZX26Tjs.Modules.TokenUsageAdminTimeline }), params);
|
|
175
175
|
endpoint.addAdditionalParam("granularity", params.granularity);
|
|
176
176
|
endpoint.addAdditionalParam("stackBy", params.stackBy);
|
|
177
177
|
return this.callApi({
|
|
178
|
-
type:
|
|
178
|
+
type: _chunk6YIZX26Tjs.Modules.TokenUsageAdminTimeline,
|
|
179
179
|
method: "GET" /* GET */,
|
|
180
180
|
endpoint: endpoint.generate()
|
|
181
181
|
});
|
|
182
182
|
}
|
|
183
183
|
static async getBreakdown(params) {
|
|
184
|
-
const endpoint = withFilters(new (0,
|
|
184
|
+
const endpoint = withFilters(new (0, _chunk6YIZX26Tjs.EndpointCreator)({ endpoint: _chunk6YIZX26Tjs.Modules.TokenUsageAdminBreakdown }), params);
|
|
185
185
|
endpoint.addAdditionalParam("dimension", params.dimension);
|
|
186
186
|
endpoint.addAdditionalParam("scope", params.scope);
|
|
187
187
|
if (params.limit !== void 0) endpoint.addAdditionalParam("limit", String(params.limit));
|
|
188
188
|
return this.callApi({
|
|
189
|
-
type:
|
|
189
|
+
type: _chunk6YIZX26Tjs.Modules.TokenUsageAdminBreakdown,
|
|
190
190
|
method: "GET" /* GET */,
|
|
191
191
|
endpoint: endpoint.generate()
|
|
192
192
|
});
|
|
@@ -212,7 +212,7 @@ var TokenUsageAdminProvider = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void
|
|
|
212
212
|
topN = DEFAULT_TOP_N
|
|
213
213
|
}) => {
|
|
214
214
|
const t = _nextintl.useTranslations.call(void 0, );
|
|
215
|
-
const generateUrl =
|
|
215
|
+
const generateUrl = _chunkI3GHIU4Yjs.usePageUrlGenerator.call(void 0, );
|
|
216
216
|
const [filters, setFilterState] = _react.useState.call(void 0, () => {
|
|
217
217
|
const range = defaultRange();
|
|
218
218
|
return {
|
|
@@ -330,7 +330,7 @@ var TokenUsageAdminProvider = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void
|
|
|
330
330
|
error
|
|
331
331
|
]
|
|
332
332
|
);
|
|
333
|
-
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
333
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SharedProvider, { value: { breadcrumbs: breadcrumb(), title: title() }, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TokenUsageAdminContext.Provider, { value: contextValue, children }) });
|
|
334
334
|
}, "TokenUsageAdminProvider");
|
|
335
335
|
var useTokenUsageAdmin = /* @__PURE__ */ _chunk7QVYU63Ejs.__name.call(void 0, () => {
|
|
336
336
|
const ctx = _react.useContext.call(void 0, TokenUsageAdminContext);
|
|
@@ -399,7 +399,7 @@ function TokenUsageAdminTiles({ summary, metric, singleCustomerMode }) {
|
|
|
399
399
|
const averagePerCall = totalCurrent.calls ? totalCurrent.cost / totalCurrent.calls : 0;
|
|
400
400
|
const cacheHit = cacheHitPercentage(totalCurrent.cached, totalCurrent.tokensIn);
|
|
401
401
|
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "grid gap-3", children: [
|
|
402
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className:
|
|
402
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: _chunk6YIZX26Tjs.cn.call(void 0, "grid gap-3", singleCustomerMode ? "sm:grid-cols-1" : "sm:grid-cols-2"), children: [
|
|
403
403
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
404
404
|
LeadTile,
|
|
405
405
|
{
|
|
@@ -458,7 +458,7 @@ function LeadTile({
|
|
|
458
458
|
delta,
|
|
459
459
|
previousLabel
|
|
460
460
|
}) {
|
|
461
|
-
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
461
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.Card, { "data-testid": testId, children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.CardContent, { className: "grid gap-1", children: [
|
|
462
462
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-xs", children: label }),
|
|
463
463
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-primary text-xl font-semibold tabular-nums", children: value }),
|
|
464
464
|
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "flex items-center gap-1", children: [
|
|
@@ -474,7 +474,7 @@ function SupportingTile({
|
|
|
474
474
|
value,
|
|
475
475
|
delta
|
|
476
476
|
}) {
|
|
477
|
-
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
477
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.Card, { "data-testid": testId, size: "sm", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.CardContent, { className: "grid gap-1", children: [
|
|
478
478
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-xs", children: label }),
|
|
479
479
|
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { className: "flex items-center gap-2", children: [
|
|
480
480
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-sm font-medium tabular-nums", children: value }),
|
|
@@ -493,7 +493,7 @@ function Delta({ testId, delta }) {
|
|
|
493
493
|
"span",
|
|
494
494
|
{
|
|
495
495
|
"data-testid": testId,
|
|
496
|
-
className:
|
|
496
|
+
className: _chunk6YIZX26Tjs.cn.call(void 0,
|
|
497
497
|
"inline-flex items-center gap-0.5 text-xs tabular-nums",
|
|
498
498
|
increased ? "text-success" : "text-destructive"
|
|
499
499
|
),
|
|
@@ -566,13 +566,13 @@ function TokenUsageBreakdownTable({ rows, metric }) {
|
|
|
566
566
|
// The package's <Table> wraps itself in an `overflow-x-clip` container, which
|
|
567
567
|
// would swallow the overflow before this scroller ever saw it — hence the
|
|
568
568
|
// child override. Wide metric tables must scroll, never widen the page.
|
|
569
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "overflow-x-auto [&_[data-slot=table-container]]:overflow-x-visible", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
570
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
569
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "overflow-x-auto [&_[data-slot=table-container]]:overflow-x-visible", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Table, { children: [
|
|
570
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableHeader, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableRow, { children: columns.map((column) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableHead, { className: _chunk6YIZX26Tjs.cn.call(void 0, column.numeric && "text-right"), children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
571
571
|
"button",
|
|
572
572
|
{
|
|
573
573
|
type: "button",
|
|
574
574
|
onClick: () => toggleSort(column.key),
|
|
575
|
-
className:
|
|
575
|
+
className: _chunk6YIZX26Tjs.cn.call(void 0,
|
|
576
576
|
"hover:text-primary inline-flex items-center gap-1 text-xs font-medium",
|
|
577
577
|
column.numeric && "flex-row-reverse"
|
|
578
578
|
),
|
|
@@ -582,20 +582,20 @@ function TokenUsageBreakdownTable({ rows, metric }) {
|
|
|
582
582
|
]
|
|
583
583
|
}
|
|
584
584
|
) }, column.key)) }) }),
|
|
585
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
585
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableBody, { children: sortedRows.map((row) => {
|
|
586
586
|
const value = metricValue(row, metric);
|
|
587
587
|
const share = total > 0 ? value / total * 100 : 0;
|
|
588
|
-
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
589
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
590
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
591
|
-
showActiveUsers && /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
592
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
593
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
594
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
595
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
596
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
597
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
598
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
588
|
+
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.TableRow, { "data-testid": `breakdown-row-${row.id}`, children: [
|
|
589
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-xs", children: row.id === "other" ? t("token_usage.admin.other") : row.label }),
|
|
590
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-muted-foreground text-xs", children: _nullishCoalesce(row.sublabel, () => ( "")) }),
|
|
591
|
+
showActiveUsers && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: row.activeUsers === void 0 ? "" : formatDecimal(row.activeUsers, 0) }),
|
|
592
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatDecimal(row.calls, 0) }),
|
|
593
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatDecimal(row.tokensIn, 0) }),
|
|
594
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatDecimal(row.tokensOut, 0) }),
|
|
595
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatPercent(cacheHitPercentage(row.cached, row.tokensIn)) }),
|
|
596
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatMetricValue(row.cost, "cost") }),
|
|
597
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatMetricValue(row.credits, "credits") }),
|
|
598
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.TableCell, { className: "text-right text-xs tabular-nums", children: formatPercent(share) })
|
|
599
599
|
] }, row.id);
|
|
600
600
|
}) })
|
|
601
601
|
] }) })
|
|
@@ -789,7 +789,7 @@ function TokenUsageTimelineChart({ rows, metric, stackBy, className }) {
|
|
|
789
789
|
return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className, children: [
|
|
790
790
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", "data-testid": "timeline-data", children: JSON.stringify(chartData) }),
|
|
791
791
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "sr-only", "data-testid": "timeline-series", children: JSON.stringify(seriesKeys) }),
|
|
792
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
792
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.ChartContainer, { config: chartConfig, className: "aspect-auto h-72 w-full", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _recharts.BarChart, { accessibilityLayer: true, data: chartData, margin: { top: 8, right: 8, bottom: 0, left: 0 }, children: [
|
|
793
793
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _recharts.CartesianGrid, { vertical: false }),
|
|
794
794
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
795
795
|
_recharts.XAxis,
|
|
@@ -813,17 +813,17 @@ function TokenUsageTimelineChart({ rows, metric, stackBy, className }) {
|
|
|
813
813
|
}
|
|
814
814
|
),
|
|
815
815
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
816
|
-
|
|
816
|
+
_chunkI3GHIU4Yjs.ChartTooltip,
|
|
817
817
|
{
|
|
818
818
|
content: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
819
|
-
|
|
819
|
+
_chunkI3GHIU4Yjs.ChartTooltipContent,
|
|
820
820
|
{
|
|
821
821
|
labelFormatter: (value) => formatBucket.format(/* @__PURE__ */ new Date(`${String(value)}T00:00:00.000Z`))
|
|
822
822
|
}
|
|
823
823
|
)
|
|
824
824
|
}
|
|
825
825
|
),
|
|
826
|
-
seriesKeys.length >= 2 ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
826
|
+
seriesKeys.length >= 2 ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.ChartLegend, { content: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.ChartLegendContent, {}) }) : null,
|
|
827
827
|
seriesKeys.map((series, index) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
828
828
|
_recharts.Bar,
|
|
829
829
|
{
|
|
@@ -869,19 +869,19 @@ function TokenUsageAdminContainer() {
|
|
|
869
869
|
[t]
|
|
870
870
|
);
|
|
871
871
|
if (error) {
|
|
872
|
-
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
872
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.RoundPageContainer, { fullWidth: true, forceHeader: true, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { className: "p-4", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.Card, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { className: "text-destructive text-xs/relaxed", children: error }) }) }) }) });
|
|
873
873
|
}
|
|
874
|
-
if (isLoading) return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
874
|
+
if (isLoading) return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.RoundPageContainer, { fullWidth: true, forceHeader: true });
|
|
875
875
|
const emptyLabel = t("token_usage.admin.no_data");
|
|
876
|
-
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
876
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.RoundPageContainer, { fullWidth: true, forceHeader: true, children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex w-full flex-col gap-4 p-4", children: [
|
|
877
877
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, TokenUsageAdminTiles, { summary, metric: filters.metric, singleCustomerMode }),
|
|
878
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
879
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
880
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
881
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
878
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Card, { children: [
|
|
879
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.CardHeader, { children: [
|
|
880
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardTitle, { children: t("token_usage.admin.usage_over_time") }),
|
|
881
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardAction, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "flex items-center gap-2", children: [
|
|
882
882
|
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { className: "text-muted-foreground text-xs", children: t("token_usage.admin.stack_by") }),
|
|
883
883
|
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
884
|
-
|
|
884
|
+
_chunkI3GHIU4Yjs.Select,
|
|
885
885
|
{
|
|
886
886
|
items: stackByItems,
|
|
887
887
|
value: filters.stackBy,
|
|
@@ -889,29 +889,29 @@ function TokenUsageAdminContainer() {
|
|
|
889
889
|
if (value) setFilters({ stackBy: value });
|
|
890
890
|
},
|
|
891
891
|
children: [
|
|
892
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
893
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
892
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectTrigger, { size: "sm", className: "w-36", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectValue, {}) }),
|
|
893
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectContent, { children: STACK_BY_VALUES.map((value) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.SelectItem, { value, children: stackByItems[value] }, value)) })
|
|
894
894
|
]
|
|
895
895
|
}
|
|
896
896
|
)
|
|
897
897
|
] }) })
|
|
898
898
|
] }),
|
|
899
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
899
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TokenUsageTimelineChart, { rows: timeline, metric: filters.metric, stackBy: filters.stackBy }) })
|
|
900
900
|
] }),
|
|
901
901
|
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: "grid gap-4 md:grid-cols-2", children: [
|
|
902
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
903
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
904
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
902
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Card, { children: [
|
|
903
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardTitle, { children: t("token_usage.admin.by_company") }) }),
|
|
904
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TokenUsageRankedBar, { rows: byCompany, metric: filters.metric, emptyLabel }) })
|
|
905
905
|
] }),
|
|
906
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
907
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
908
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
906
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Card, { children: [
|
|
907
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardTitle, { children: t("token_usage.admin.by_user") }) }),
|
|
908
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TokenUsageRankedBar, { rows: byUser, metric: filters.metric, emptyLabel }) })
|
|
909
909
|
] })
|
|
910
910
|
] }),
|
|
911
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className:
|
|
912
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
913
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
914
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
911
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { className: _chunk6YIZX26Tjs.cn.call(void 0, "grid gap-4", !singleCustomerMode && "md:grid-cols-2"), children: [
|
|
912
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Card, { children: [
|
|
913
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardTitle, { children: t("token_usage.admin.customer_by_operation") }) }),
|
|
914
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
915
915
|
TokenUsageRankedBar,
|
|
916
916
|
{
|
|
917
917
|
rows: byCustomerOperation,
|
|
@@ -921,9 +921,9 @@ function TokenUsageAdminContainer() {
|
|
|
921
921
|
}
|
|
922
922
|
) })
|
|
923
923
|
] }),
|
|
924
|
-
!singleCustomerMode && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
925
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
926
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
924
|
+
!singleCustomerMode && /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Card, { children: [
|
|
925
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardTitle, { children: t("token_usage.admin.platform_by_operation") }) }),
|
|
926
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
927
927
|
TokenUsageRankedBar,
|
|
928
928
|
{
|
|
929
929
|
rows: byOperation,
|
|
@@ -934,9 +934,9 @@ function TokenUsageAdminContainer() {
|
|
|
934
934
|
) })
|
|
935
935
|
] })
|
|
936
936
|
] }),
|
|
937
|
-
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
|
|
938
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
939
|
-
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
937
|
+
/* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _chunkI3GHIU4Yjs.Card, { children: [
|
|
938
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardHeader, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardTitle, { children: t("token_usage.admin.detail") }) }),
|
|
939
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkI3GHIU4Yjs.CardContent, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, TokenUsageBreakdownTable, { rows: byCompany, metric: filters.metric }) })
|
|
940
940
|
] })
|
|
941
941
|
] }) });
|
|
942
942
|
}
|
|
@@ -1008,5 +1008,5 @@ var TOKEN_USAGE_ADMIN_I18N_KEYS = [
|
|
|
1008
1008
|
|
|
1009
1009
|
|
|
1010
1010
|
|
|
1011
|
-
exports.TOKEN_USAGE_ADMIN_I18N_KEYS = TOKEN_USAGE_ADMIN_I18N_KEYS; exports.TokenUsageAdminBreakdown =
|
|
1011
|
+
exports.TOKEN_USAGE_ADMIN_I18N_KEYS = TOKEN_USAGE_ADMIN_I18N_KEYS; exports.TokenUsageAdminBreakdown = _chunk6YIZX26Tjs.TokenUsageAdminBreakdown; exports.TokenUsageAdminBreakdownModule = _chunk6YIZX26Tjs.TokenUsageAdminBreakdownModule; exports.TokenUsageAdminContainer = TokenUsageAdminContainer; exports.TokenUsageAdminFilterBar = TokenUsageAdminFilterBar; exports.TokenUsageAdminProvider = TokenUsageAdminProvider; exports.TokenUsageAdminService = TokenUsageAdminService; exports.TokenUsageAdminSummary = _chunk6YIZX26Tjs.TokenUsageAdminSummary; exports.TokenUsageAdminSummaryModule = _chunk6YIZX26Tjs.TokenUsageAdminSummaryModule; exports.TokenUsageAdminTiles = TokenUsageAdminTiles; exports.TokenUsageAdminTimeline = _chunk6YIZX26Tjs.TokenUsageAdminTimeline; exports.TokenUsageAdminTimelineModule = _chunk6YIZX26Tjs.TokenUsageAdminTimelineModule; exports.TokenUsageBreakdownTable = TokenUsageBreakdownTable; exports.TokenUsageRankedBar = TokenUsageRankedBar; exports.TokenUsageTimelineChart = TokenUsageTimelineChart; exports.useTokenUsageAdmin = useTokenUsageAdmin;
|
|
1012
1012
|
//# sourceMappingURL=index.js.map
|
|
@@ -26,8 +26,8 @@ import {
|
|
|
26
26
|
TableHeader,
|
|
27
27
|
TableRow,
|
|
28
28
|
usePageUrlGenerator
|
|
29
|
-
} from "../../chunk-
|
|
30
|
-
import "../../chunk-
|
|
29
|
+
} from "../../chunk-A7AGXKZX.mjs";
|
|
30
|
+
import "../../chunk-MAWTFEY3.mjs";
|
|
31
31
|
import {
|
|
32
32
|
AbstractService,
|
|
33
33
|
EndpointCreator,
|
|
@@ -39,7 +39,7 @@ import {
|
|
|
39
39
|
TokenUsageAdminTimeline,
|
|
40
40
|
TokenUsageAdminTimelineModule,
|
|
41
41
|
cn
|
|
42
|
-
} from "../../chunk-
|
|
42
|
+
} from "../../chunk-P5TMD7GK.mjs";
|
|
43
43
|
import "../../chunk-AUXK7QSA.mjs";
|
|
44
44
|
import "../../chunk-C7C7VY4F.mjs";
|
|
45
45
|
import "../../chunk-Z2CB63VG.mjs";
|
package/dist/index.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ import { A as AbstractApiData } from './tokenusage-admin.module-DQVT4O4j.mjs';
|
|
|
6
6
|
export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule } from './tokenusage-admin.module-DQVT4O4j.mjs';
|
|
7
7
|
import { A as AbstractService } from './AbstractService-B0T7h8fX.mjs';
|
|
8
8
|
export { H as HttpMethod, N as NextRef, P as PreviousRef, S as SelfRef, T as TotalRef, b as clearLastApiMeta, c as clearLastApiTotal, d as getGlobalErrorHandler, a as getLastApiMeta, g as getLastApiTotal, s as setGlobalErrorHandler } from './AbstractService-B0T7h8fX.mjs';
|
|
9
|
-
export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, ChunkInput, ChunkModule, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, MOBILE_BREAKPOINT, 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, RbacMatrixModule, 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, VIEWPORT_COOKIE_NAME, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva } from './core/index.mjs';
|
|
9
|
+
export { AppModuleDefinitions, Assistant, AssistantAction, AssistantActionInput, AssistantActionInterface, AssistantActionModule, AssistantActionService, AssistantActionStatus, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, ChunkInput, ChunkModule, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, MOBILE_BREAKPOINT, 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, RbacMatrixModule, 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, VIEWPORT_COOKIE_NAME, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva } from './core/index.mjs';
|
|
10
10
|
export { c as AssistantMessageInput, d as AssistantMessageInterface, A as AssistantMessageRole, b as AssistantMessageType, B as BreadcrumbItemData, e as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-Ce8FcllX.mjs';
|
|
11
11
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-xH3TGvVk.mjs';
|
|
12
12
|
export { ClassValue } from 'clsx';
|
|
@@ -16,7 +16,7 @@ export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.inter
|
|
|
16
16
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, N as NotificationService, P as PushService, R as RoleService, b as S3Input, c as S3Interface, S as S3Service, T as TwoFactorChallengeInterface, U as UserService } from './s3.service-Dt6MfuHr.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
18
|
export { b as CompanyInput, c as CompanyInterface, a as ContentInput, C as ContentInterface, d as NotificationInput, N as NotificationInterface, R as RoleInput, e as RoleInterface, f as UserInput, U as UserInterface } from './notification.interface-CG1vqoxg.mjs';
|
|
19
|
-
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-
|
|
19
|
+
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-DMh-zApr.mjs';
|
|
20
20
|
export { F as FeatureInterface, M as ModuleInterface } from './feature.interface-CXb1-vNq.mjs';
|
|
21
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-DRE3NAKc.mjs';
|
|
22
22
|
export { I as I18nConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages } from './config-YyhFHxkU.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { A as AbstractApiData } from './tokenusage-admin.module-5wJ_tZTj.js';
|
|
|
6
6
|
export { b as TokenUsageAdminBreakdownModule, T as TokenUsageAdminSummaryModule, a as TokenUsageAdminTimelineModule } from './tokenusage-admin.module-5wJ_tZTj.js';
|
|
7
7
|
import { A as AbstractService } from './AbstractService-Cew0PD0L.js';
|
|
8
8
|
export { H as HttpMethod, N as NextRef, P as PreviousRef, S as SelfRef, T as TotalRef, b as clearLastApiMeta, c as clearLastApiTotal, d as getGlobalErrorHandler, a as getLastApiMeta, g as getLastApiTotal, s as setGlobalErrorHandler } from './AbstractService-Cew0PD0L.js';
|
|
9
|
-
export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, ChunkInput, ChunkModule, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, MOBILE_BREAKPOINT, 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, RbacMatrixModule, 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, VIEWPORT_COOKIE_NAME, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva } from './core/index.js';
|
|
9
|
+
export { AppModuleDefinitions, Assistant, AssistantAction, AssistantActionInput, AssistantActionInterface, AssistantActionModule, AssistantActionService, AssistantActionStatus, AssistantMessage, AssistantMessageModule, AssistantMessageService, AssistantModule, AssistantService, AuditLog, AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthModule, AuthorModule, BackupCodeVerify, BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, ChunkInput, ChunkModule, ClientAbstractService, ClientHttpMethod, ClientNextRef, ClientPreviousRef, ClientSelfRef, ClientTotalRef, CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyModule, Content, ContentModule, DataClass, DataClass as DataClassRegistry, DiffBlock, DiffResult, EndpointCreator, EndpointQuery, EntityObject, Feature, FeatureModule, FormatOption, FoundationModuleDefinitions, HowTo, HowToFields, HowToModule, HowToService, InviteValidation, JsonApiDataFactory, MOBILE_BREAKPOINT, 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, RbacMatrixModule, 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, VIEWPORT_COOKIE_NAME, Waitlist, WaitlistInput, WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, WaitlistStatsInterface, WaitlistStatsModule, WaitlistStatus, WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva } from './core/index.js';
|
|
10
10
|
export { c as AssistantMessageInput, d as AssistantMessageInterface, A as AssistantMessageRole, b as AssistantMessageType, B as BreadcrumbItemData, e as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-Dh0BpbP2.js';
|
|
11
11
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-xH3TGvVk.js';
|
|
12
12
|
export { ClassValue } from 'clsx';
|
|
@@ -16,7 +16,7 @@ export { A as AuthInput, b as AuthInterface, a as AuthQuery } from './auth.inter
|
|
|
16
16
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, N as NotificationService, P as PushService, R as RoleService, b as S3Input, c as S3Interface, S as S3Service, T as TwoFactorChallengeInterface, U as UserService } from './s3.service-CpwA3sl_.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
18
|
export { b as CompanyInput, c as CompanyInterface, a as ContentInput, C as ContentInterface, d as NotificationInput, N as NotificationInterface, R as RoleInput, e as RoleInterface, f as UserInput, U as UserInterface } from './notification.interface--27exGde.js';
|
|
19
|
-
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-
|
|
19
|
+
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-DwdBzS9f.js';
|
|
20
20
|
export { F as FeatureInterface, M as ModuleInterface } from './feature.interface-BO25VLlx.js';
|
|
21
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-CD90ycYz.js';
|
|
22
22
|
export { I as I18nConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages } from './config-Cd5xTEfZ.js';
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
21
|
+
var _chunkJG7MCYCWjs = require('./chunk-JG7MCYCW.js');
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -211,7 +211,10 @@ var _chunkUXJAS6C5js = require('./chunk-UXJAS6C5.js');
|
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
|
|
214
|
-
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
var _chunk6YIZX26Tjs = require('./chunk-6YIZX26T.js');
|
|
215
218
|
require('./chunk-LXKSUWAV.js');
|
|
216
219
|
require('./chunk-IBS6NI7D.js');
|
|
217
220
|
|
|
@@ -447,5 +450,8 @@ require('./chunk-7QVYU63E.js');
|
|
|
447
450
|
|
|
448
451
|
|
|
449
452
|
|
|
450
|
-
exports.ACTION_TYPES = _chunkUXJAS6C5js.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkDS4IBFWAjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkDS4IBFWAjs.AbstractApiData; exports.AbstractService = _chunkDS4IBFWAjs.AbstractService; exports.Action = _chunkDS4IBFWAjs.Action; exports.Assistant = _chunkDS4IBFWAjs.Assistant; exports.AssistantMessage = _chunkDS4IBFWAjs.AssistantMessage; exports.AssistantMessageModule = _chunkDS4IBFWAjs.AssistantMessageModule; exports.AssistantMessageService = _chunkDS4IBFWAjs.AssistantMessageService; exports.AssistantModule = _chunkDS4IBFWAjs.AssistantModule; exports.AssistantService = _chunkDS4IBFWAjs.AssistantService; exports.AuditLog = _chunkDS4IBFWAjs.AuditLog; exports.AuditLogModule = _chunkDS4IBFWAjs.AuditLogModule; exports.AuditLogService = _chunkDS4IBFWAjs.AuditLogService; exports.Auth = _chunkDS4IBFWAjs.Auth; exports.AuthComponent = _chunkDS4IBFWAjs.AuthComponent; exports.AuthModule = _chunkDS4IBFWAjs.AuthModule; exports.AuthService = _chunkDS4IBFWAjs.AuthService; exports.AuthorModule = _chunkDS4IBFWAjs.AuthorModule; exports.BackupCodeVerify = _chunkDS4IBFWAjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkDS4IBFWAjs.BackupCodeVerifyModule; exports.Billing = _chunkDS4IBFWAjs.Billing; exports.BillingModule = _chunkDS4IBFWAjs.BillingModule; exports.BillingService = _chunkDS4IBFWAjs.BillingService; exports.BlockNoteDiffUtil = _chunkDS4IBFWAjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkDS4IBFWAjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkUXJAS6C5js.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunkDS4IBFWAjs.Chunk; exports.ChunkModule = _chunkDS4IBFWAjs.ChunkModule; exports.ClientAbstractService = _chunkDS4IBFWAjs.ClientAbstractService; exports.ClientHttpMethod = _chunkDS4IBFWAjs.ClientHttpMethod; exports.Company = _chunkDS4IBFWAjs.Company; exports.CompanyFields = _chunkDS4IBFWAjs.CompanyFields; exports.CompanyModule = _chunkDS4IBFWAjs.CompanyModule; exports.CompanyService = _chunkDS4IBFWAjs.CompanyService; exports.Content = _chunkDS4IBFWAjs.Content; exports.ContentFields = _chunkDS4IBFWAjs.ContentFields; exports.ContentModule = _chunkDS4IBFWAjs.ContentModule; exports.ContentService = _chunkDS4IBFWAjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkDS4IBFWAjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkQWCAOLBDjs.DataClassRegistry; exports.DataClassRegistry = _chunkQWCAOLBDjs.DataClassRegistry; exports.EndpointCreator = _chunkDS4IBFWAjs.EndpointCreator; exports.Feature = _chunkDS4IBFWAjs.Feature; exports.FeatureModule = _chunkDS4IBFWAjs.FeatureModule; exports.FeatureService = _chunkDS4IBFWAjs.FeatureService; exports.HowTo = _chunkDS4IBFWAjs.HowTo; exports.HowToFields = _chunkDS4IBFWAjs.HowToFields; exports.HowToModule = _chunkDS4IBFWAjs.HowToModule; exports.HowToService = _chunkDS4IBFWAjs.HowToService; exports.HttpMethod = _chunkDS4IBFWAjs.HttpMethod; exports.InvoiceStatus = _chunkDS4IBFWAjs.InvoiceStatus; exports.JsonApiDataFactory = _chunkQWCAOLBDjs.JsonApiDataFactory; exports.MOBILE_BREAKPOINT = _chunkDS4IBFWAjs.MOBILE_BREAKPOINT; exports.Module = _chunkDS4IBFWAjs.Module; exports.ModuleModule = _chunkDS4IBFWAjs.ModuleModule; exports.ModulePaths = _chunkDS4IBFWAjs.ModulePaths; exports.ModulePathsModule = _chunkDS4IBFWAjs.ModulePathsModule; exports.ModuleRegistrar = _chunkDS4IBFWAjs.ModuleRegistrar; exports.ModuleRegistry = _chunkDS4IBFWAjs.ModuleRegistry; exports.Modules = _chunkDS4IBFWAjs.Modules; exports.Notification = _chunkDS4IBFWAjs.Notification; exports.NotificationFields = _chunkDS4IBFWAjs.NotificationFields; exports.NotificationModule = _chunkDS4IBFWAjs.NotificationModule; exports.NotificationService = _chunkDS4IBFWAjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkDS4IBFWAjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkDS4IBFWAjs.OAuthClient; exports.OAuthModule = _chunkDS4IBFWAjs.OAuthModule; exports.OAuthService = _chunkDS4IBFWAjs.OAuthService; exports.Passkey = _chunkDS4IBFWAjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkDS4IBFWAjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkDS4IBFWAjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkDS4IBFWAjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkDS4IBFWAjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkDS4IBFWAjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkDS4IBFWAjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkDS4IBFWAjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkDS4IBFWAjs.PasskeyRename; exports.PasskeyRenameModule = _chunkDS4IBFWAjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkDS4IBFWAjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkDS4IBFWAjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkDS4IBFWAjs.PaymentMethod; exports.PermissionMapping = _chunkDS4IBFWAjs.PermissionMapping; exports.PermissionMappingModule = _chunkDS4IBFWAjs.PermissionMappingModule; exports.Push = _chunkDS4IBFWAjs.Push; exports.PushModule = _chunkDS4IBFWAjs.PushModule; exports.PushService = _chunkDS4IBFWAjs.PushService; exports.RbacMatrixModel = _chunkDS4IBFWAjs.RbacMatrixModel; exports.RbacMatrixModule = _chunkDS4IBFWAjs.RbacMatrixModule; exports.RbacService = _chunkUXJAS6C5js.RbacService; exports.ReferralModule = _chunkDS4IBFWAjs.ReferralModule; exports.ReferralService = _chunkDS4IBFWAjs.ReferralService; exports.ReferralStats = _chunkDS4IBFWAjs.ReferralStats; exports.ReferralStatsModule = _chunkDS4IBFWAjs.ReferralStatsModule; exports.RehydrationFactory = _chunkDS4IBFWAjs.RehydrationFactory; exports.Role = _chunkDS4IBFWAjs.Role; exports.RoleFields = _chunkDS4IBFWAjs.RoleFields; exports.RoleModule = _chunkDS4IBFWAjs.RoleModule; exports.RoleService = _chunkDS4IBFWAjs.RoleService; exports.S3 = _chunkDS4IBFWAjs.S3; exports.S3Module = _chunkDS4IBFWAjs.S3Module; exports.S3Service = _chunkDS4IBFWAjs.S3Service; exports.StripeCustomer = _chunkDS4IBFWAjs.StripeCustomer; exports.StripeCustomerModule = _chunkDS4IBFWAjs.StripeCustomerModule; exports.StripeCustomerService = _chunkDS4IBFWAjs.StripeCustomerService; exports.StripeInvoice = _chunkDS4IBFWAjs.StripeInvoice; exports.StripeInvoiceModule = _chunkDS4IBFWAjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkDS4IBFWAjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkDS4IBFWAjs.StripePaymentMethodModule; exports.StripePrice = _chunkDS4IBFWAjs.StripePrice; exports.StripePriceModule = _chunkDS4IBFWAjs.StripePriceModule; exports.StripePriceService = _chunkDS4IBFWAjs.StripePriceService; exports.StripeProduct = _chunkDS4IBFWAjs.StripeProduct; exports.StripeProductModule = _chunkDS4IBFWAjs.StripeProductModule; exports.StripeProductService = _chunkDS4IBFWAjs.StripeProductService; exports.StripePromotionCode = _chunkDS4IBFWAjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkDS4IBFWAjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkDS4IBFWAjs.StripePromotionCodeService; exports.StripeSubscription = _chunkDS4IBFWAjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkDS4IBFWAjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkDS4IBFWAjs.StripeSubscriptionService; exports.StripeUsage = _chunkDS4IBFWAjs.StripeUsage; exports.StripeUsageModule = _chunkDS4IBFWAjs.StripeUsageModule; exports.StripeUsageService = _chunkDS4IBFWAjs.StripeUsageService; exports.SubscriptionStatus = _chunkDS4IBFWAjs.SubscriptionStatus; exports.TableOptions = _chunkDS4IBFWAjs.TableOptions; exports.TokenUsageAdminBreakdownModule = _chunkDS4IBFWAjs.TokenUsageAdminBreakdownModule; exports.TokenUsageAdminSummaryModule = _chunkDS4IBFWAjs.TokenUsageAdminSummaryModule; exports.TokenUsageAdminTimelineModule = _chunkDS4IBFWAjs.TokenUsageAdminTimelineModule; exports.TotpAuthenticator = _chunkDS4IBFWAjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkDS4IBFWAjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkDS4IBFWAjs.TotpSetup; exports.TotpSetupModule = _chunkDS4IBFWAjs.TotpSetupModule; exports.TotpVerify = _chunkDS4IBFWAjs.TotpVerify; exports.TotpVerifyLogin = _chunkDS4IBFWAjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkDS4IBFWAjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkDS4IBFWAjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkDS4IBFWAjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkDS4IBFWAjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkDS4IBFWAjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkDS4IBFWAjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkDS4IBFWAjs.TwoFactorService; exports.TwoFactorStatus = _chunkDS4IBFWAjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkDS4IBFWAjs.TwoFactorStatusModule; exports.User = _chunkDS4IBFWAjs.User; exports.UserFields = _chunkDS4IBFWAjs.UserFields; exports.UserModule = _chunkDS4IBFWAjs.UserModule; exports.UserService = _chunkDS4IBFWAjs.UserService; exports.VIEWPORT_COOKIE_NAME = _chunkDS4IBFWAjs.VIEWPORT_COOKIE_NAME; exports.Waitlist = _chunkDS4IBFWAjs.Waitlist; exports.WaitlistModule = _chunkDS4IBFWAjs.WaitlistModule; exports.WaitlistService = _chunkDS4IBFWAjs.WaitlistService; exports.WaitlistStats = _chunkDS4IBFWAjs.WaitlistStats; exports.WaitlistStatsModule = _chunkDS4IBFWAjs.WaitlistStatsModule; exports.checkPermissions = _chunkDS4IBFWAjs.checkPermissions; exports.checkPermissionsFromServer = _chunkDS4IBFWAjs.checkPermissionsFromServer; exports.clearLastApiMeta = _chunkDS4IBFWAjs.clearLastApiMeta; exports.clearLastApiTotal = _chunkDS4IBFWAjs.clearLastApiTotal; exports.cn = _chunkDS4IBFWAjs.cn; exports.composeRefs = _chunkDS4IBFWAjs.composeRefs; exports.configureAuth = _chunkDS4IBFWAjs.configureAuth; exports.configureI18n = _chunkUXJAS6C5js.configureI18n; exports.configureJsonApi = _chunkUXJAS6C5js.configureJsonApi; exports.configureLogin = _chunkUXJAS6C5js.configureLogin; exports.configureReferral = _chunkUXJAS6C5js.configureReferral; exports.configureRoles = _chunkUXJAS6C5js.configureRoles; exports.configureWaitlist = _chunkUXJAS6C5js.configureWaitlist; exports.createJsonApiInclusion = _chunkDS4IBFWAjs.createJsonApiInclusion; exports.dismissToast = _chunkDS4IBFWAjs.dismissToast; exports.entityObjectSchema = _chunkDS4IBFWAjs.entityObjectSchema; exports.exists = _chunkDS4IBFWAjs.exists; exports.formatCodiceFiscale = _chunkDS4IBFWAjs.formatCodiceFiscale; exports.formatDate = _chunkDS4IBFWAjs.formatDate; exports.formatLocalDate = _chunkDS4IBFWAjs.formatLocalDate; exports.formatPartitaIva = _chunkDS4IBFWAjs.formatPartitaIva; exports.getApiUrl = _chunkUXJAS6C5js.getApiUrl; exports.getAppUrl = _chunkUXJAS6C5js.getAppUrl; exports.getBootstrapper = _chunkQWCAOLBDjs.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkDS4IBFWAjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkDS4IBFWAjs.getGlobalErrorHandler; exports.getIcon = _chunkDS4IBFWAjs.getIcon; exports.getIconByModule = _chunkDS4IBFWAjs.getIconByModule; exports.getIconByModuleName = _chunkDS4IBFWAjs.getIconByModuleName; exports.getInitials = _chunkDS4IBFWAjs.getInitials; exports.getLastApiMeta = _chunkDS4IBFWAjs.getLastApiMeta; exports.getLastApiTotal = _chunkDS4IBFWAjs.getLastApiTotal; exports.getLucideIcon = _chunkDS4IBFWAjs.getLucideIcon; exports.getLucideIconByModule = _chunkDS4IBFWAjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkDS4IBFWAjs.getLucideIconByModuleName; exports.getPublicApiUrl = _chunkUXJAS6C5js.getPublicApiUrl; exports.getReferralConfig = _chunkUXJAS6C5js.getReferralConfig; exports.getRoleId = _chunkUXJAS6C5js.getRoleId; exports.getStripePublishableKey = _chunkUXJAS6C5js.getStripePublishableKey; exports.getTableComponents = _chunkDS4IBFWAjs.getTableComponents; exports.getTableOptions = _chunkDS4IBFWAjs.getTableOptions; exports.getTokenHandler = _chunkDS4IBFWAjs.getTokenHandler; exports.getTrackablePages = _chunkUXJAS6C5js.getTrackablePages; exports.getValueFromPath = _chunkDS4IBFWAjs.getValueFromPath; exports.getWaitlistConfig = _chunkUXJAS6C5js.getWaitlistConfig; exports.hasBootstrapper = _chunkQWCAOLBDjs.hasBootstrapper; exports.isReferralEnabled = _chunkUXJAS6C5js.isReferralEnabled; exports.isRolesConfigured = _chunkUXJAS6C5js.isRolesConfigured; exports.rehydrate = _chunkDS4IBFWAjs.rehydrate; exports.rehydrateList = _chunkDS4IBFWAjs.rehydrateList; exports.resetBootstrapStore = _chunkQWCAOLBDjs.resetBootstrapStore; exports.setBootstrapper = _chunkQWCAOLBDjs.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkDS4IBFWAjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkDS4IBFWAjs.setGlobalErrorHandler; exports.showCustomToast = _chunkDS4IBFWAjs.showCustomToast; exports.showError = _chunkDS4IBFWAjs.showError; exports.showToast = _chunkDS4IBFWAjs.showToast; exports.translateData = _chunkQWCAOLBDjs.translateData; exports.translateResponse = _chunkQWCAOLBDjs.translateResponse; exports.tryBootstrap = _chunkQWCAOLBDjs.tryBootstrap; exports.useComposedRefs = _chunkDS4IBFWAjs.useComposedRefs; exports.useIsMobile = _chunkDS4IBFWAjs.useIsMobile; exports.userObjectSchema = _chunkDS4IBFWAjs.userObjectSchema; exports.validateCodiceFiscale = _chunkDS4IBFWAjs.validateCodiceFiscale; exports.validateItalianTaxCode = _chunkDS4IBFWAjs.validateItalianTaxCode; exports.validatePartitaIva = _chunkDS4IBFWAjs.validatePartitaIva;
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
exports.ACTION_TYPES = _chunkJG7MCYCWjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunk6YIZX26Tjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk6YIZX26Tjs.AbstractApiData; exports.AbstractService = _chunk6YIZX26Tjs.AbstractService; exports.Action = _chunk6YIZX26Tjs.Action; exports.Assistant = _chunk6YIZX26Tjs.Assistant; exports.AssistantAction = _chunk6YIZX26Tjs.AssistantAction; exports.AssistantActionModule = _chunk6YIZX26Tjs.AssistantActionModule; exports.AssistantActionService = _chunk6YIZX26Tjs.AssistantActionService; exports.AssistantMessage = _chunk6YIZX26Tjs.AssistantMessage; exports.AssistantMessageModule = _chunk6YIZX26Tjs.AssistantMessageModule; exports.AssistantMessageService = _chunk6YIZX26Tjs.AssistantMessageService; exports.AssistantModule = _chunk6YIZX26Tjs.AssistantModule; exports.AssistantService = _chunk6YIZX26Tjs.AssistantService; exports.AuditLog = _chunk6YIZX26Tjs.AuditLog; exports.AuditLogModule = _chunk6YIZX26Tjs.AuditLogModule; exports.AuditLogService = _chunk6YIZX26Tjs.AuditLogService; exports.Auth = _chunk6YIZX26Tjs.Auth; exports.AuthComponent = _chunk6YIZX26Tjs.AuthComponent; exports.AuthModule = _chunk6YIZX26Tjs.AuthModule; exports.AuthService = _chunk6YIZX26Tjs.AuthService; exports.AuthorModule = _chunk6YIZX26Tjs.AuthorModule; exports.BackupCodeVerify = _chunk6YIZX26Tjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk6YIZX26Tjs.BackupCodeVerifyModule; exports.Billing = _chunk6YIZX26Tjs.Billing; exports.BillingModule = _chunk6YIZX26Tjs.BillingModule; exports.BillingService = _chunk6YIZX26Tjs.BillingService; exports.BlockNoteDiffUtil = _chunk6YIZX26Tjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk6YIZX26Tjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkJG7MCYCWjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunk6YIZX26Tjs.Chunk; exports.ChunkModule = _chunk6YIZX26Tjs.ChunkModule; exports.ClientAbstractService = _chunk6YIZX26Tjs.ClientAbstractService; exports.ClientHttpMethod = _chunk6YIZX26Tjs.ClientHttpMethod; exports.Company = _chunk6YIZX26Tjs.Company; exports.CompanyFields = _chunk6YIZX26Tjs.CompanyFields; exports.CompanyModule = _chunk6YIZX26Tjs.CompanyModule; exports.CompanyService = _chunk6YIZX26Tjs.CompanyService; exports.Content = _chunk6YIZX26Tjs.Content; exports.ContentFields = _chunk6YIZX26Tjs.ContentFields; exports.ContentModule = _chunk6YIZX26Tjs.ContentModule; exports.ContentService = _chunk6YIZX26Tjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk6YIZX26Tjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkQWCAOLBDjs.DataClassRegistry; exports.DataClassRegistry = _chunkQWCAOLBDjs.DataClassRegistry; exports.EndpointCreator = _chunk6YIZX26Tjs.EndpointCreator; exports.Feature = _chunk6YIZX26Tjs.Feature; exports.FeatureModule = _chunk6YIZX26Tjs.FeatureModule; exports.FeatureService = _chunk6YIZX26Tjs.FeatureService; exports.HowTo = _chunk6YIZX26Tjs.HowTo; exports.HowToFields = _chunk6YIZX26Tjs.HowToFields; exports.HowToModule = _chunk6YIZX26Tjs.HowToModule; exports.HowToService = _chunk6YIZX26Tjs.HowToService; exports.HttpMethod = _chunk6YIZX26Tjs.HttpMethod; exports.InvoiceStatus = _chunk6YIZX26Tjs.InvoiceStatus; exports.JsonApiDataFactory = _chunkQWCAOLBDjs.JsonApiDataFactory; exports.MOBILE_BREAKPOINT = _chunk6YIZX26Tjs.MOBILE_BREAKPOINT; exports.Module = _chunk6YIZX26Tjs.Module; exports.ModuleModule = _chunk6YIZX26Tjs.ModuleModule; exports.ModulePaths = _chunk6YIZX26Tjs.ModulePaths; exports.ModulePathsModule = _chunk6YIZX26Tjs.ModulePathsModule; exports.ModuleRegistrar = _chunk6YIZX26Tjs.ModuleRegistrar; exports.ModuleRegistry = _chunk6YIZX26Tjs.ModuleRegistry; exports.Modules = _chunk6YIZX26Tjs.Modules; exports.Notification = _chunk6YIZX26Tjs.Notification; exports.NotificationFields = _chunk6YIZX26Tjs.NotificationFields; exports.NotificationModule = _chunk6YIZX26Tjs.NotificationModule; exports.NotificationService = _chunk6YIZX26Tjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk6YIZX26Tjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk6YIZX26Tjs.OAuthClient; exports.OAuthModule = _chunk6YIZX26Tjs.OAuthModule; exports.OAuthService = _chunk6YIZX26Tjs.OAuthService; exports.Passkey = _chunk6YIZX26Tjs.Passkey; exports.PasskeyAuthenticationOptions = _chunk6YIZX26Tjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk6YIZX26Tjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk6YIZX26Tjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk6YIZX26Tjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk6YIZX26Tjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk6YIZX26Tjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk6YIZX26Tjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk6YIZX26Tjs.PasskeyRename; exports.PasskeyRenameModule = _chunk6YIZX26Tjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk6YIZX26Tjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk6YIZX26Tjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk6YIZX26Tjs.PaymentMethod; exports.PermissionMapping = _chunk6YIZX26Tjs.PermissionMapping; exports.PermissionMappingModule = _chunk6YIZX26Tjs.PermissionMappingModule; exports.Push = _chunk6YIZX26Tjs.Push; exports.PushModule = _chunk6YIZX26Tjs.PushModule; exports.PushService = _chunk6YIZX26Tjs.PushService; exports.RbacMatrixModel = _chunk6YIZX26Tjs.RbacMatrixModel; exports.RbacMatrixModule = _chunk6YIZX26Tjs.RbacMatrixModule; exports.RbacService = _chunkJG7MCYCWjs.RbacService; exports.ReferralModule = _chunk6YIZX26Tjs.ReferralModule; exports.ReferralService = _chunk6YIZX26Tjs.ReferralService; exports.ReferralStats = _chunk6YIZX26Tjs.ReferralStats; exports.ReferralStatsModule = _chunk6YIZX26Tjs.ReferralStatsModule; exports.RehydrationFactory = _chunk6YIZX26Tjs.RehydrationFactory; exports.Role = _chunk6YIZX26Tjs.Role; exports.RoleFields = _chunk6YIZX26Tjs.RoleFields; exports.RoleModule = _chunk6YIZX26Tjs.RoleModule; exports.RoleService = _chunk6YIZX26Tjs.RoleService; exports.S3 = _chunk6YIZX26Tjs.S3; exports.S3Module = _chunk6YIZX26Tjs.S3Module; exports.S3Service = _chunk6YIZX26Tjs.S3Service; exports.StripeCustomer = _chunk6YIZX26Tjs.StripeCustomer; exports.StripeCustomerModule = _chunk6YIZX26Tjs.StripeCustomerModule; exports.StripeCustomerService = _chunk6YIZX26Tjs.StripeCustomerService; exports.StripeInvoice = _chunk6YIZX26Tjs.StripeInvoice; exports.StripeInvoiceModule = _chunk6YIZX26Tjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk6YIZX26Tjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk6YIZX26Tjs.StripePaymentMethodModule; exports.StripePrice = _chunk6YIZX26Tjs.StripePrice; exports.StripePriceModule = _chunk6YIZX26Tjs.StripePriceModule; exports.StripePriceService = _chunk6YIZX26Tjs.StripePriceService; exports.StripeProduct = _chunk6YIZX26Tjs.StripeProduct; exports.StripeProductModule = _chunk6YIZX26Tjs.StripeProductModule; exports.StripeProductService = _chunk6YIZX26Tjs.StripeProductService; exports.StripePromotionCode = _chunk6YIZX26Tjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk6YIZX26Tjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk6YIZX26Tjs.StripePromotionCodeService; exports.StripeSubscription = _chunk6YIZX26Tjs.StripeSubscription; exports.StripeSubscriptionModule = _chunk6YIZX26Tjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk6YIZX26Tjs.StripeSubscriptionService; exports.StripeUsage = _chunk6YIZX26Tjs.StripeUsage; exports.StripeUsageModule = _chunk6YIZX26Tjs.StripeUsageModule; exports.StripeUsageService = _chunk6YIZX26Tjs.StripeUsageService; exports.SubscriptionStatus = _chunk6YIZX26Tjs.SubscriptionStatus; exports.TableOptions = _chunk6YIZX26Tjs.TableOptions; exports.TokenUsageAdminBreakdownModule = _chunk6YIZX26Tjs.TokenUsageAdminBreakdownModule; exports.TokenUsageAdminSummaryModule = _chunk6YIZX26Tjs.TokenUsageAdminSummaryModule; exports.TokenUsageAdminTimelineModule = _chunk6YIZX26Tjs.TokenUsageAdminTimelineModule; exports.TotpAuthenticator = _chunk6YIZX26Tjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk6YIZX26Tjs.TotpAuthenticatorModule; exports.TotpSetup = _chunk6YIZX26Tjs.TotpSetup; exports.TotpSetupModule = _chunk6YIZX26Tjs.TotpSetupModule; exports.TotpVerify = _chunk6YIZX26Tjs.TotpVerify; exports.TotpVerifyLogin = _chunk6YIZX26Tjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk6YIZX26Tjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk6YIZX26Tjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk6YIZX26Tjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk6YIZX26Tjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk6YIZX26Tjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk6YIZX26Tjs.TwoFactorEnableModule; exports.TwoFactorService = _chunk6YIZX26Tjs.TwoFactorService; exports.TwoFactorStatus = _chunk6YIZX26Tjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk6YIZX26Tjs.TwoFactorStatusModule; exports.User = _chunk6YIZX26Tjs.User; exports.UserFields = _chunk6YIZX26Tjs.UserFields; exports.UserModule = _chunk6YIZX26Tjs.UserModule; exports.UserService = _chunk6YIZX26Tjs.UserService; exports.VIEWPORT_COOKIE_NAME = _chunk6YIZX26Tjs.VIEWPORT_COOKIE_NAME; exports.Waitlist = _chunk6YIZX26Tjs.Waitlist; exports.WaitlistModule = _chunk6YIZX26Tjs.WaitlistModule; exports.WaitlistService = _chunk6YIZX26Tjs.WaitlistService; exports.WaitlistStats = _chunk6YIZX26Tjs.WaitlistStats; exports.WaitlistStatsModule = _chunk6YIZX26Tjs.WaitlistStatsModule; exports.checkPermissions = _chunk6YIZX26Tjs.checkPermissions; exports.checkPermissionsFromServer = _chunk6YIZX26Tjs.checkPermissionsFromServer; exports.clearLastApiMeta = _chunk6YIZX26Tjs.clearLastApiMeta; exports.clearLastApiTotal = _chunk6YIZX26Tjs.clearLastApiTotal; exports.cn = _chunk6YIZX26Tjs.cn; exports.composeRefs = _chunk6YIZX26Tjs.composeRefs; exports.configureAuth = _chunk6YIZX26Tjs.configureAuth; exports.configureI18n = _chunkJG7MCYCWjs.configureI18n; exports.configureJsonApi = _chunkJG7MCYCWjs.configureJsonApi; exports.configureLogin = _chunkJG7MCYCWjs.configureLogin; exports.configureReferral = _chunkJG7MCYCWjs.configureReferral; exports.configureRoles = _chunkJG7MCYCWjs.configureRoles; exports.configureWaitlist = _chunkJG7MCYCWjs.configureWaitlist; exports.createJsonApiInclusion = _chunk6YIZX26Tjs.createJsonApiInclusion; exports.dismissToast = _chunk6YIZX26Tjs.dismissToast; exports.entityObjectSchema = _chunk6YIZX26Tjs.entityObjectSchema; exports.exists = _chunk6YIZX26Tjs.exists; exports.formatCodiceFiscale = _chunk6YIZX26Tjs.formatCodiceFiscale; exports.formatDate = _chunk6YIZX26Tjs.formatDate; exports.formatLocalDate = _chunk6YIZX26Tjs.formatLocalDate; exports.formatPartitaIva = _chunk6YIZX26Tjs.formatPartitaIva; exports.getApiUrl = _chunkJG7MCYCWjs.getApiUrl; exports.getAppUrl = _chunkJG7MCYCWjs.getAppUrl; exports.getBootstrapper = _chunkQWCAOLBDjs.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk6YIZX26Tjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk6YIZX26Tjs.getGlobalErrorHandler; exports.getIcon = _chunk6YIZX26Tjs.getIcon; exports.getIconByModule = _chunk6YIZX26Tjs.getIconByModule; exports.getIconByModuleName = _chunk6YIZX26Tjs.getIconByModuleName; exports.getInitials = _chunk6YIZX26Tjs.getInitials; exports.getLastApiMeta = _chunk6YIZX26Tjs.getLastApiMeta; exports.getLastApiTotal = _chunk6YIZX26Tjs.getLastApiTotal; exports.getLucideIcon = _chunk6YIZX26Tjs.getLucideIcon; exports.getLucideIconByModule = _chunk6YIZX26Tjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk6YIZX26Tjs.getLucideIconByModuleName; exports.getPublicApiUrl = _chunkJG7MCYCWjs.getPublicApiUrl; exports.getReferralConfig = _chunkJG7MCYCWjs.getReferralConfig; exports.getRoleId = _chunkJG7MCYCWjs.getRoleId; exports.getStripePublishableKey = _chunkJG7MCYCWjs.getStripePublishableKey; exports.getTableComponents = _chunk6YIZX26Tjs.getTableComponents; exports.getTableOptions = _chunk6YIZX26Tjs.getTableOptions; exports.getTokenHandler = _chunk6YIZX26Tjs.getTokenHandler; exports.getTrackablePages = _chunkJG7MCYCWjs.getTrackablePages; exports.getValueFromPath = _chunk6YIZX26Tjs.getValueFromPath; exports.getWaitlistConfig = _chunkJG7MCYCWjs.getWaitlistConfig; exports.hasBootstrapper = _chunkQWCAOLBDjs.hasBootstrapper; exports.isReferralEnabled = _chunkJG7MCYCWjs.isReferralEnabled; exports.isRolesConfigured = _chunkJG7MCYCWjs.isRolesConfigured; exports.rehydrate = _chunk6YIZX26Tjs.rehydrate; exports.rehydrateList = _chunk6YIZX26Tjs.rehydrateList; exports.resetBootstrapStore = _chunkQWCAOLBDjs.resetBootstrapStore; exports.setBootstrapper = _chunkQWCAOLBDjs.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk6YIZX26Tjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk6YIZX26Tjs.setGlobalErrorHandler; exports.showCustomToast = _chunk6YIZX26Tjs.showCustomToast; exports.showError = _chunk6YIZX26Tjs.showError; exports.showToast = _chunk6YIZX26Tjs.showToast; exports.translateData = _chunkQWCAOLBDjs.translateData; exports.translateResponse = _chunkQWCAOLBDjs.translateResponse; exports.tryBootstrap = _chunkQWCAOLBDjs.tryBootstrap; exports.useComposedRefs = _chunk6YIZX26Tjs.useComposedRefs; exports.useIsMobile = _chunk6YIZX26Tjs.useIsMobile; exports.userObjectSchema = _chunk6YIZX26Tjs.userObjectSchema; exports.validateCodiceFiscale = _chunk6YIZX26Tjs.validateCodiceFiscale; exports.validateItalianTaxCode = _chunk6YIZX26Tjs.validateItalianTaxCode; exports.validatePartitaIva = _chunk6YIZX26Tjs.validatePartitaIva;
|
|
451
457
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,izaAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
|
package/dist/index.mjs
CHANGED
|
@@ -18,13 +18,16 @@ import {
|
|
|
18
18
|
getWaitlistConfig,
|
|
19
19
|
isReferralEnabled,
|
|
20
20
|
isRolesConfigured
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-MAWTFEY3.mjs";
|
|
22
22
|
import {
|
|
23
23
|
AVAILABLE_OAUTH_SCOPES,
|
|
24
24
|
AbstractApiData,
|
|
25
25
|
AbstractService,
|
|
26
26
|
Action,
|
|
27
27
|
Assistant,
|
|
28
|
+
AssistantAction,
|
|
29
|
+
AssistantActionModule,
|
|
30
|
+
AssistantActionService,
|
|
28
31
|
AssistantMessage,
|
|
29
32
|
AssistantMessageModule,
|
|
30
33
|
AssistantMessageService,
|
|
@@ -211,7 +214,7 @@ import {
|
|
|
211
214
|
validateCodiceFiscale,
|
|
212
215
|
validateItalianTaxCode,
|
|
213
216
|
validatePartitaIva
|
|
214
|
-
} from "./chunk-
|
|
217
|
+
} from "./chunk-P5TMD7GK.mjs";
|
|
215
218
|
import "./chunk-AUXK7QSA.mjs";
|
|
216
219
|
import "./chunk-C7C7VY4F.mjs";
|
|
217
220
|
import {
|
|
@@ -233,6 +236,9 @@ export {
|
|
|
233
236
|
AbstractService,
|
|
234
237
|
Action,
|
|
235
238
|
Assistant,
|
|
239
|
+
AssistantAction,
|
|
240
|
+
AssistantActionModule,
|
|
241
|
+
AssistantActionService,
|
|
236
242
|
AssistantMessage,
|
|
237
243
|
AssistantMessageModule,
|
|
238
244
|
AssistantMessageService,
|