@nextsparkjs/core 0.1.0-beta.128 → 0.1.0-beta.129
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/components/billing/ConfirmPlanChangeModal.d.ts +29 -0
- package/dist/components/billing/ConfirmPlanChangeModal.d.ts.map +1 -0
- package/dist/components/billing/ConfirmPlanChangeModal.js +100 -0
- package/dist/components/billing/PricingTable.d.ts +3 -0
- package/dist/components/billing/PricingTable.d.ts.map +1 -1
- package/dist/components/billing/PricingTable.js +146 -71
- package/dist/components/billing/QuotaGate.d.ts +21 -0
- package/dist/components/billing/QuotaGate.d.ts.map +1 -0
- package/dist/components/billing/QuotaGate.js +33 -0
- package/dist/components/billing/index.d.ts +2 -0
- package/dist/components/billing/index.d.ts.map +1 -1
- package/dist/components/billing/index.js +4 -0
- package/dist/components/dashboard/block-editor/dynamic-form.d.ts.map +1 -1
- package/dist/components/dashboard/block-editor/dynamic-form.js +7 -5
- package/dist/contexts/SubscriptionContext.d.ts +2 -0
- package/dist/contexts/SubscriptionContext.d.ts.map +1 -1
- package/dist/contexts/SubscriptionContext.js +2 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/useQuotaCheck.d.ts +26 -0
- package/dist/hooks/useQuotaCheck.d.ts.map +1 -0
- package/dist/hooks/useQuotaCheck.js +33 -0
- package/dist/lib/api/entity/generic-handler.d.ts.map +1 -1
- package/dist/lib/api/entity/generic-handler.js +54 -6
- package/dist/lib/oauth/index.d.ts +1 -1
- package/dist/messages/de/billing.json +10 -0
- package/dist/messages/de/index.d.ts +9 -0
- package/dist/messages/de/index.d.ts.map +1 -1
- package/dist/messages/en/billing.json +21 -0
- package/dist/messages/en/index.d.ts +19 -0
- package/dist/messages/en/index.d.ts.map +1 -1
- package/dist/messages/es/billing.json +21 -0
- package/dist/messages/es/index.d.ts +19 -0
- package/dist/messages/es/index.d.ts.map +1 -1
- package/dist/messages/fr/billing.json +10 -0
- package/dist/messages/fr/index.d.ts +9 -0
- package/dist/messages/fr/index.d.ts.map +1 -1
- package/dist/messages/it/billing.json +10 -0
- package/dist/messages/it/index.d.ts +9 -0
- package/dist/messages/it/index.d.ts.map +1 -1
- package/dist/messages/pt/billing.json +10 -0
- package/dist/messages/pt/index.d.ts +9 -0
- package/dist/messages/pt/index.d.ts.map +1 -1
- package/dist/styles/classes.json +6 -2
- package/dist/styles/ui.css +1 -1
- package/dist/templates/app/api/v1/billing/cancel/route.ts +1 -1
- package/dist/templates/app/api/v1/billing/change-plan/route.ts +1 -1
- package/dist/templates/app/api/v1/billing/check-action/route.ts +7 -6
- package/dist/templates/app/api/v1/billing/checkout/route.ts +35 -7
- package/dist/templates/app/api/v1/billing/portal/route.ts +1 -1
- package/dist/templates/app/dashboard/settings/billing/page.tsx +9 -4
- package/dist/templates/app/dashboard/settings/plans/page.tsx +29 -7
- package/dist/templates/blocks/hero/component.tsx +6 -3
- package/dist/templates/blocks/hero/schema.ts +2 -1
- package/dist/templates/blocks/testimonials/component.tsx +2 -2
- package/dist/templates/blocks/testimonials/schema.ts +2 -2
- package/dist/templates/features/pages/blocks/hero/component.tsx +6 -3
- package/dist/templates/features/pages/blocks/hero/schema.ts +2 -1
- package/dist/types/blocks.d.ts +24 -0
- package/dist/types/blocks.d.ts.map +1 -1
- package/dist/types/blocks.js +17 -1
- package/package.json +2 -2
- package/templates/app/api/v1/billing/cancel/route.ts +1 -1
- package/templates/app/api/v1/billing/change-plan/route.ts +1 -1
- package/templates/app/api/v1/billing/check-action/route.ts +7 -6
- package/templates/app/api/v1/billing/checkout/route.ts +35 -7
- package/templates/app/api/v1/billing/portal/route.ts +1 -1
- package/templates/app/dashboard/settings/billing/page.tsx +9 -4
- package/templates/app/dashboard/settings/plans/page.tsx +29 -7
- package/templates/blocks/hero/component.tsx +6 -3
- package/templates/blocks/hero/schema.ts +2 -1
- package/templates/blocks/testimonials/component.tsx +2 -2
- package/templates/blocks/testimonials/schema.ts +2 -2
- package/templates/features/pages/blocks/hero/component.tsx +6 -3
- package/templates/features/pages/blocks/hero/schema.ts +2 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hook to check if the current team can perform a billing action.
|
|
3
|
+
* Used to gate entity creation based on plan limits.
|
|
4
|
+
*
|
|
5
|
+
* @param action - The action to check (e.g., 'professionals.create')
|
|
6
|
+
* @param enabled - Whether to run the check (default: true)
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* const { canCreate, isLoading, reason } = useQuotaCheck('professionals.create')
|
|
10
|
+
* if (!canCreate) showUpgradeBanner()
|
|
11
|
+
*/
|
|
12
|
+
export declare function useQuotaCheck(action: string, enabled?: boolean): {
|
|
13
|
+
canCreate: boolean;
|
|
14
|
+
isLoading: boolean;
|
|
15
|
+
reason: string;
|
|
16
|
+
message: string;
|
|
17
|
+
meta: {
|
|
18
|
+
limitSlug?: string;
|
|
19
|
+
remaining?: number;
|
|
20
|
+
requiredFeature?: string;
|
|
21
|
+
currentPlan?: string;
|
|
22
|
+
};
|
|
23
|
+
isQuotaExceeded: boolean;
|
|
24
|
+
isFeatureBlocked: boolean;
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=useQuotaCheck.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useQuotaCheck.d.ts","sourceRoot":"","sources":["../../src/hooks/useQuotaCheck.ts"],"names":[],"mappings":"AAiBA;;;;;;;;;;GAUG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,UAAO;;;;;;oBAlB5C,MAAM;oBACN,MAAM;0BACA,MAAM;sBACV,MAAM;;;;EAwCvB"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { useQuery } from "@tanstack/react-query";
|
|
3
|
+
import { fetchWithTeam } from "../lib/api/entities.js";
|
|
4
|
+
function useQuotaCheck(action, enabled = true) {
|
|
5
|
+
const { data, isLoading } = useQuery({
|
|
6
|
+
queryKey: ["quota-check", action],
|
|
7
|
+
queryFn: async () => {
|
|
8
|
+
const res = await fetchWithTeam("/api/v1/billing/check-action", {
|
|
9
|
+
method: "POST",
|
|
10
|
+
body: JSON.stringify({ action })
|
|
11
|
+
});
|
|
12
|
+
const json = await res.json();
|
|
13
|
+
return json.data || { allowed: true };
|
|
14
|
+
},
|
|
15
|
+
enabled,
|
|
16
|
+
staleTime: 3e4,
|
|
17
|
+
// Cache for 30s
|
|
18
|
+
retry: false
|
|
19
|
+
});
|
|
20
|
+
return {
|
|
21
|
+
canCreate: (data == null ? void 0 : data.allowed) ?? true,
|
|
22
|
+
// Default to true while loading
|
|
23
|
+
isLoading,
|
|
24
|
+
reason: data == null ? void 0 : data.reason,
|
|
25
|
+
message: data == null ? void 0 : data.message,
|
|
26
|
+
meta: data == null ? void 0 : data.meta,
|
|
27
|
+
isQuotaExceeded: (data == null ? void 0 : data.reason) === "quota_exceeded",
|
|
28
|
+
isFeatureBlocked: (data == null ? void 0 : data.reason) === "feature_not_in_plan"
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
export {
|
|
32
|
+
useQuotaCheck
|
|
33
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generic-handler.d.ts","sourceRoot":"","sources":["../../../../src/lib/api/entity/generic-handler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"generic-handler.d.ts","sourceRoot":"","sources":["../../../../src/lib/api/entity/generic-handler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAqYvD;;GAEG;AACH,wBAAsB,iBAAiB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,CAwdnF;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,CAiVrF;AAED;;GAEG;AACH,wBAAsB,iBAAiB,CAAC,OAAO,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,EAAE,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CA+KpJ;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CAAC,OAAO,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,EAAE,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CAyStJ;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CAAC,OAAO,EAAE,WAAW,EAAE,EAAE,MAAM,EAAE,EAAE;IAAE,MAAM,EAAE,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CAAC,YAAY,CAAC,CAkItJ;AAED;;GAEG;AACH,wBAAsB,oBAAoB,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,CAEtF"}
|
|
@@ -21,6 +21,9 @@ import { afterEntityCreate, afterEntityUpdate, afterEntityDelete } from "../../e
|
|
|
21
21
|
import { extractPatternIds } from "../../blocks/pattern-resolver.js";
|
|
22
22
|
import { isPatternReference } from "../../../types/pattern-reference.js";
|
|
23
23
|
import { PatternUsageService } from "../../services/pattern-usage.service.js";
|
|
24
|
+
import { SubscriptionService } from "../../services/subscription.service.js";
|
|
25
|
+
import { UsageService } from "../../services/usage.service.js";
|
|
26
|
+
import { BILLING_REGISTRY } from "@nextsparkjs/registries/billing-registry";
|
|
24
27
|
function filterPublicFields(data, entityConfig, userId) {
|
|
25
28
|
var _a;
|
|
26
29
|
const publicFields = (_a = entityConfig.access) == null ? void 0 : _a.publicFields;
|
|
@@ -531,7 +534,7 @@ async function handleGenericList(request) {
|
|
|
531
534
|
}
|
|
532
535
|
}
|
|
533
536
|
async function handleGenericCreate(request) {
|
|
534
|
-
var _a, _b, _c, _d, _e, _f, _g;
|
|
537
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
535
538
|
try {
|
|
536
539
|
const resolution = await resolveEntityFromUrl(request.nextUrl.pathname);
|
|
537
540
|
if (!resolution.isValidEntity || !resolution.entityConfig) {
|
|
@@ -666,14 +669,45 @@ async function handleGenericCreate(request) {
|
|
|
666
669
|
}
|
|
667
670
|
}
|
|
668
671
|
});
|
|
672
|
+
const createAction = `${entityConfig.slug}.create`;
|
|
673
|
+
const limitSlug = (_f = (_e = (_d = BILLING_REGISTRY) == null ? void 0 : _d.actionMappings) == null ? void 0 : _e.limits) == null ? void 0 : _f[createAction];
|
|
674
|
+
if (limitSlug) {
|
|
675
|
+
const actionResult = await SubscriptionService.canPerformAction(
|
|
676
|
+
authResult.user.id,
|
|
677
|
+
teamId,
|
|
678
|
+
createAction
|
|
679
|
+
);
|
|
680
|
+
if (!actionResult.allowed) {
|
|
681
|
+
const statusCode = actionResult.reason === "quota_exceeded" ? 429 : 403;
|
|
682
|
+
const response2 = createApiError(
|
|
683
|
+
actionResult.message || `Quota exceeded for ${entityConfig.slug}`,
|
|
684
|
+
statusCode,
|
|
685
|
+
void 0,
|
|
686
|
+
actionResult.reason === "quota_exceeded" ? "QUOTA_EXCEEDED" : "FEATURE_NOT_IN_PLAN"
|
|
687
|
+
);
|
|
688
|
+
return addCorsHeaders(response2, request);
|
|
689
|
+
}
|
|
690
|
+
}
|
|
669
691
|
const insertQuery = `
|
|
670
692
|
INSERT INTO "${tableName}" (${insertFields.join(", ")})
|
|
671
693
|
VALUES (${placeholders.join(", ")}) RETURNING *
|
|
672
694
|
`;
|
|
673
695
|
const insertResult = await mutateWithRLS(insertQuery, values, authResult.user.id);
|
|
674
|
-
const createdEntityId = String((
|
|
696
|
+
const createdEntityId = String((_g = insertResult.rows[0]) == null ? void 0 : _g.id);
|
|
697
|
+
if (limitSlug) {
|
|
698
|
+
UsageService.track({
|
|
699
|
+
teamId,
|
|
700
|
+
userId: authResult.user.id,
|
|
701
|
+
limitSlug,
|
|
702
|
+
delta: 1,
|
|
703
|
+
action: createAction,
|
|
704
|
+
resourceType: entityConfig.slug,
|
|
705
|
+
resourceId: createdEntityId
|
|
706
|
+
}).catch(() => {
|
|
707
|
+
});
|
|
708
|
+
}
|
|
675
709
|
const systemFields = ["id", "userId", "teamId", "createdAt", "updatedAt"];
|
|
676
|
-
if ((
|
|
710
|
+
if ((_h = entityConfig.builder) == null ? void 0 : _h.enabled) {
|
|
677
711
|
systemFields.push("blocks");
|
|
678
712
|
}
|
|
679
713
|
const configFields = entityConfig.fields.map((field) => {
|
|
@@ -692,7 +726,7 @@ async function handleGenericCreate(request) {
|
|
|
692
726
|
`;
|
|
693
727
|
const createdItems = await queryWithRLS(selectQuery, [createdEntityId], authResult.user.id);
|
|
694
728
|
const createdItem = createdItems[0];
|
|
695
|
-
if ((
|
|
729
|
+
if ((_i = entityConfig.taxonomies) == null ? void 0 : _i.enabled) {
|
|
696
730
|
await processTaxonomyRelations(entityConfig, createdEntityId, body, authResult.user.id, false);
|
|
697
731
|
}
|
|
698
732
|
const metadataWasProvided = metas && typeof metas === "object" && Object.keys(metas).length > 0;
|
|
@@ -705,7 +739,7 @@ async function handleGenericCreate(request) {
|
|
|
705
739
|
);
|
|
706
740
|
}
|
|
707
741
|
let responseItem = createdItem;
|
|
708
|
-
if ((
|
|
742
|
+
if ((_j = entityConfig.taxonomies) == null ? void 0 : _j.enabled) {
|
|
709
743
|
const itemsWithTaxonomies = await includeTaxonomiesInData(
|
|
710
744
|
entityConfig,
|
|
711
745
|
[createdItem],
|
|
@@ -1062,7 +1096,7 @@ async function handleGenericUpdate(request, { params }) {
|
|
|
1062
1096
|
}
|
|
1063
1097
|
}
|
|
1064
1098
|
async function handleGenericDelete(request, { params }) {
|
|
1065
|
-
var _a, _b;
|
|
1099
|
+
var _a, _b, _c, _d, _e;
|
|
1066
1100
|
try {
|
|
1067
1101
|
const { id } = await params;
|
|
1068
1102
|
const resolution = await resolveEntityFromUrl(request.nextUrl.pathname);
|
|
@@ -1137,6 +1171,20 @@ async function handleGenericDelete(request, { params }) {
|
|
|
1137
1171
|
} catch (hookError) {
|
|
1138
1172
|
console.error(`[generic-handler] Error in afterEntityDelete hook for ${entityConfig.slug}:`, hookError);
|
|
1139
1173
|
}
|
|
1174
|
+
const deleteAction = `${entityConfig.slug}.create`;
|
|
1175
|
+
const deleteLimitSlug = (_e = (_d = (_c = BILLING_REGISTRY) == null ? void 0 : _c.actionMappings) == null ? void 0 : _d.limits) == null ? void 0 : _e[deleteAction];
|
|
1176
|
+
if (deleteLimitSlug) {
|
|
1177
|
+
UsageService.track({
|
|
1178
|
+
teamId,
|
|
1179
|
+
userId: authResult.user.id,
|
|
1180
|
+
limitSlug: deleteLimitSlug,
|
|
1181
|
+
delta: -1,
|
|
1182
|
+
action: `${entityConfig.slug}.delete`,
|
|
1183
|
+
resourceType: entityConfig.slug,
|
|
1184
|
+
resourceId: id
|
|
1185
|
+
}).catch(() => {
|
|
1186
|
+
});
|
|
1187
|
+
}
|
|
1140
1188
|
const response = createApiResponse({ success: true, id });
|
|
1141
1189
|
return addCorsHeaders(response, request);
|
|
1142
1190
|
} catch (error) {
|
|
@@ -159,6 +159,16 @@
|
|
|
159
159
|
"failed": "Fehlgeschlagen"
|
|
160
160
|
},
|
|
161
161
|
|
|
162
|
+
"quota": {
|
|
163
|
+
"limitReached": "Sie haben Ihr Limit fuer {entity} erreicht",
|
|
164
|
+
"limitReachedDetail": "Ihr aktueller Tarif erlaubt keine weiteren {entity}. Fuehren Sie ein Upgrade durch, um weiterzuwachsen.",
|
|
165
|
+
"featureNotIncluded": "Diese Funktion ist nicht in Ihrem Tarif enthalten",
|
|
166
|
+
"featureNotIncludedDetail": "Diese Funktion ist in Ihrem aktuellen Tarif nicht verfuegbar.",
|
|
167
|
+
"upgradePrompt": "Fuehren Sie ein Upgrade durch, um mehr Kapazitaet freizuschalten.",
|
|
168
|
+
"viewPlans": "Tarife ansehen",
|
|
169
|
+
"goBack": "Zurueck"
|
|
170
|
+
},
|
|
171
|
+
|
|
162
172
|
"placeholder": {
|
|
163
173
|
"notReal": "Dies ist ein Platzhalter - noch keine echte Funktion",
|
|
164
174
|
"description": "Diese Funktion kommt bald. Fuehren Sie ein Upgrade durch, um benachrichtigt zu werden, wenn sie verfuegbar ist.",
|
|
@@ -526,6 +526,15 @@ declare const _default: {
|
|
|
526
526
|
pending: string;
|
|
527
527
|
failed: string;
|
|
528
528
|
};
|
|
529
|
+
quota: {
|
|
530
|
+
limitReached: string;
|
|
531
|
+
limitReachedDetail: string;
|
|
532
|
+
featureNotIncluded: string;
|
|
533
|
+
featureNotIncludedDetail: string;
|
|
534
|
+
upgradePrompt: string;
|
|
535
|
+
viewPlans: string;
|
|
536
|
+
goBack: string;
|
|
537
|
+
};
|
|
529
538
|
placeholder: {
|
|
530
539
|
notReal: string;
|
|
531
540
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/de/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/de/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
|
|
@@ -159,6 +159,27 @@
|
|
|
159
159
|
"failed": "Failed"
|
|
160
160
|
},
|
|
161
161
|
|
|
162
|
+
"changePlan": {
|
|
163
|
+
"title": "Change Plan",
|
|
164
|
+
"from": "Current Plan",
|
|
165
|
+
"to": "New Plan",
|
|
166
|
+
"upgradeDescription": "Your billing will be adjusted proportionally for the current period",
|
|
167
|
+
"downgradeDescription": "Existing resources will remain accessible but new creation may be limited",
|
|
168
|
+
"downgradeToFreeDescription": "Your subscription will be canceled and you'll switch to the free plan",
|
|
169
|
+
"confirm": "Confirm Change",
|
|
170
|
+
"cancel": "Cancel"
|
|
171
|
+
},
|
|
172
|
+
|
|
173
|
+
"quota": {
|
|
174
|
+
"limitReached": "You've reached your {entity} limit",
|
|
175
|
+
"limitReachedDetail": "Your current plan doesn't allow more {entity}. Upgrade to keep growing.",
|
|
176
|
+
"featureNotIncluded": "This feature isn't in your plan",
|
|
177
|
+
"featureNotIncludedDetail": "This feature isn't available on your current plan.",
|
|
178
|
+
"upgradePrompt": "Upgrade your plan to unlock more capacity.",
|
|
179
|
+
"viewPlans": "View Plans",
|
|
180
|
+
"goBack": "Go Back"
|
|
181
|
+
},
|
|
182
|
+
|
|
162
183
|
"placeholder": {
|
|
163
184
|
"notReal": "This is a placeholder - not a real feature yet",
|
|
164
185
|
"description": "This feature is coming soon. Upgrade your plan to be notified when it's available.",
|
|
@@ -675,6 +675,25 @@ declare const _default: {
|
|
|
675
675
|
pending: string;
|
|
676
676
|
failed: string;
|
|
677
677
|
};
|
|
678
|
+
changePlan: {
|
|
679
|
+
title: string;
|
|
680
|
+
from: string;
|
|
681
|
+
to: string;
|
|
682
|
+
upgradeDescription: string;
|
|
683
|
+
downgradeDescription: string;
|
|
684
|
+
downgradeToFreeDescription: string;
|
|
685
|
+
confirm: string;
|
|
686
|
+
cancel: string;
|
|
687
|
+
};
|
|
688
|
+
quota: {
|
|
689
|
+
limitReached: string;
|
|
690
|
+
limitReachedDetail: string;
|
|
691
|
+
featureNotIncluded: string;
|
|
692
|
+
featureNotIncludedDetail: string;
|
|
693
|
+
upgradePrompt: string;
|
|
694
|
+
viewPlans: string;
|
|
695
|
+
goBack: string;
|
|
696
|
+
};
|
|
678
697
|
placeholder: {
|
|
679
698
|
notReal: string;
|
|
680
699
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/en/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/en/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqBA,wBAqBU"}
|
|
@@ -159,6 +159,27 @@
|
|
|
159
159
|
"failed": "Fallida"
|
|
160
160
|
},
|
|
161
161
|
|
|
162
|
+
"changePlan": {
|
|
163
|
+
"title": "Cambiar de plan",
|
|
164
|
+
"from": "Plan actual",
|
|
165
|
+
"to": "Nuevo plan",
|
|
166
|
+
"upgradeDescription": "Se ajustará el cobro proporcionalmente al período actual",
|
|
167
|
+
"downgradeDescription": "Los recursos existentes permanecerán accesibles pero la creación de nuevos puede estar limitada",
|
|
168
|
+
"downgradeToFreeDescription": "Se cancelará tu suscripción y pasarás al plan gratuito",
|
|
169
|
+
"confirm": "Confirmar cambio",
|
|
170
|
+
"cancel": "Cancelar"
|
|
171
|
+
},
|
|
172
|
+
|
|
173
|
+
"quota": {
|
|
174
|
+
"limitReached": "Llegaste al l\u00edmite de {entity}",
|
|
175
|
+
"limitReachedDetail": "Tu plan actual no permite crear m\u00e1s {entity}. Mejor\u00e1 tu plan para seguir creciendo.",
|
|
176
|
+
"featureNotIncluded": "Esta funci\u00f3n no est\u00e1 en tu plan",
|
|
177
|
+
"featureNotIncludedDetail": "Esta funcionalidad no est\u00e1 disponible en tu plan actual.",
|
|
178
|
+
"upgradePrompt": "Mejor\u00e1 tu plan para desbloquear m\u00e1s capacidad.",
|
|
179
|
+
"viewPlans": "Ver Planes",
|
|
180
|
+
"goBack": "Volver"
|
|
181
|
+
},
|
|
182
|
+
|
|
162
183
|
"placeholder": {
|
|
163
184
|
"notReal": "Esto es un placeholder - aún no es una función real",
|
|
164
185
|
"description": "Esta función llegará pronto. Mejora tu plan para recibir notificación cuando esté disponible.",
|
|
@@ -675,6 +675,25 @@ declare const _default: {
|
|
|
675
675
|
pending: string;
|
|
676
676
|
failed: string;
|
|
677
677
|
};
|
|
678
|
+
changePlan: {
|
|
679
|
+
title: string;
|
|
680
|
+
from: string;
|
|
681
|
+
to: string;
|
|
682
|
+
upgradeDescription: string;
|
|
683
|
+
downgradeDescription: string;
|
|
684
|
+
downgradeToFreeDescription: string;
|
|
685
|
+
confirm: string;
|
|
686
|
+
cancel: string;
|
|
687
|
+
};
|
|
688
|
+
quota: {
|
|
689
|
+
limitReached: string;
|
|
690
|
+
limitReachedDetail: string;
|
|
691
|
+
featureNotIncluded: string;
|
|
692
|
+
featureNotIncludedDetail: string;
|
|
693
|
+
upgradePrompt: string;
|
|
694
|
+
viewPlans: string;
|
|
695
|
+
goBack: string;
|
|
696
|
+
};
|
|
678
697
|
placeholder: {
|
|
679
698
|
notReal: string;
|
|
680
699
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/es/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/es/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqBA,wBAqBU"}
|
|
@@ -159,6 +159,16 @@
|
|
|
159
159
|
"failed": "Echouee"
|
|
160
160
|
},
|
|
161
161
|
|
|
162
|
+
"quota": {
|
|
163
|
+
"limitReached": "Vous avez atteint votre limite de {entity}",
|
|
164
|
+
"limitReachedDetail": "Votre plan actuel ne permet pas plus de {entity}. Mettez a niveau pour continuer a grandir.",
|
|
165
|
+
"featureNotIncluded": "Cette fonctionnalite n'est pas incluse dans votre plan",
|
|
166
|
+
"featureNotIncludedDetail": "Cette fonctionnalite n'est pas disponible dans votre plan actuel.",
|
|
167
|
+
"upgradePrompt": "Mettez a niveau votre plan pour debloquer plus de capacite.",
|
|
168
|
+
"viewPlans": "Voir les Plans",
|
|
169
|
+
"goBack": "Retour"
|
|
170
|
+
},
|
|
171
|
+
|
|
162
172
|
"placeholder": {
|
|
163
173
|
"notReal": "Ceci est un espace reserve - ce n'est pas encore une fonctionnalite reelle",
|
|
164
174
|
"description": "Cette fonctionnalite arrivera bientot. Mettez a niveau votre plan pour etre notifie quand elle sera disponible.",
|
|
@@ -526,6 +526,15 @@ declare const _default: {
|
|
|
526
526
|
pending: string;
|
|
527
527
|
failed: string;
|
|
528
528
|
};
|
|
529
|
+
quota: {
|
|
530
|
+
limitReached: string;
|
|
531
|
+
limitReachedDetail: string;
|
|
532
|
+
featureNotIncluded: string;
|
|
533
|
+
featureNotIncludedDetail: string;
|
|
534
|
+
upgradePrompt: string;
|
|
535
|
+
viewPlans: string;
|
|
536
|
+
goBack: string;
|
|
537
|
+
};
|
|
529
538
|
placeholder: {
|
|
530
539
|
notReal: string;
|
|
531
540
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/fr/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/fr/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
|
|
@@ -159,6 +159,16 @@
|
|
|
159
159
|
"failed": "Fallita"
|
|
160
160
|
},
|
|
161
161
|
|
|
162
|
+
"quota": {
|
|
163
|
+
"limitReached": "Hai raggiunto il limite di {entity}",
|
|
164
|
+
"limitReachedDetail": "Il tuo piano attuale non consente altri {entity}. Aggiorna il piano per continuare a crescere.",
|
|
165
|
+
"featureNotIncluded": "Questa funzionalita non e inclusa nel tuo piano",
|
|
166
|
+
"featureNotIncludedDetail": "Questa funzionalita non e disponibile nel tuo piano attuale.",
|
|
167
|
+
"upgradePrompt": "Aggiorna il tuo piano per sbloccare piu capacita.",
|
|
168
|
+
"viewPlans": "Vedi i Piani",
|
|
169
|
+
"goBack": "Indietro"
|
|
170
|
+
},
|
|
171
|
+
|
|
162
172
|
"placeholder": {
|
|
163
173
|
"notReal": "Questo e un placeholder - non e ancora una funzionalita reale",
|
|
164
174
|
"description": "Questa funzionalita arrivera presto. Aggiorna il tuo piano per ricevere una notifica quando sara disponibile.",
|
|
@@ -526,6 +526,15 @@ declare const _default: {
|
|
|
526
526
|
pending: string;
|
|
527
527
|
failed: string;
|
|
528
528
|
};
|
|
529
|
+
quota: {
|
|
530
|
+
limitReached: string;
|
|
531
|
+
limitReachedDetail: string;
|
|
532
|
+
featureNotIncluded: string;
|
|
533
|
+
featureNotIncludedDetail: string;
|
|
534
|
+
upgradePrompt: string;
|
|
535
|
+
viewPlans: string;
|
|
536
|
+
goBack: string;
|
|
537
|
+
};
|
|
529
538
|
placeholder: {
|
|
530
539
|
notReal: string;
|
|
531
540
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/it/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/it/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
|
|
@@ -159,6 +159,16 @@
|
|
|
159
159
|
"failed": "Falhou"
|
|
160
160
|
},
|
|
161
161
|
|
|
162
|
+
"quota": {
|
|
163
|
+
"limitReached": "Voce atingiu seu limite de {entity}",
|
|
164
|
+
"limitReachedDetail": "Seu plano atual nao permite mais {entity}. Faca upgrade para continuar crescendo.",
|
|
165
|
+
"featureNotIncluded": "Este recurso nao esta incluido no seu plano",
|
|
166
|
+
"featureNotIncludedDetail": "Este recurso nao esta disponivel no seu plano atual.",
|
|
167
|
+
"upgradePrompt": "Faca upgrade do seu plano para desbloquear mais capacidade.",
|
|
168
|
+
"viewPlans": "Ver Planos",
|
|
169
|
+
"goBack": "Voltar"
|
|
170
|
+
},
|
|
171
|
+
|
|
162
172
|
"placeholder": {
|
|
163
173
|
"notReal": "Isto e um placeholder - ainda nao e um recurso real",
|
|
164
174
|
"description": "Este recurso chegara em breve. Faca upgrade do seu plano para receber notificacao quando estiver disponivel.",
|
|
@@ -526,6 +526,15 @@ declare const _default: {
|
|
|
526
526
|
pending: string;
|
|
527
527
|
failed: string;
|
|
528
528
|
};
|
|
529
|
+
quota: {
|
|
530
|
+
limitReached: string;
|
|
531
|
+
limitReachedDetail: string;
|
|
532
|
+
featureNotIncluded: string;
|
|
533
|
+
featureNotIncludedDetail: string;
|
|
534
|
+
upgradePrompt: string;
|
|
535
|
+
viewPlans: string;
|
|
536
|
+
goBack: string;
|
|
537
|
+
};
|
|
529
538
|
placeholder: {
|
|
530
539
|
notReal: string;
|
|
531
540
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/pt/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messages/pt/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBA,wBAoBU"}
|
package/dist/styles/classes.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated": "2026-03-
|
|
3
|
-
"totalClasses":
|
|
2
|
+
"generated": "2026-03-25T21:49:37.359Z",
|
|
3
|
+
"totalClasses": 1078,
|
|
4
4
|
"classes": [
|
|
5
5
|
"!text-2xl",
|
|
6
6
|
"''",
|
|
@@ -559,6 +559,7 @@
|
|
|
559
559
|
"lg:pb-0",
|
|
560
560
|
"lg:pr-8",
|
|
561
561
|
"lg:pt-0",
|
|
562
|
+
"lg:px-6",
|
|
562
563
|
"lg:px-8",
|
|
563
564
|
"lg:relative",
|
|
564
565
|
"lg:sticky",
|
|
@@ -870,6 +871,7 @@
|
|
|
870
871
|
"sm:max-w-md",
|
|
871
872
|
"sm:mt-0",
|
|
872
873
|
"sm:pr-6",
|
|
874
|
+
"sm:px-4",
|
|
873
875
|
"sm:px-6",
|
|
874
876
|
"sm:rounded-lg",
|
|
875
877
|
"sm:space-x-2",
|
|
@@ -890,11 +892,13 @@
|
|
|
890
892
|
"space-y-2.5",
|
|
891
893
|
"space-y-3",
|
|
892
894
|
"space-y-4",
|
|
895
|
+
"space-y-5",
|
|
893
896
|
"space-y-6",
|
|
894
897
|
"space-y-8",
|
|
895
898
|
"sr-only",
|
|
896
899
|
"sticky",
|
|
897
900
|
"supports-[backdrop-filter]:bg-background/60",
|
|
901
|
+
"tabular-nums",
|
|
898
902
|
"text-2xl",
|
|
899
903
|
"text-3xl",
|
|
900
904
|
"text-4xl",
|