@abyss-project/commons-front-core 2.0.9 → 2.2.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/{CookieConsentSettings.component-DX8UGrQv.js → CookieConsentSettings.component-C-P3Slsp.js} +1262 -1186
- package/dist/components/QuotaGauge/AbyssQuotaGauge.component.d.ts +13 -0
- package/dist/components/QuotaGauge/bubble-placement.d.ts +7 -0
- package/dist/components/QuotaGauge/bubble-placement.spec.d.ts +1 -0
- package/dist/components/QuotaGauge/gauge-highlight.spec.d.ts +1 -0
- package/dist/components/QuotaGauge/gauge-i18n-coverage.spec.d.ts +1 -0
- package/dist/components/QuotaGauge/gauge-segments.d.ts +24 -0
- package/dist/components/QuotaGauge/gauge-segments.spec.d.ts +1 -0
- package/dist/components/QuotaGauge/index.d.ts +6 -0
- package/dist/components/QuotaOffer/AbyssQuotaOffer.component.d.ts +23 -0
- package/dist/components/QuotaOffer/AbyssQuotaOffer.component.spec.d.ts +1 -0
- package/dist/components/QuotaOffer/index.d.ts +4 -0
- package/dist/components/QuotaOffer/quota-offer-state.d.ts +22 -0
- package/dist/components/QuotaOffer/quota-offer-state.spec.d.ts +1 -0
- package/dist/components/QuotaOffer/quota-phrase-coverage.spec.d.ts +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/cookie-consent.js +1 -1
- package/dist/hooks/use-rich-intl.hook.d.ts +148 -24
- package/dist/{index-BpTqeeVe.js → index-B0lxXG3V.js} +2 -2
- package/dist/{index-BRQYDNh_.js → index-B0rNXjqk.js} +2 -2
- package/dist/{index-BiQ0ye2m.js → index-BNOPf_F-.js} +4 -4
- package/dist/{index-BCA5Vod2.js → index-BZU53M4F.js} +2 -2
- package/dist/{index-CVuiuPPp.js → index-Bc6q5tgW.js} +3 -3
- package/dist/{index-DqDs98uV.js → index-BgB2t_vW.js} +2 -2
- package/dist/{index-Cu91rx6k.js → index-Bitv-cLi.js} +2 -2
- package/dist/{index-JGgjUuXU.js → index-ByVuN6Mr.js} +2 -2
- package/dist/{index-CJ8p6-bx.js → index-CThyOnM4.js} +2 -2
- package/dist/{index-CudQjfps.js → index-CVGiu-Ln.js} +19839 -19460
- package/dist/{index-C_0jzWjy.js → index-CyG_-n_B.js} +2 -2
- package/dist/{index-DXqgg-Cv.js → index-DHh40uSj.js} +4 -4
- package/dist/{index-dAuS9qT4.js → index-DK3lwpDI.js} +2 -2
- package/dist/{index-nWr1HQ7I.js → index-DMgHH-A4.js} +3 -3
- package/dist/{index-51K14Eyc.js → index-DYV2UrqE.js} +1 -1
- package/dist/{index-gauug9Au.js → index-DoPEZ7GY.js} +2 -2
- package/dist/{index-CyNoPuDN.js → index-DzD3M5Tx.js} +4 -4
- package/dist/{index-Sp7tyFRo.js → index-_PrbB7JI.js} +3 -3
- package/dist/{index-LEMTpBLd.js → index-fnNHE2Vv.js} +3 -3
- package/dist/{index-CsAh2Ik2.js → index-h9klFGp5.js} +2 -2
- package/dist/{index-Dj8R-rAN.js → index-pV_M_YnB.js} +2 -2
- package/dist/{index-DuMysSyV.js → index-yUdqFdtk.js} +2 -2
- package/dist/index.js +234 -223
- package/dist/translations/en.d.ts +50 -12
- package/dist/translations/fr.d.ts +50 -12
- package/dist/translations/vocabulaire-client.spec.d.ts +1 -0
- package/package.json +5 -3
- package/vitest.config.ts +5 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuotaGaugeInput } from './gauge-segments';
|
|
3
|
+
export interface QuotaMarker {
|
|
4
|
+
kind: 'threshold' | 'included' | 'ceiling';
|
|
5
|
+
value: number;
|
|
6
|
+
onAction?: () => void;
|
|
7
|
+
}
|
|
8
|
+
export interface AbyssQuotaGaugeProps extends QuotaGaugeInput {
|
|
9
|
+
markers?: QuotaMarker[];
|
|
10
|
+
formatValue?: (value: number) => string;
|
|
11
|
+
height?: number;
|
|
12
|
+
}
|
|
13
|
+
export declare const AbyssQuotaGauge: React.FC<AbyssQuotaGaugeProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare enum QuotaSegmentKind {
|
|
2
|
+
USED_INCLUDED = "USED_INCLUDED",
|
|
3
|
+
USED_OVERAGE = "USED_OVERAGE",
|
|
4
|
+
FREE_INCLUDED = "FREE_INCLUDED",
|
|
5
|
+
FREE_OVERAGE = "FREE_OVERAGE"
|
|
6
|
+
}
|
|
7
|
+
export interface QuotaSegment {
|
|
8
|
+
kind: QuotaSegmentKind;
|
|
9
|
+
from: number;
|
|
10
|
+
to: number;
|
|
11
|
+
ratio: number;
|
|
12
|
+
}
|
|
13
|
+
export interface QuotaAxis {
|
|
14
|
+
max: number;
|
|
15
|
+
segments: QuotaSegment[];
|
|
16
|
+
overageDisallowed: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface QuotaGaugeInput {
|
|
19
|
+
current: number;
|
|
20
|
+
includedLimit: number;
|
|
21
|
+
ceiling: number | null;
|
|
22
|
+
}
|
|
23
|
+
export declare const buildQuotaAxis: ({ current, includedLimit, ceiling, }: QuotaGaugeInput) => QuotaAxis;
|
|
24
|
+
export declare const markerRatio: (value: number | null, axis: QuotaAxis) => number | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { AbyssQuotaGauge } from './AbyssQuotaGauge.component';
|
|
2
|
+
export type { AbyssQuotaGaugeProps, QuotaMarker, } from './AbyssQuotaGauge.component';
|
|
3
|
+
export { BUBBLE_MAX_WIDTH, placeBubble } from './bubble-placement';
|
|
4
|
+
export type { BubblePlacement } from './bubble-placement';
|
|
5
|
+
export { QuotaSegmentKind, buildQuotaAxis, markerRatio, } from './gauge-segments';
|
|
6
|
+
export type { QuotaAxis, QuotaSegment, QuotaGaugeInput, } from './gauge-segments';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { QuotaMarker } from '../QuotaGauge';
|
|
3
|
+
import { QuotaOfferInput } from './quota-offer-state';
|
|
4
|
+
export interface QuotaOfferBranch {
|
|
5
|
+
kind: 'extension' | 'pack' | 'overage' | 'ceiling' | 'unlock';
|
|
6
|
+
price: string | null;
|
|
7
|
+
lot?: number;
|
|
8
|
+
onSelect?: () => void;
|
|
9
|
+
}
|
|
10
|
+
export interface AbyssQuotaOfferProps extends QuotaOfferInput {
|
|
11
|
+
unit: string;
|
|
12
|
+
metricKey: string;
|
|
13
|
+
branches: QuotaOfferBranch[];
|
|
14
|
+
variant?: 'compact' | 'expanded';
|
|
15
|
+
markers?: QuotaMarker[];
|
|
16
|
+
formatValue?: (value: number) => string;
|
|
17
|
+
serviceKey: string;
|
|
18
|
+
billingBaseUrl?: string;
|
|
19
|
+
organizationId?: string;
|
|
20
|
+
returnUrl?: string;
|
|
21
|
+
onNavigateToBilling?: () => void;
|
|
22
|
+
}
|
|
23
|
+
export declare const AbyssQuotaOffer: React.FC<AbyssQuotaOfferProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { AbyssQuotaOffer } from './AbyssQuotaOffer.component';
|
|
2
|
+
export type { AbyssQuotaOfferProps, QuotaOfferBranch, } from './AbyssQuotaOffer.component';
|
|
3
|
+
export { QuotaOfferState, deriveQuotaOfferState, offersAction, shouldSuggestModule, } from './quota-offer-state';
|
|
4
|
+
export type { QuotaOfferInput } from './quota-offer-state';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare enum QuotaOfferState {
|
|
2
|
+
HEALTHY = "HEALTHY",
|
|
3
|
+
APPROACHING = "APPROACHING",
|
|
4
|
+
LIMIT_REACHED = "LIMIT_REACHED",
|
|
5
|
+
LIMIT_REACHED_NO_OVERAGE = "LIMIT_REACHED_NO_OVERAGE",
|
|
6
|
+
IN_OVERAGE = "IN_OVERAGE",
|
|
7
|
+
CEILING_REACHED = "CEILING_REACHED",
|
|
8
|
+
SETTING = "SETTING",
|
|
9
|
+
SUSPENDED_BY_PLAN = "SUSPENDED_BY_PLAN"
|
|
10
|
+
}
|
|
11
|
+
export interface QuotaOfferInput {
|
|
12
|
+
current: number;
|
|
13
|
+
includedLimit: number;
|
|
14
|
+
ceiling: number | null;
|
|
15
|
+
alertThreshold: number;
|
|
16
|
+
isSetting: boolean;
|
|
17
|
+
moduleSuspendedByPlan: boolean;
|
|
18
|
+
lotSize: number | null;
|
|
19
|
+
}
|
|
20
|
+
export declare const deriveQuotaOfferState: ({ current, includedLimit, ceiling, alertThreshold, isSetting, moduleSuspendedByPlan, }: QuotaOfferInput) => QuotaOfferState;
|
|
21
|
+
export declare const offersAction: (state: QuotaOfferState) => boolean;
|
|
22
|
+
export declare const shouldSuggestModule: (current: number, includedLimit: number, lotSize: number | null) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/cookie-consent.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as s, c as a, C as n, a as i, R as C, V as t, d as r, f as k, r as c, e as A, u as l, b, w as d } from "./CookieConsentSettings.component-
|
|
1
|
+
import { A as s, c as a, C as n, a as i, R as C, V as t, d as r, f as k, r as c, e as A, u as l, b, w as d } from "./CookieConsentSettings.component-C-P3Slsp.js";
|
|
2
2
|
export {
|
|
3
3
|
s as AbyssCookieConsentProvider,
|
|
4
4
|
a as COOKIE_NAME,
|
|
@@ -202,6 +202,30 @@ export declare const translations: {
|
|
|
202
202
|
title: string;
|
|
203
203
|
content: string;
|
|
204
204
|
};
|
|
205
|
+
"internal-ticket-created": {
|
|
206
|
+
title: string;
|
|
207
|
+
content: string;
|
|
208
|
+
};
|
|
209
|
+
"internal-ticket-section-without-agents": {
|
|
210
|
+
title: string;
|
|
211
|
+
content: string;
|
|
212
|
+
};
|
|
213
|
+
"internal-ticket-status-changed": {
|
|
214
|
+
title: string;
|
|
215
|
+
content: string;
|
|
216
|
+
};
|
|
217
|
+
"internal-ticket-new-message": {
|
|
218
|
+
title: string;
|
|
219
|
+
content: string;
|
|
220
|
+
};
|
|
221
|
+
"internal-ticket-mention": {
|
|
222
|
+
title: string;
|
|
223
|
+
content: string;
|
|
224
|
+
};
|
|
225
|
+
"internal-ticket-assigned": {
|
|
226
|
+
title: string;
|
|
227
|
+
content: string;
|
|
228
|
+
};
|
|
205
229
|
};
|
|
206
230
|
};
|
|
207
231
|
};
|
|
@@ -421,6 +445,55 @@ export declare const translations: {
|
|
|
421
445
|
};
|
|
422
446
|
};
|
|
423
447
|
};
|
|
448
|
+
'quota-phrase': {
|
|
449
|
+
held: string;
|
|
450
|
+
monthly: string;
|
|
451
|
+
setting: string;
|
|
452
|
+
};
|
|
453
|
+
'quota-offer': {
|
|
454
|
+
state: {
|
|
455
|
+
APPROACHING: string;
|
|
456
|
+
LIMIT_REACHED: string;
|
|
457
|
+
LIMIT_REACHED_NO_OVERAGE: string;
|
|
458
|
+
IN_OVERAGE: string;
|
|
459
|
+
CEILING_REACHED: string;
|
|
460
|
+
SETTING: string;
|
|
461
|
+
SUSPENDED_BY_PLAN: string;
|
|
462
|
+
};
|
|
463
|
+
branch: {
|
|
464
|
+
extension: string;
|
|
465
|
+
pack: string;
|
|
466
|
+
overage: string;
|
|
467
|
+
ceiling: string;
|
|
468
|
+
unlock: string;
|
|
469
|
+
};
|
|
470
|
+
'overage-explained': string;
|
|
471
|
+
'saving-hint': string;
|
|
472
|
+
'price-unavailable': string;
|
|
473
|
+
'go-to-billing': string;
|
|
474
|
+
dismiss: string;
|
|
475
|
+
};
|
|
476
|
+
'quota-gauge': {
|
|
477
|
+
segment: {
|
|
478
|
+
'used-included': string;
|
|
479
|
+
'used-overage': string;
|
|
480
|
+
'free-included': string;
|
|
481
|
+
'free-overage': string;
|
|
482
|
+
};
|
|
483
|
+
marker: {
|
|
484
|
+
threshold: string;
|
|
485
|
+
included: string;
|
|
486
|
+
ceiling: string;
|
|
487
|
+
'threshold-hint': string;
|
|
488
|
+
'included-hint': string;
|
|
489
|
+
'ceiling-hint': string;
|
|
490
|
+
'ceiling-action': string;
|
|
491
|
+
'included-action': string;
|
|
492
|
+
};
|
|
493
|
+
'overage-disallowed': string;
|
|
494
|
+
unlimited: string;
|
|
495
|
+
'of-max': string;
|
|
496
|
+
};
|
|
424
497
|
'quota-reached': {
|
|
425
498
|
title: string;
|
|
426
499
|
description: string;
|
|
@@ -445,20 +518,17 @@ export declare const translations: {
|
|
|
445
518
|
MEMBERS_COUNT: string;
|
|
446
519
|
TEAM_COUNT: string;
|
|
447
520
|
API_KEYS_COUNT: string;
|
|
448
|
-
STORAGE_GB: string;
|
|
449
521
|
FILES_COUNT: string;
|
|
450
522
|
PRESIGNED_URLS: string;
|
|
451
523
|
BANDWIDTH_GB: string;
|
|
452
524
|
LOG_EVENTS: string;
|
|
453
525
|
RETENTION_DAYS: string;
|
|
454
526
|
APPLICATIONS: string;
|
|
455
|
-
CLOUD_STORAGE_GB: string;
|
|
456
527
|
CLOUD_FILES_COUNT: string;
|
|
457
528
|
CRYPT_MAX_FILE_SIZE_MB: string;
|
|
458
529
|
CRYPT_ENCRYPTIONS_MONTH: string;
|
|
459
530
|
FORM_SUBMISSIONS_MONTH: string;
|
|
460
531
|
FORM_ALLOW_DOCUMENTS: string;
|
|
461
|
-
FORM_DOCUMENTS_STORAGE_GB: string;
|
|
462
532
|
TOOLS_DRAW_COUNT: string;
|
|
463
533
|
TOOLS_BOARD_COUNT: string;
|
|
464
534
|
TOOLS_ATLAS_COUNT: string;
|
|
@@ -468,12 +538,7 @@ export declare const translations: {
|
|
|
468
538
|
MONITOR_WEBHOOK_INVOCATIONS_MONTH: string;
|
|
469
539
|
SPOTLIGHT_PAGES_COUNT: string;
|
|
470
540
|
SPOTLIGHT_PAGE_VIEWS_MONTH: string;
|
|
471
|
-
TRAINING_PROGRAMS_COUNT: string;
|
|
472
|
-
TRAINING_SESSIONS_MONTH: string;
|
|
473
|
-
TRAINING_TEMPLATES_COUNT: string;
|
|
474
|
-
TRAINING_CUSTOM_EXERCISES_COUNT: string;
|
|
475
541
|
MEMORIES_EVENTS_COUNT: string;
|
|
476
|
-
MEMORIES_MEDIA_STORAGE_GB: string;
|
|
477
542
|
ACCOUNT_STORAGE_GB: string;
|
|
478
543
|
ACCOUNT_AV_SCAN_UNITS: string;
|
|
479
544
|
TOOLS_EXTRACTION: string;
|
|
@@ -1074,15 +1139,12 @@ export declare const translations: {
|
|
|
1074
1139
|
LOG_EVENTS: string;
|
|
1075
1140
|
APPLICATIONS: string;
|
|
1076
1141
|
RETENTION_DAYS: string;
|
|
1077
|
-
STORAGE_GB: string;
|
|
1078
1142
|
FILES_COUNT: string;
|
|
1079
1143
|
PRESIGNED_URLS: string;
|
|
1080
1144
|
BANDWIDTH_GB: string;
|
|
1081
|
-
CLOUD_STORAGE_GB: string;
|
|
1082
1145
|
};
|
|
1083
1146
|
'account-status': {
|
|
1084
1147
|
ACTIVE: string;
|
|
1085
|
-
CANCELLED: string;
|
|
1086
1148
|
};
|
|
1087
1149
|
'invoice-status': {
|
|
1088
1150
|
PAID: string;
|
|
@@ -1108,6 +1170,7 @@ export declare const translations: {
|
|
|
1108
1170
|
STRIPE_PURCHASE: string;
|
|
1109
1171
|
INVOICE_DEDUCTION: string;
|
|
1110
1172
|
ADMIN_ADJUSTMENT: string;
|
|
1173
|
+
STRIPE_REFUND: string;
|
|
1111
1174
|
};
|
|
1112
1175
|
plan: {
|
|
1113
1176
|
freemium: {
|
|
@@ -1138,7 +1201,6 @@ export declare const translations: {
|
|
|
1138
1201
|
'plan-feature': {
|
|
1139
1202
|
PROJECTS_COUNT: string;
|
|
1140
1203
|
MEMBERS_COUNT: string;
|
|
1141
|
-
STORAGE_GB: string;
|
|
1142
1204
|
LOG_EVENTS: string;
|
|
1143
1205
|
APPLICATIONS: string;
|
|
1144
1206
|
RETENTION_DAYS: string;
|
|
@@ -1596,6 +1658,30 @@ export declare const translations: {
|
|
|
1596
1658
|
title: string;
|
|
1597
1659
|
content: string;
|
|
1598
1660
|
};
|
|
1661
|
+
"internal-ticket-created": {
|
|
1662
|
+
title: string;
|
|
1663
|
+
content: string;
|
|
1664
|
+
};
|
|
1665
|
+
"internal-ticket-section-without-agents": {
|
|
1666
|
+
title: string;
|
|
1667
|
+
content: string;
|
|
1668
|
+
};
|
|
1669
|
+
"internal-ticket-status-changed": {
|
|
1670
|
+
title: string;
|
|
1671
|
+
content: string;
|
|
1672
|
+
};
|
|
1673
|
+
"internal-ticket-new-message": {
|
|
1674
|
+
title: string;
|
|
1675
|
+
content: string;
|
|
1676
|
+
};
|
|
1677
|
+
"internal-ticket-mention": {
|
|
1678
|
+
title: string;
|
|
1679
|
+
content: string;
|
|
1680
|
+
};
|
|
1681
|
+
"internal-ticket-assigned": {
|
|
1682
|
+
title: string;
|
|
1683
|
+
content: string;
|
|
1684
|
+
};
|
|
1599
1685
|
};
|
|
1600
1686
|
};
|
|
1601
1687
|
};
|
|
@@ -1815,6 +1901,55 @@ export declare const translations: {
|
|
|
1815
1901
|
};
|
|
1816
1902
|
};
|
|
1817
1903
|
};
|
|
1904
|
+
'quota-phrase': {
|
|
1905
|
+
held: string;
|
|
1906
|
+
monthly: string;
|
|
1907
|
+
setting: string;
|
|
1908
|
+
};
|
|
1909
|
+
'quota-offer': {
|
|
1910
|
+
state: {
|
|
1911
|
+
APPROACHING: string;
|
|
1912
|
+
LIMIT_REACHED: string;
|
|
1913
|
+
LIMIT_REACHED_NO_OVERAGE: string;
|
|
1914
|
+
IN_OVERAGE: string;
|
|
1915
|
+
CEILING_REACHED: string;
|
|
1916
|
+
SETTING: string;
|
|
1917
|
+
SUSPENDED_BY_PLAN: string;
|
|
1918
|
+
};
|
|
1919
|
+
branch: {
|
|
1920
|
+
extension: string;
|
|
1921
|
+
pack: string;
|
|
1922
|
+
overage: string;
|
|
1923
|
+
ceiling: string;
|
|
1924
|
+
unlock: string;
|
|
1925
|
+
};
|
|
1926
|
+
'overage-explained': string;
|
|
1927
|
+
'saving-hint': string;
|
|
1928
|
+
'price-unavailable': string;
|
|
1929
|
+
'go-to-billing': string;
|
|
1930
|
+
dismiss: string;
|
|
1931
|
+
};
|
|
1932
|
+
'quota-gauge': {
|
|
1933
|
+
segment: {
|
|
1934
|
+
'used-included': string;
|
|
1935
|
+
'used-overage': string;
|
|
1936
|
+
'free-included': string;
|
|
1937
|
+
'free-overage': string;
|
|
1938
|
+
};
|
|
1939
|
+
marker: {
|
|
1940
|
+
threshold: string;
|
|
1941
|
+
included: string;
|
|
1942
|
+
ceiling: string;
|
|
1943
|
+
'threshold-hint': string;
|
|
1944
|
+
'included-hint': string;
|
|
1945
|
+
'ceiling-hint': string;
|
|
1946
|
+
'ceiling-action': string;
|
|
1947
|
+
'included-action': string;
|
|
1948
|
+
};
|
|
1949
|
+
'overage-disallowed': string;
|
|
1950
|
+
unlimited: string;
|
|
1951
|
+
'of-max': string;
|
|
1952
|
+
};
|
|
1818
1953
|
'quota-reached': {
|
|
1819
1954
|
title: string;
|
|
1820
1955
|
description: string;
|
|
@@ -1839,20 +1974,17 @@ export declare const translations: {
|
|
|
1839
1974
|
MEMBERS_COUNT: string;
|
|
1840
1975
|
TEAM_COUNT: string;
|
|
1841
1976
|
API_KEYS_COUNT: string;
|
|
1842
|
-
STORAGE_GB: string;
|
|
1843
1977
|
FILES_COUNT: string;
|
|
1844
1978
|
PRESIGNED_URLS: string;
|
|
1845
1979
|
BANDWIDTH_GB: string;
|
|
1846
1980
|
LOG_EVENTS: string;
|
|
1847
1981
|
RETENTION_DAYS: string;
|
|
1848
1982
|
APPLICATIONS: string;
|
|
1849
|
-
CLOUD_STORAGE_GB: string;
|
|
1850
1983
|
CLOUD_FILES_COUNT: string;
|
|
1851
1984
|
CRYPT_MAX_FILE_SIZE_MB: string;
|
|
1852
1985
|
CRYPT_ENCRYPTIONS_MONTH: string;
|
|
1853
1986
|
FORM_SUBMISSIONS_MONTH: string;
|
|
1854
1987
|
FORM_ALLOW_DOCUMENTS: string;
|
|
1855
|
-
FORM_DOCUMENTS_STORAGE_GB: string;
|
|
1856
1988
|
TOOLS_DRAW_COUNT: string;
|
|
1857
1989
|
TOOLS_BOARD_COUNT: string;
|
|
1858
1990
|
TOOLS_ATLAS_COUNT: string;
|
|
@@ -1862,12 +1994,7 @@ export declare const translations: {
|
|
|
1862
1994
|
MONITOR_WEBHOOK_INVOCATIONS_MONTH: string;
|
|
1863
1995
|
SPOTLIGHT_PAGES_COUNT: string;
|
|
1864
1996
|
SPOTLIGHT_PAGE_VIEWS_MONTH: string;
|
|
1865
|
-
TRAINING_PROGRAMS_COUNT: string;
|
|
1866
|
-
TRAINING_SESSIONS_MONTH: string;
|
|
1867
|
-
TRAINING_TEMPLATES_COUNT: string;
|
|
1868
|
-
TRAINING_CUSTOM_EXERCISES_COUNT: string;
|
|
1869
1997
|
MEMORIES_EVENTS_COUNT: string;
|
|
1870
|
-
MEMORIES_MEDIA_STORAGE_GB: string;
|
|
1871
1998
|
ACCOUNT_STORAGE_GB: string;
|
|
1872
1999
|
ACCOUNT_AV_SCAN_UNITS: string;
|
|
1873
2000
|
TOOLS_EXTRACTION: string;
|
|
@@ -2468,15 +2595,12 @@ export declare const translations: {
|
|
|
2468
2595
|
LOG_EVENTS: string;
|
|
2469
2596
|
APPLICATIONS: string;
|
|
2470
2597
|
RETENTION_DAYS: string;
|
|
2471
|
-
STORAGE_GB: string;
|
|
2472
2598
|
FILES_COUNT: string;
|
|
2473
2599
|
PRESIGNED_URLS: string;
|
|
2474
2600
|
BANDWIDTH_GB: string;
|
|
2475
|
-
CLOUD_STORAGE_GB: string;
|
|
2476
2601
|
};
|
|
2477
2602
|
'account-status': {
|
|
2478
2603
|
ACTIVE: string;
|
|
2479
|
-
CANCELLED: string;
|
|
2480
2604
|
};
|
|
2481
2605
|
'invoice-status': {
|
|
2482
2606
|
PAID: string;
|
|
@@ -2502,6 +2626,7 @@ export declare const translations: {
|
|
|
2502
2626
|
STRIPE_PURCHASE: string;
|
|
2503
2627
|
INVOICE_DEDUCTION: string;
|
|
2504
2628
|
ADMIN_ADJUSTMENT: string;
|
|
2629
|
+
STRIPE_REFUND: string;
|
|
2505
2630
|
};
|
|
2506
2631
|
plan: {
|
|
2507
2632
|
freemium: {
|
|
@@ -2532,7 +2657,6 @@ export declare const translations: {
|
|
|
2532
2657
|
'plan-feature': {
|
|
2533
2658
|
PROJECTS_COUNT: string;
|
|
2534
2659
|
MEMBERS_COUNT: string;
|
|
2535
|
-
STORAGE_GB: string;
|
|
2536
2660
|
LOG_EVENTS: string;
|
|
2537
2661
|
APPLICATIONS: string;
|
|
2538
2662
|
RETENTION_DAYS: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as s, E as R, a as Y, C as x } from "./index-
|
|
2
|
-
import { s as w, t as O, a as d, n as X, L as k, b as h, d as f, i as u, f as y, c as l, j as g, m as j, g as U, e as G, o as b, I as Z } from "./index-
|
|
1
|
+
import { L as s, E as R, a as Y, C as x } from "./index-DYV2UrqE.js";
|
|
2
|
+
import { s as w, t as O, a as d, n as X, L as k, b as h, d as f, i as u, f as y, c as l, j as g, m as j, g as U, e as G, o as b, I as Z } from "./index-CVGiu-Ln.js";
|
|
3
3
|
const _ = 177, q = 179, E = 184, v = 12, C = 13, D = 17, z = 20, F = 25, B = 53, N = 95, I = 142, L = 144, A = 145, J = 148, M = 10, H = 13, K = 32, OO = 9, $ = 47, QO = 41, eO = 125, aO = new R((Q, e) => {
|
|
4
4
|
for (let n = 0, a = Q.next; (e.context && (a < 0 || a == M || a == H || a == $ && Q.peek(n + 1) == $) || a == QO || a == eO) && Q.acceptToken(_), !(a != K && a != OO); )
|
|
5
5
|
a = Q.peek(++n);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a as O, L as r, i as b, f as s, s as a, j as t, g as P, t as e } from "./index-
|
|
2
|
-
import { L as n } from "./index-
|
|
1
|
+
import { a as O, L as r, i as b, f as s, s as a, j as t, g as P, t as e } from "./index-CVGiu-Ln.js";
|
|
2
|
+
import { L as n } from "./index-DYV2UrqE.js";
|
|
3
3
|
const S = { __proto__: null, anyref: 34, dataref: 34, eqref: 34, externref: 34, i31ref: 34, funcref: 34, i8: 34, i16: 34, i32: 34, i64: 34, f32: 34, f64: 34 }, i = /* @__PURE__ */ n.deserialize({
|
|
4
4
|
version: 14,
|
|
5
5
|
states: "!^Q]QPOOOqQPO'#CbOOQO'#Cd'#CdOOQO'#Cl'#ClOOQO'#Ch'#ChQ]QPOOOOQO,58|,58|OxQPO,58|OOQO-E6f-E6fOOQO1G.h1G.h",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { a as p, L as u, p as n, s as l, t as e } from "./index-
|
|
2
|
-
import { html as m } from "./index-
|
|
3
|
-
import { javascriptLanguage as b } from "./index-
|
|
4
|
-
import { L as S, a as r } from "./index-
|
|
1
|
+
import { a as p, L as u, p as n, s as l, t as e } from "./index-CVGiu-Ln.js";
|
|
2
|
+
import { html as m } from "./index-DHh40uSj.js";
|
|
3
|
+
import { javascriptLanguage as b } from "./index-BgB2t_vW.js";
|
|
4
|
+
import { L as S, a as r } from "./index-DYV2UrqE.js";
|
|
5
5
|
const c = /* @__PURE__ */ S.deserialize({
|
|
6
6
|
version: 14,
|
|
7
7
|
states: "%pOVOWOOObQPOOOpOSO'#C_OOOO'#Cp'#CpQVOWOOQxQPOOO!TQQOOQ!YQPOOOOOO,58y,58yO!_OSO,58yOOOO-E6n-E6nO!dQQO'#CqQ{QPOOO!iQPOOQ{QPOOO!qQPOOOOOO1G.e1G.eOOQO,59],59]OOQO-E6o-E6oO!yOpO'#CiO#RO`O'#CiQOQPOOO#ZO#tO'#CmO#fO!bO'#CmOOQO,59T,59TO#qOpO,59TO#vO`O,59TOOOO'#Cr'#CrO#{O#tO,59XOOQO,59X,59XOOOO'#Cs'#CsO$WO!bO,59XOOQO1G.o1G.oOOOO-E6p-E6pOOQO1G.s1G.sOOOO-E6q-E6q",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as w, E as p, a as Y } from "./index-
|
|
2
|
-
import { s as x, t as r, a as q, L as j, e as G, i as R, f as T, c as E, g as _, o as C, I as U } from "./index-
|
|
1
|
+
import { L as w, E as p, a as Y } from "./index-DYV2UrqE.js";
|
|
2
|
+
import { s as x, t as r, a as q, L as j, e as G, i as R, f as T, c as E, g as _, o as C, I as U } from "./index-CVGiu-Ln.js";
|
|
3
3
|
const V = 122, g = 1, Z = 123, W = 124, b = 2, N = 125, I = 3, F = 4, X = [
|
|
4
4
|
9,
|
|
5
5
|
10,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { E as d, L as y, h as b, a as _, p as g, e as u, s as S, i as T, f as k, j as W, t } from "./index-
|
|
2
|
-
import { html as j } from "./index-
|
|
3
|
-
import { L as X, E as p } from "./index-
|
|
1
|
+
import { E as d, L as y, h as b, a as _, p as g, e as u, s as S, i as T, f as k, j as W, t } from "./index-CVGiu-Ln.js";
|
|
2
|
+
import { html as j } from "./index-DHh40uSj.js";
|
|
3
|
+
import { L as X, E as p } from "./index-DYV2UrqE.js";
|
|
4
4
|
const Y = 1, U = 2, G = 3, R = 179, z = 4, v = 180, x = 5, Z = 181, V = 6;
|
|
5
5
|
function E(O) {
|
|
6
6
|
return O >= 65 && O <= 90 || O >= 97 && O <= 122;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as M, E as X, a as h, C as E } from "./index-
|
|
2
|
-
import { s as A, t as i, E as C, a as J, n as o, L as I, b as B, d as D, e as u, h as K, i as N, f as H, c as g, j as F, m as OO, g as aO, J as j, x as QO, o as iO, I as eO } from "./index-
|
|
1
|
+
import { L as M, E as X, a as h, C as E } from "./index-DYV2UrqE.js";
|
|
2
|
+
import { s as A, t as i, E as C, a as J, n as o, L as I, b as B, d as D, e as u, h as K, i as N, f as H, c as g, j as F, m as OO, g as aO, J as j, x as QO, o as iO, I as eO } from "./index-CVGiu-Ln.js";
|
|
3
3
|
const $O = 315, rO = 316, v = 1, tO = 2, lO = 3, nO = 4, oO = 317, sO = 319, ZO = 320, PO = 5, pO = 6, cO = 0, q = [
|
|
4
4
|
9,
|
|
5
5
|
10,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as G, E as A, C as N } from "./index-
|
|
2
|
-
import { s as I, t as p, E as Y, a as j, L as U, e as k, h as Z, i as B, f as D, H as M } from "./index-
|
|
1
|
+
import { L as G, E as A, C as N } from "./index-DYV2UrqE.js";
|
|
2
|
+
import { s as I, t as p, E as Y, a as j, L as U, e as k, h as Z, i as B, f as D, H as M } from "./index-CVGiu-Ln.js";
|
|
3
3
|
const h = 1, F = 2, L = 3, H = 4, K = 5, J = 36, ee = 37, te = 38, Oe = 11, oe = 13;
|
|
4
4
|
function re(e) {
|
|
5
5
|
return e == 45 || e == 46 || e == 58 || e >= 65 && e <= 90 || e == 95 || e >= 97 && e <= 122 || e >= 161;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as s } from "./index-
|
|
2
|
-
import { s as n, t as r, a as o, L as P, i as Q, f as i, c as a, g as c } from "./index-
|
|
1
|
+
import { L as s } from "./index-DYV2UrqE.js";
|
|
2
|
+
import { s as n, t as r, a as o, L as P, i as Q, f as i, c as a, g as c } from "./index-CVGiu-Ln.js";
|
|
3
3
|
const g = n({
|
|
4
4
|
String: r.string,
|
|
5
5
|
Number: r.number,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as D, E as h, C as L } from "./index-
|
|
2
|
-
import { s as H, t as n, b as B, a as K, L as M, e as OO, i as eO, f as iO, j as f, g as aO, o as nO, I as rO, d as QO, n as d } from "./index-
|
|
1
|
+
import { L as D, E as h, C as L } from "./index-DYV2UrqE.js";
|
|
2
|
+
import { s as H, t as n, b as B, a as K, L as M, e as OO, i as eO, f as iO, j as f, g as aO, o as nO, I as rO, d as QO, n as d } from "./index-CVGiu-Ln.js";
|
|
3
3
|
const tO = 1, Z = 194, j = 195, oO = 196, x = 197, dO = 198, sO = 199, lO = 200, TO = 2, E = 3, u = 201, SO = 24, pO = 25, qO = 49, gO = 50, PO = 55, mO = 56, $O = 57, hO = 59, cO = 60, fO = 61, XO = 62, yO = 63, zO = 65, WO = 238, vO = 71, RO = 241, kO = 242, _O = 243, xO = 244, uO = 245, UO = 246, bO = 247, VO = 248, Y = 72, GO = 249, wO = 250, ZO = 251, jO = 252, EO = 253, YO = 254, FO = 255, CO = 256, JO = 73, AO = 77, IO = 263, NO = 112, DO = 130, LO = 151, HO = 152, BO = 155, p = 10, q = 13, k = 32, c = 9, _ = 35, KO = 40, MO = 46, R = 123, U = 125, F = 39, C = 34, b = 92, Oe = 111, ee = 120, ie = 78, ae = 117, ne = 85, re = /* @__PURE__ */ new Set([
|
|
4
4
|
pO,
|
|
5
5
|
qO,
|