@plyaz/types 1.14.12 → 1.15.1
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/campaign/enums.d.ts +50 -0
- package/dist/campaign/index.cjs +82 -0
- package/dist/campaign/index.cjs.map +1 -0
- package/dist/campaign/index.d.ts +3 -0
- package/dist/campaign/index.js +79 -0
- package/dist/campaign/index.js.map +1 -0
- package/dist/campaign/schemas.d.ts +28 -0
- package/dist/campaign/types.d.ts +59 -0
- package/dist/db/config.types.d.ts +1 -1
- package/dist/db/index.cjs.map +1 -1
- package/dist/db/index.js.map +1 -1
- package/dist/index.cjs +186 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +179 -1
- package/dist/index.js.map +1 -1
- package/dist/user/enums.d.ts +105 -0
- package/dist/user/index.cjs +122 -0
- package/dist/user/index.cjs.map +1 -0
- package/dist/user/index.d.ts +3 -0
- package/dist/user/index.js +115 -0
- package/dist/user/index.js.map +1 -0
- package/dist/user/schemas.d.ts +55 -0
- package/dist/user/types.d.ts +59 -0
- package/package.json +11 -1
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ export type * from './translations';
|
|
|
13
13
|
export type * from './features';
|
|
14
14
|
export type * from './testing';
|
|
15
15
|
export type * from './lib';
|
|
16
|
+
export * from './user';
|
|
17
|
+
export * from './campaign';
|
|
16
18
|
export type * from './logger/types';
|
|
17
19
|
export * from './logger/enums';
|
|
18
20
|
export * from './payments';
|
package/dist/index.js
CHANGED
|
@@ -3417,6 +3417,184 @@ var CHAIN_ID = {
|
|
|
3417
3417
|
BaseSepolia: 84532
|
|
3418
3418
|
};
|
|
3419
3419
|
|
|
3420
|
+
// src/user/enums.ts
|
|
3421
|
+
var COUNTRIES = {
|
|
3422
|
+
unitedKingdom: "unitedKingdom",
|
|
3423
|
+
germany: "germany",
|
|
3424
|
+
france: "france",
|
|
3425
|
+
spain: "spain",
|
|
3426
|
+
italy: "italy",
|
|
3427
|
+
netherlands: "netherlands",
|
|
3428
|
+
belgium: "belgium",
|
|
3429
|
+
austria: "austria",
|
|
3430
|
+
switzerland: "switzerland",
|
|
3431
|
+
sweden: "sweden",
|
|
3432
|
+
norway: "norway",
|
|
3433
|
+
denmark: "denmark",
|
|
3434
|
+
finland: "finland",
|
|
3435
|
+
portugal: "portugal",
|
|
3436
|
+
ireland: "ireland",
|
|
3437
|
+
poland: "poland",
|
|
3438
|
+
czechRepublic: "czechRepublic",
|
|
3439
|
+
hungary: "hungary",
|
|
3440
|
+
romania: "romania",
|
|
3441
|
+
bulgaria: "bulgaria",
|
|
3442
|
+
croatia: "croatia",
|
|
3443
|
+
slovenia: "slovenia",
|
|
3444
|
+
slovakia: "slovakia",
|
|
3445
|
+
estonia: "estonia",
|
|
3446
|
+
latvia: "latvia",
|
|
3447
|
+
lithuania: "lithuania",
|
|
3448
|
+
greece: "greece",
|
|
3449
|
+
cyprus: "cyprus",
|
|
3450
|
+
malta: "malta",
|
|
3451
|
+
luxembourg: "luxembourg",
|
|
3452
|
+
other: "other"
|
|
3453
|
+
};
|
|
3454
|
+
var BASIC_PROFILE_ERRORS = /* @__PURE__ */ ((BASIC_PROFILE_ERRORS2) => {
|
|
3455
|
+
BASIC_PROFILE_ERRORS2["NameMin"] = "components.BasicProfileForm.errors.nameMin";
|
|
3456
|
+
BASIC_PROFILE_ERRORS2["NameMax"] = "components.BasicProfileForm.errors.nameMax";
|
|
3457
|
+
BASIC_PROFILE_ERRORS2["EmailValid"] = "components.BasicProfileForm.errors.emailValid";
|
|
3458
|
+
BASIC_PROFILE_ERRORS2["EmailRequired"] = "components.BasicProfileForm.errors.emailRequired";
|
|
3459
|
+
BASIC_PROFILE_ERRORS2["CountryRequired"] = "components.BasicProfileForm.errors.countryRequired";
|
|
3460
|
+
BASIC_PROFILE_ERRORS2["BioMax"] = "components.BasicProfileForm.errors.bioMax";
|
|
3461
|
+
BASIC_PROFILE_ERRORS2["ProfileImageSize"] = "components.BasicProfileForm.errors.profileImageSize";
|
|
3462
|
+
BASIC_PROFILE_ERRORS2["ProfileImageTypes"] = "components.BasicProfileForm.errors.profileImageTypes";
|
|
3463
|
+
return BASIC_PROFILE_ERRORS2;
|
|
3464
|
+
})(BASIC_PROFILE_ERRORS || {});
|
|
3465
|
+
var ATHLETE_PROFILE_ERRORS = /* @__PURE__ */ ((ATHLETE_PROFILE_ERRORS2) => {
|
|
3466
|
+
ATHLETE_PROFILE_ERRORS2["DobMax"] = "components.AthleteProfileForm.errors.dobMax";
|
|
3467
|
+
ATHLETE_PROFILE_ERRORS2["DobMin"] = "components.AthleteProfileForm.errors.dobMin";
|
|
3468
|
+
ATHLETE_PROFILE_ERRORS2["HeightMin"] = "components.AthleteProfileForm.errors.heightMin";
|
|
3469
|
+
ATHLETE_PROFILE_ERRORS2["HeightMax"] = "components.AthleteProfileForm.errors.heightMax";
|
|
3470
|
+
ATHLETE_PROFILE_ERRORS2["HeightInvalid"] = "components.AthleteProfileForm.errors.heightInvalid";
|
|
3471
|
+
ATHLETE_PROFILE_ERRORS2["WeightMin"] = "components.AthleteProfileForm.errors.weightMin";
|
|
3472
|
+
ATHLETE_PROFILE_ERRORS2["WeightMax"] = "components.AthleteProfileForm.errors.weightMax";
|
|
3473
|
+
ATHLETE_PROFILE_ERRORS2["WeightInvalid"] = "components.AthleteProfileForm.errors.weightInvalid";
|
|
3474
|
+
ATHLETE_PROFILE_ERRORS2["PositionMin"] = "components.AthleteProfileForm.errors.positionMin";
|
|
3475
|
+
ATHLETE_PROFILE_ERRORS2["PositionMax"] = "components.AthleteProfileForm.errors.positionMax";
|
|
3476
|
+
ATHLETE_PROFILE_ERRORS2["TeamMin"] = "components.AthleteProfileForm.errors.teamMin";
|
|
3477
|
+
ATHLETE_PROFILE_ERRORS2["TeamMax"] = "components.AthleteProfileForm.errors.teamMax";
|
|
3478
|
+
ATHLETE_PROFILE_ERRORS2["InstagramInvalid"] = "components.AthleteProfileForm.errors.instagramInvalid";
|
|
3479
|
+
ATHLETE_PROFILE_ERRORS2["TiktokInvalid"] = "components.AthleteProfileForm.errors.tiktokInvalid";
|
|
3480
|
+
ATHLETE_PROFILE_ERRORS2["HighlightImageSize"] = "components.AthleteProfileForm.errors.highlightImageSize";
|
|
3481
|
+
ATHLETE_PROFILE_ERRORS2["HighlightImageTypes"] = "components.AthleteProfileForm.errors.highlightImageTypes";
|
|
3482
|
+
return ATHLETE_PROFILE_ERRORS2;
|
|
3483
|
+
})(ATHLETE_PROFILE_ERRORS || {});
|
|
3484
|
+
var MIN_NAME_LENGTH = 2;
|
|
3485
|
+
var MAX_NAME_LENGTH = 50;
|
|
3486
|
+
var MAX_BIO_LENGTH = 275;
|
|
3487
|
+
var basicProfileSchema = z.object({
|
|
3488
|
+
name: z.string().min(MIN_NAME_LENGTH, "components.BasicProfileForm.errors.nameMin" /* NameMin */).max(MAX_NAME_LENGTH, "components.BasicProfileForm.errors.nameMax" /* NameMax */),
|
|
3489
|
+
email: z.string().email("components.BasicProfileForm.errors.emailValid" /* EmailValid */).min(1, "components.BasicProfileForm.errors.emailRequired" /* EmailRequired */),
|
|
3490
|
+
country: z.string().min(1, "components.BasicProfileForm.errors.countryRequired" /* CountryRequired */),
|
|
3491
|
+
bio: z.string().max(MAX_BIO_LENGTH, "components.BasicProfileForm.errors.bioMax" /* BioMax */).optional(),
|
|
3492
|
+
profileImage: z.union([
|
|
3493
|
+
z.instanceof(File).refine(
|
|
3494
|
+
(file) => file.size <= 5 * 1024 * 1024,
|
|
3495
|
+
// 5MB
|
|
3496
|
+
"components.BasicProfileForm.errors.profileImageSize" /* ProfileImageSize */
|
|
3497
|
+
).refine(
|
|
3498
|
+
(file) => ["image/png", "image/jpeg", "image/jpg", "image/webp"].includes(file.type),
|
|
3499
|
+
"components.BasicProfileForm.errors.profileImageTypes" /* ProfileImageTypes */
|
|
3500
|
+
),
|
|
3501
|
+
z.string(),
|
|
3502
|
+
z.null()
|
|
3503
|
+
]).optional()
|
|
3504
|
+
});
|
|
3505
|
+
var fanProfileSchema = basicProfileSchema.extend({});
|
|
3506
|
+
var athleteProfileSchema = basicProfileSchema.extend({
|
|
3507
|
+
dateOfBirth: z.date().max(/* @__PURE__ */ new Date(), "components.AthleteProfileForm.errors.dobMax" /* DobMax */).min(new Date(1900, 0, 1), "components.AthleteProfileForm.errors.dobMin" /* DobMin */).optional(),
|
|
3508
|
+
height: z.number().min(50, "components.AthleteProfileForm.errors.heightMin" /* HeightMin */).max(300, "components.AthleteProfileForm.errors.heightMax" /* HeightMax */).optional(),
|
|
3509
|
+
weight: z.number().min(10, "components.AthleteProfileForm.errors.weightMin" /* WeightMin */).max(500, "components.AthleteProfileForm.errors.weightMax" /* WeightMax */).optional(),
|
|
3510
|
+
position: z.string().min(2, "components.AthleteProfileForm.errors.positionMin" /* PositionMin */).max(50, "components.AthleteProfileForm.errors.positionMax" /* PositionMax */).optional(),
|
|
3511
|
+
teamName: z.string().min(2, "components.AthleteProfileForm.errors.teamMin" /* TeamMin */).max(100, "components.AthleteProfileForm.errors.teamMax" /* TeamMax */).optional(),
|
|
3512
|
+
instagramHandle: z.string().regex(/^@?[a-zA-Z0-9._]{1,30}$/, "components.AthleteProfileForm.errors.instagramInvalid" /* InstagramInvalid */).optional(),
|
|
3513
|
+
tiktokHandle: z.string().regex(/^@?[a-zA-Z0-9._]{1,24}$/, "components.AthleteProfileForm.errors.tiktokInvalid" /* TiktokInvalid */).optional(),
|
|
3514
|
+
highlightImage: z.union([
|
|
3515
|
+
z.instanceof(File).refine(
|
|
3516
|
+
(file) => file.size <= 5 * 1024 * 1024,
|
|
3517
|
+
// 5MB
|
|
3518
|
+
"components.AthleteProfileForm.errors.highlightImageSize" /* HighlightImageSize */
|
|
3519
|
+
).refine(
|
|
3520
|
+
(file) => ["image/png", "image/jpeg", "image/jpg"].includes(file.type),
|
|
3521
|
+
"components.AthleteProfileForm.errors.highlightImageTypes" /* HighlightImageTypes */
|
|
3522
|
+
),
|
|
3523
|
+
z.string(),
|
|
3524
|
+
z.null()
|
|
3525
|
+
]).optional()
|
|
3526
|
+
});
|
|
3527
|
+
|
|
3528
|
+
// src/campaign/enums.ts
|
|
3529
|
+
var CREATE_CAMPAIGN_ERRORS = /* @__PURE__ */ ((CREATE_CAMPAIGN_ERRORS2) => {
|
|
3530
|
+
CREATE_CAMPAIGN_ERRORS2["TitleRequired"] = "components.CreateCampaign.Form.errors.titleRequired";
|
|
3531
|
+
CREATE_CAMPAIGN_ERRORS2["TitleMax"] = "components.CreateCampaign.Form.errors.titleMax";
|
|
3532
|
+
CREATE_CAMPAIGN_ERRORS2["SubtitleRequired"] = "components.CreateCampaign.Form.errors.subtitleRequired";
|
|
3533
|
+
CREATE_CAMPAIGN_ERRORS2["SubtitleMax"] = "components.CreateCampaign.Form.errors.subtitleMax";
|
|
3534
|
+
CREATE_CAMPAIGN_ERRORS2["CampaignImageRequired"] = "components.CreateCampaign.Form.errors.campaignImageRequired";
|
|
3535
|
+
CREATE_CAMPAIGN_ERRORS2["StartDateRequired"] = "components.CreateCampaign.Form.errors.startDateRequired";
|
|
3536
|
+
CREATE_CAMPAIGN_ERRORS2["StartDateInvalid"] = "components.CreateCampaign.Form.errors.startDateInvalid";
|
|
3537
|
+
CREATE_CAMPAIGN_ERRORS2["StartDateFuture"] = "components.CreateCampaign.Form.errors.startDateFuture";
|
|
3538
|
+
CREATE_CAMPAIGN_ERRORS2["DurationRequired"] = "components.CreateCampaign.Form.errors.durationRequired";
|
|
3539
|
+
CREATE_CAMPAIGN_ERRORS2["StoryRequired"] = "components.CreateCampaign.Form.errors.storyRequired";
|
|
3540
|
+
CREATE_CAMPAIGN_ERRORS2["StoryMax"] = "components.CreateCampaign.Form.errors.storyMax";
|
|
3541
|
+
CREATE_CAMPAIGN_ERRORS2["VideoInvalidProvider"] = "components.CreateCampaign.Form.errors.videoInvalidProvider";
|
|
3542
|
+
CREATE_CAMPAIGN_ERRORS2["FundingRequired"] = "components.CreateCampaign.Form.errors.fundingRequired";
|
|
3543
|
+
CREATE_CAMPAIGN_ERRORS2["FundingRange"] = "components.CreateCampaign.Form.errors.fundingRange";
|
|
3544
|
+
CREATE_CAMPAIGN_ERRORS2["InstagramMax"] = "components.CreateCampaign.Form.errors.instagramMax";
|
|
3545
|
+
CREATE_CAMPAIGN_ERRORS2["InstagramInvalid"] = "components.CreateCampaign.Form.errors.instagramInvalid";
|
|
3546
|
+
CREATE_CAMPAIGN_ERRORS2["TiktokMax"] = "components.CreateCampaign.Form.errors.tiktokMax";
|
|
3547
|
+
CREATE_CAMPAIGN_ERRORS2["TiktokInvalid"] = "components.CreateCampaign.Form.errors.tiktokInvalid";
|
|
3548
|
+
CREATE_CAMPAIGN_ERRORS2["YoutubeMax"] = "components.CreateCampaign.Form.errors.youtubeMax";
|
|
3549
|
+
CREATE_CAMPAIGN_ERRORS2["YoutubeInvalid"] = "components.CreateCampaign.Form.errors.youtubeInvalid";
|
|
3550
|
+
return CREATE_CAMPAIGN_ERRORS2;
|
|
3551
|
+
})(CREATE_CAMPAIGN_ERRORS || {});
|
|
3552
|
+
var formCampaignSchema = /* @__PURE__ */ __name(({ maxFunding }) => z.object({
|
|
3553
|
+
title: z.string().min(1, "components.CreateCampaign.Form.errors.titleRequired" /* TitleRequired */).max(60, "components.CreateCampaign.Form.errors.titleMax" /* TitleMax */),
|
|
3554
|
+
subtitle: z.string().min(1, "components.CreateCampaign.Form.errors.subtitleRequired" /* SubtitleRequired */).max(200, "components.CreateCampaign.Form.errors.subtitleMax" /* SubtitleMax */),
|
|
3555
|
+
campaignImage: z.any().refine((val) => val instanceof File, {
|
|
3556
|
+
message: "components.CreateCampaign.Form.errors.campaignImageRequired" /* CampaignImageRequired */
|
|
3557
|
+
}),
|
|
3558
|
+
startDate: z.date({
|
|
3559
|
+
error: "components.CreateCampaign.Form.errors.startDateRequired" /* StartDateRequired */
|
|
3560
|
+
}).refine((date) => date instanceof Date && !isNaN(date.getTime()), {
|
|
3561
|
+
message: "components.CreateCampaign.Form.errors.startDateInvalid" /* StartDateInvalid */
|
|
3562
|
+
}).refine((date) => date >= /* @__PURE__ */ new Date(), {
|
|
3563
|
+
message: "components.CreateCampaign.Form.errors.startDateFuture" /* StartDateFuture */
|
|
3564
|
+
}),
|
|
3565
|
+
duration: z.union([z.literal(30), z.literal(60), z.literal(90)]).nullable().refine((val) => val !== null, {
|
|
3566
|
+
message: "components.CreateCampaign.Form.errors.durationRequired" /* DurationRequired */
|
|
3567
|
+
}),
|
|
3568
|
+
story: z.string().min(1, "components.CreateCampaign.Form.errors.storyRequired" /* StoryRequired */).max(1e4, "components.CreateCampaign.Form.errors.storyMax" /* StoryMax */),
|
|
3569
|
+
videoHighlight: z.string().refine(
|
|
3570
|
+
(url) => {
|
|
3571
|
+
if (!url || url.trim() === "") return true;
|
|
3572
|
+
try {
|
|
3573
|
+
const urlObj = new URL(url);
|
|
3574
|
+
const hostname = urlObj.hostname.toLowerCase();
|
|
3575
|
+
return hostname.includes("youtube.com") || hostname.includes("youtu.be") || hostname.includes("tiktok.com") || hostname.includes("vimeo.com");
|
|
3576
|
+
} catch {
|
|
3577
|
+
return false;
|
|
3578
|
+
}
|
|
3579
|
+
},
|
|
3580
|
+
{
|
|
3581
|
+
message: "components.CreateCampaign.Form.errors.videoInvalidProvider" /* VideoInvalidProvider */
|
|
3582
|
+
}
|
|
3583
|
+
).optional(),
|
|
3584
|
+
fundingTarget: z.string().min(1, "components.CreateCampaign.Form.errors.fundingRequired" /* FundingRequired */).refine(
|
|
3585
|
+
(val) => {
|
|
3586
|
+
const num = Number.parseFloat(val ?? "");
|
|
3587
|
+
return !isNaN(num) && num > 0 && num <= maxFunding;
|
|
3588
|
+
},
|
|
3589
|
+
{
|
|
3590
|
+
message: "components.CreateCampaign.Form.errors.fundingRange" /* FundingRange */
|
|
3591
|
+
}
|
|
3592
|
+
),
|
|
3593
|
+
instagramHandle: z.string().max(30, "components.CreateCampaign.Form.errors.instagramMax" /* InstagramMax */).regex(/^@?[a-zA-Z0-9._]{1,30}$/, "components.CreateCampaign.Form.errors.instagramInvalid" /* InstagramInvalid */).optional(),
|
|
3594
|
+
tiktokHandle: z.string().max(24, "components.CreateCampaign.Form.errors.tiktokMax" /* TiktokMax */).regex(/^@?[a-zA-Z0-9._]{1,24}$/, "components.CreateCampaign.Form.errors.tiktokInvalid" /* TiktokInvalid */).optional(),
|
|
3595
|
+
youtubeHandle: z.string().max(50, "components.CreateCampaign.Form.errors.youtubeMax" /* YoutubeMax */).regex(/^@?[a-zA-Z0-9._]{1,50}$/, "components.CreateCampaign.Form.errors.youtubeInvalid" /* YoutubeInvalid */).optional()
|
|
3596
|
+
}), "formCampaignSchema");
|
|
3597
|
+
|
|
3420
3598
|
// src/logger/enums.ts
|
|
3421
3599
|
var LOGGER_SERVICES = {
|
|
3422
3600
|
// API Package Services
|
|
@@ -4685,6 +4863,6 @@ var ALERT_RULE_ID = {
|
|
|
4685
4863
|
REPLICA_LAG: "replica-lag"
|
|
4686
4864
|
};
|
|
4687
4865
|
|
|
4688
|
-
export { ADAPTERS, ADAPTER_TYPES, ALERT_RULE_ID, ALERT_SEVERITIES, ALERT_SEVERITY, ALERT_SOURCE, ALERT_TYPES, ALL_EVENTS, API_ERROR_CODES, AUDIT_OPERATION, AUTH_PROVIDER, AUTH_PROVIDER_TYPE, CACHE_DURATION_MS, CACHE_EVENTS, CHAIN_ID, CHANGE_TYPES, CLIENT_EVENTS, CLIENT_HINT_HEADERS, COLORS, COMMON_FIELDS, COMMON_OPERATIONS, COMMON_STORAGE_TYPES, CONFIG_EVENTS, COORDINATES, CORRELATION_TYPE, COSTOPTIMIZATIONSTRATEGY, CURRENCY_CODES, ContactUsFormSchema, CorrelationIdSchema, DATABASE_ERROR_CODES, DATABASE_EVENT_TYPE, DATA_SAVER_PRESETS, DB_POOL_EVENTS, DEBUGGER_CONFIG_SOURCES, DEBUG_EVENTS, DEFAULT_THRESHOLDS, DeviceTokenSchema, ENCRYPTION_DEFAULTS, ERROR_CATEGORY, ERROR_CATEGORY_TO_EMITTER_KEY, ERROR_CODES, ERROR_DEFINITIONS, ERROR_EVENTS, ERROR_EXCEPTIONS_NAMESPACES, COMMON_FIELDS as ERROR_FIELDS, ERROR_SEVERITY, ERROR_TYPE, EVENTPROCESSINGSTATUS, EVENTS_CONFIG_SOURCES, EVENT_CONSTANTS, EVENT_NAMESPACES, EVENT_OPERATIONS, EVENT_PRIORITY, EVENT_PRIORITY_MAP, EVENT_SCOPES, EVENT_SCOPES_WITH_TEMPORARY, EVENT_STATUS, EVENT_TYPE, EmailSchema, FACTORY_OPERATIONS, FAILOVERSTRATEGY, FILE_EXTENSIONS, HANDLER_SCOPES, HEADER_EVENTS, HEADER_STAGES, HISTORY_TYPES, HTTP_STATUS, IMPACT_LEVELS, INTERNAL_STATUS_CODES, InfobipDeliveryResultSchema, InfobipDeliveryWebhookSchema, InfobipEmailStatusSchema, InfobipErrorInfoSchema, InfobipGeoLocationSchema, InfobipPriceInfoSchema, InfobipRecipientInfoSchema, InfobipTrackingEventSchema, InfobipTrackingWebhookSchema, LOADBALANCINGSTRATEGY, LOGGER_SERVICES, LocaleSchema, MEDIA_EXTENSIONS, MEDIA_MIME_PREFIXES, MIME_TYPES, NETWORK_CONFIDENCE_LEVELS, NETWORK_EVENTS, NETWORK_QUALITY, NOTIFICATION_CATEGORIES, NOTIFICATION_CHANNELS, NOTIFICATION_ERROR_CODES, NOTIFICATION_PROVIDERS, NetworkPresetNames, NotificationCategorySchema, COMMON_OPERATIONS as OPERATIONS, INTERNAL_STATUS_CODES as PACKAGE_STATUS_CODES, PAYMENT_ERROR_CODES, PAYMENT_EVENT_CATEGORY, PAYMENT_EVENT_ERROR_CATEGORY, PAYMENT_EVENT_TYPE, PAYMENT_METHOD, PAYMENT_PROVIDER_TYPE, PAYMENT_STATUS, PERFORMANCEMETRICTYPE, PERFORMANCE_EVENTS, PRIORITY_LEVEL, PRODUCT_TYPE, PUB_SUB_EVENT, PhoneSchema, QUEUE_OPERATIONS, QueuePrioritySchema, REFUND_ERROR_TYPES, REFUND_NOT_ALLOWED_REASON, REGIONAL_CONFIDENCE_LEVELS, REGION_STORAGE_KEY, REGION_TO_PRESET, REGULATORYFRAMEWORK, REGULATORY_FRAMEWORK, REPLICA_STRATEGY, REQUIREDACTIONTYPE, ROUTINGSTRATEGY, RTT_THRESHOLDS, SECURITY_THREAT_TYPE, SIGNATURE_METHOD, SPEED_THRESHOLDS, COMMON_STORAGE_TYPES as STORAGE_TYPES, SendGridEventSchema, SendGridWebhookSchema, SignupFormSchema, TRACKING_PHASES, TRANSACTION_TYPE, TemplateDataSchema, TemplateIdSchema, UNIFIED_OPERATIONS, UPDATE_STRATEGIES, USER_ROLE, USER_STATUS, USER_TYPE, UserIdSchema, VALIDATION_RANGES, WEBHOOK_ENCRYPTION_METHOD, WEBHOOK_EVENT_TYPE, WEBHOOK_VERIFICATION_REASON, isValidConfigSource, isValidHistoryType, isValidOperation };
|
|
4866
|
+
export { ADAPTERS, ADAPTER_TYPES, ALERT_RULE_ID, ALERT_SEVERITIES, ALERT_SEVERITY, ALERT_SOURCE, ALERT_TYPES, ALL_EVENTS, API_ERROR_CODES, ATHLETE_PROFILE_ERRORS, AUDIT_OPERATION, AUTH_PROVIDER, AUTH_PROVIDER_TYPE, BASIC_PROFILE_ERRORS, CACHE_DURATION_MS, CACHE_EVENTS, CHAIN_ID, CHANGE_TYPES, CLIENT_EVENTS, CLIENT_HINT_HEADERS, COLORS, COMMON_FIELDS, COMMON_OPERATIONS, COMMON_STORAGE_TYPES, CONFIG_EVENTS, COORDINATES, CORRELATION_TYPE, COSTOPTIMIZATIONSTRATEGY, COUNTRIES, CREATE_CAMPAIGN_ERRORS, CURRENCY_CODES, ContactUsFormSchema, CorrelationIdSchema, DATABASE_ERROR_CODES, DATABASE_EVENT_TYPE, DATA_SAVER_PRESETS, DB_POOL_EVENTS, DEBUGGER_CONFIG_SOURCES, DEBUG_EVENTS, DEFAULT_THRESHOLDS, DeviceTokenSchema, ENCRYPTION_DEFAULTS, ERROR_CATEGORY, ERROR_CATEGORY_TO_EMITTER_KEY, ERROR_CODES, ERROR_DEFINITIONS, ERROR_EVENTS, ERROR_EXCEPTIONS_NAMESPACES, COMMON_FIELDS as ERROR_FIELDS, ERROR_SEVERITY, ERROR_TYPE, EVENTPROCESSINGSTATUS, EVENTS_CONFIG_SOURCES, EVENT_CONSTANTS, EVENT_NAMESPACES, EVENT_OPERATIONS, EVENT_PRIORITY, EVENT_PRIORITY_MAP, EVENT_SCOPES, EVENT_SCOPES_WITH_TEMPORARY, EVENT_STATUS, EVENT_TYPE, EmailSchema, FACTORY_OPERATIONS, FAILOVERSTRATEGY, FILE_EXTENSIONS, HANDLER_SCOPES, HEADER_EVENTS, HEADER_STAGES, HISTORY_TYPES, HTTP_STATUS, IMPACT_LEVELS, INTERNAL_STATUS_CODES, InfobipDeliveryResultSchema, InfobipDeliveryWebhookSchema, InfobipEmailStatusSchema, InfobipErrorInfoSchema, InfobipGeoLocationSchema, InfobipPriceInfoSchema, InfobipRecipientInfoSchema, InfobipTrackingEventSchema, InfobipTrackingWebhookSchema, LOADBALANCINGSTRATEGY, LOGGER_SERVICES, LocaleSchema, MEDIA_EXTENSIONS, MEDIA_MIME_PREFIXES, MIME_TYPES, NETWORK_CONFIDENCE_LEVELS, NETWORK_EVENTS, NETWORK_QUALITY, NOTIFICATION_CATEGORIES, NOTIFICATION_CHANNELS, NOTIFICATION_ERROR_CODES, NOTIFICATION_PROVIDERS, NetworkPresetNames, NotificationCategorySchema, COMMON_OPERATIONS as OPERATIONS, INTERNAL_STATUS_CODES as PACKAGE_STATUS_CODES, PAYMENT_ERROR_CODES, PAYMENT_EVENT_CATEGORY, PAYMENT_EVENT_ERROR_CATEGORY, PAYMENT_EVENT_TYPE, PAYMENT_METHOD, PAYMENT_PROVIDER_TYPE, PAYMENT_STATUS, PERFORMANCEMETRICTYPE, PERFORMANCE_EVENTS, PRIORITY_LEVEL, PRODUCT_TYPE, PUB_SUB_EVENT, PhoneSchema, QUEUE_OPERATIONS, QueuePrioritySchema, REFUND_ERROR_TYPES, REFUND_NOT_ALLOWED_REASON, REGIONAL_CONFIDENCE_LEVELS, REGION_STORAGE_KEY, REGION_TO_PRESET, REGULATORYFRAMEWORK, REGULATORY_FRAMEWORK, REPLICA_STRATEGY, REQUIREDACTIONTYPE, ROUTINGSTRATEGY, RTT_THRESHOLDS, SECURITY_THREAT_TYPE, SIGNATURE_METHOD, SPEED_THRESHOLDS, COMMON_STORAGE_TYPES as STORAGE_TYPES, SendGridEventSchema, SendGridWebhookSchema, SignupFormSchema, TRACKING_PHASES, TRANSACTION_TYPE, TemplateDataSchema, TemplateIdSchema, UNIFIED_OPERATIONS, UPDATE_STRATEGIES, USER_ROLE, USER_STATUS, USER_TYPE, UserIdSchema, VALIDATION_RANGES, WEBHOOK_ENCRYPTION_METHOD, WEBHOOK_EVENT_TYPE, WEBHOOK_VERIFICATION_REASON, athleteProfileSchema, basicProfileSchema, fanProfileSchema, formCampaignSchema, isValidConfigSource, isValidHistoryType, isValidOperation };
|
|
4689
4867
|
//# sourceMappingURL=index.js.map
|
|
4690
4868
|
//# sourceMappingURL=index.js.map
|