@plyaz/types 1.13.15 → 1.13.17

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/index.d.ts CHANGED
@@ -4,6 +4,8 @@ export type * from './core';
4
4
  export type * from './entities';
5
5
  export * from './errors';
6
6
  export * from './events';
7
+ export * from './http/constants';
8
+ export * from './locale/types';
7
9
  export type * from './store';
8
10
  export type * from './ui';
9
11
  export * from './web3';
package/dist/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import { z } from 'zod';
2
- import { HTTP_STATUS } from '@plyaz/config';
3
2
 
4
3
  // @plyaz package - Built with tsup
5
4
  var __defProp = Object.defineProperty;
@@ -270,6 +269,265 @@ var COMMON_STORAGE_TYPES = {
270
269
  REDIS: "redis",
271
270
  DATABASE: "database"
272
271
  };
272
+
273
+ // src/http/constants.ts
274
+ var HTTP_STATUS = {
275
+ // 1xx Informational
276
+ /**
277
+ * 100 Continue - The initial part of a request has been received
278
+ */
279
+ CONTINUE: 100,
280
+ /**
281
+ * 101 Switching Protocols - The server is switching protocols
282
+ */
283
+ SWITCHING_PROTOCOLS: 101,
284
+ /**
285
+ * 102 Processing - The server has received and is processing the request
286
+ */
287
+ PROCESSING: 102,
288
+ /**
289
+ * 103 Early Hints - Used to return some response headers before final HTTP message
290
+ */
291
+ EARLY_HINTS: 103,
292
+ // 2xx Success
293
+ /**
294
+ * 200 OK - The request succeeded
295
+ */
296
+ OK: 200,
297
+ /**
298
+ * 201 Created - The request succeeded and a new resource was created
299
+ */
300
+ CREATED: 201,
301
+ /**
302
+ * 202 Accepted - The request has been received but not yet acted upon
303
+ */
304
+ ACCEPTED: 202,
305
+ /**
306
+ * 203 Non-Authoritative Information - The returned metadata is not from the origin server
307
+ */
308
+ NON_AUTHORITATIVE_INFORMATION: 203,
309
+ /**
310
+ * 204 No Content - There is no content to send for this request
311
+ */
312
+ NO_CONTENT: 204,
313
+ /**
314
+ * 205 Reset Content - Tells the user agent to reset the document
315
+ */
316
+ RESET_CONTENT: 205,
317
+ /**
318
+ * 206 Partial Content - The server is delivering only part of the resource
319
+ */
320
+ PARTIAL_CONTENT: 206,
321
+ /**
322
+ * 207 Multi-Status - Conveys information about multiple resources
323
+ */
324
+ MULTI_STATUS: 207,
325
+ /**
326
+ * 208 Already Reported - The members of a DAV binding have already been enumerated
327
+ */
328
+ ALREADY_REPORTED: 208,
329
+ /**
330
+ * 226 IM Used - The server has fulfilled a request for the resource
331
+ */
332
+ IM_USED: 226,
333
+ // 3xx Redirection
334
+ /**
335
+ * 300 Multiple Choices - Multiple options for the resource are available
336
+ */
337
+ MULTIPLE_CHOICES: 300,
338
+ /**
339
+ * 301 Moved Permanently - The URL of the requested resource has been changed permanently
340
+ */
341
+ MOVED_PERMANENTLY: 301,
342
+ /**
343
+ * 302 Found - The resource resides temporarily under a different URI
344
+ */
345
+ FOUND: 302,
346
+ /**
347
+ * 303 See Other - Direct the client to get the resource at another URI
348
+ */
349
+ SEE_OTHER: 303,
350
+ /**
351
+ * 304 Not Modified - The cached version is still valid
352
+ */
353
+ NOT_MODIFIED: 304,
354
+ /**
355
+ * 305 Use Proxy - Defined in a previous version of the HTTP specification
356
+ */
357
+ USE_PROXY: 305,
358
+ /**
359
+ * 307 Temporary Redirect - The request should be repeated with another URI
360
+ */
361
+ TEMPORARY_REDIRECT: 307,
362
+ /**
363
+ * 308 Permanent Redirect - The resource is permanently located at another URI
364
+ */
365
+ PERMANENT_REDIRECT: 308,
366
+ // 4xx Client Errors
367
+ /**
368
+ * 400 Bad Request - The server cannot process the request due to client error
369
+ */
370
+ BAD_REQUEST: 400,
371
+ /**
372
+ * 401 Unauthorized - Authentication is required and has failed or not been provided
373
+ */
374
+ UNAUTHORIZED: 401,
375
+ /**
376
+ * 402 Payment Required - Reserved for future use
377
+ */
378
+ PAYMENT_REQUIRED: 402,
379
+ /**
380
+ * 403 Forbidden - The server understood the request but refuses to authorize it
381
+ */
382
+ FORBIDDEN: 403,
383
+ /**
384
+ * 404 Not Found - The server cannot find the requested resource
385
+ */
386
+ NOT_FOUND: 404,
387
+ /**
388
+ * 405 Method Not Allowed - The request method is not supported for the requested resource
389
+ */
390
+ METHOD_NOT_ALLOWED: 405,
391
+ /**
392
+ * 406 Not Acceptable - The requested resource is not available in a format acceptable to the client
393
+ */
394
+ NOT_ACCEPTABLE: 406,
395
+ /**
396
+ * 407 Proxy Authentication Required - The client must authenticate itself with the proxy
397
+ */
398
+ PROXY_AUTHENTICATION_REQUIRED: 407,
399
+ /**
400
+ * 408 Request Timeout - The server timed out waiting for the request
401
+ */
402
+ REQUEST_TIMEOUT: 408,
403
+ /**
404
+ * 409 Conflict - The request conflicts with the current state of the server
405
+ */
406
+ CONFLICT: 409,
407
+ /**
408
+ * 410 Gone - The requested resource is no longer available and will not be available again
409
+ */
410
+ GONE: 410,
411
+ /**
412
+ * 411 Length Required - The request did not specify the length of its content
413
+ */
414
+ LENGTH_REQUIRED: 411,
415
+ /**
416
+ * 412 Precondition Failed - The server does not meet one of the preconditions
417
+ */
418
+ PRECONDITION_FAILED: 412,
419
+ /**
420
+ * 413 Payload Too Large - The request is larger than the server is willing to process
421
+ */
422
+ PAYLOAD_TOO_LARGE: 413,
423
+ /**
424
+ * 414 URI Too Long - The URI provided was too long for the server to process
425
+ */
426
+ URI_TOO_LONG: 414,
427
+ /**
428
+ * 415 Unsupported Media Type - The request entity has a media type not supported by the server
429
+ */
430
+ UNSUPPORTED_MEDIA_TYPE: 415,
431
+ /**
432
+ * 416 Range Not Satisfiable - The client has asked for a portion of the file that the server cannot supply
433
+ */
434
+ RANGE_NOT_SATISFIABLE: 416,
435
+ /**
436
+ * 417 Expectation Failed - The server cannot meet the requirements of the Expect request-header field
437
+ */
438
+ EXPECTATION_FAILED: 417,
439
+ /**
440
+ * 418 I'm a teapot - The server refuses to brew coffee because it is a teapot
441
+ */
442
+ IM_A_TEAPOT: 418,
443
+ /**
444
+ * 421 Misdirected Request - The request was directed at a server that is not able to produce a response
445
+ */
446
+ MISDIRECTED_REQUEST: 421,
447
+ /**
448
+ * 422 Unprocessable Entity - The request was well-formed but was unable to be followed due to semantic errors
449
+ */
450
+ UNPROCESSABLE_ENTITY: 422,
451
+ /**
452
+ * 423 Locked - The resource that is being accessed is locked
453
+ */
454
+ LOCKED: 423,
455
+ /**
456
+ * 424 Failed Dependency - The request failed due to failure of a previous request
457
+ */
458
+ FAILED_DEPENDENCY: 424,
459
+ /**
460
+ * 425 Too Early - The server is unwilling to risk processing a request that might be replayed
461
+ */
462
+ TOO_EARLY: 425,
463
+ /**
464
+ * 426 Upgrade Required - The client should switch to a different protocol
465
+ */
466
+ UPGRADE_REQUIRED: 426,
467
+ /**
468
+ * 428 Precondition Required - The origin server requires the request to be conditional
469
+ */
470
+ PRECONDITION_REQUIRED: 428,
471
+ /**
472
+ * 429 Too Many Requests - The user has sent too many requests in a given amount of time
473
+ */
474
+ TOO_MANY_REQUESTS: 429,
475
+ /**
476
+ * 431 Request Header Fields Too Large - The server is unwilling to process the request because its header fields are too large
477
+ */
478
+ REQUEST_HEADER_FIELDS_TOO_LARGE: 431,
479
+ /**
480
+ * 451 Unavailable For Legal Reasons - The user requested a resource that cannot legally be provided
481
+ */
482
+ UNAVAILABLE_FOR_LEGAL_REASONS: 451,
483
+ // 5xx Server Errors
484
+ /**
485
+ * 500 Internal Server Error - The server encountered an unexpected condition
486
+ */
487
+ INTERNAL_SERVER_ERROR: 500,
488
+ /**
489
+ * 501 Not Implemented - The server does not support the functionality required to fulfill the request
490
+ */
491
+ NOT_IMPLEMENTED: 501,
492
+ /**
493
+ * 502 Bad Gateway - The server received an invalid response from the upstream server
494
+ */
495
+ BAD_GATEWAY: 502,
496
+ /**
497
+ * 503 Service Unavailable - The server is not ready to handle the request
498
+ */
499
+ SERVICE_UNAVAILABLE: 503,
500
+ /**
501
+ * 504 Gateway Timeout - The server did not get a response in time from the upstream server
502
+ */
503
+ GATEWAY_TIMEOUT: 504,
504
+ /**
505
+ * 505 HTTP Version Not Supported - The HTTP version used in the request is not supported by the server
506
+ */
507
+ HTTP_VERSION_NOT_SUPPORTED: 505,
508
+ /**
509
+ * 506 Variant Also Negotiates - The server has an internal configuration error
510
+ */
511
+ VARIANT_ALSO_NEGOTIATES: 506,
512
+ /**
513
+ * 507 Insufficient Storage - The server is unable to store the representation needed to complete the request
514
+ */
515
+ INSUFFICIENT_STORAGE: 507,
516
+ /**
517
+ * 508 Loop Detected - The server detected an infinite loop while processing the request
518
+ */
519
+ LOOP_DETECTED: 508,
520
+ /**
521
+ * 510 Not Extended - Further extensions to the request are required for the server to fulfill it
522
+ */
523
+ NOT_EXTENDED: 510,
524
+ /**
525
+ * 511 Network Authentication Required - The client needs to authenticate to gain network access
526
+ */
527
+ NETWORK_AUTHENTICATION_REQUIRED: 511
528
+ };
529
+
530
+ // src/errors/codes.ts
273
531
  var ERROR_CODES = {
274
532
  // ===== API Package Errors =====
275
533
  // Client Configuration
@@ -1434,6 +1692,205 @@ var EVENT_STATUS = {
1434
1692
  Retrying: "retrying"
1435
1693
  };
1436
1694
 
1695
+ // src/locale/types.ts
1696
+ var CURRENCY_CODES = {
1697
+ // Major currencies
1698
+ USD: "USD",
1699
+ // US Dollar
1700
+ EUR: "EUR",
1701
+ // Euro
1702
+ GBP: "GBP",
1703
+ // British Pound Sterling
1704
+ JPY: "JPY",
1705
+ // Japanese Yen
1706
+ CHF: "CHF",
1707
+ // Swiss Franc
1708
+ CAD: "CAD",
1709
+ // Canadian Dollar
1710
+ AUD: "AUD",
1711
+ // Australian Dollar
1712
+ CNY: "CNY",
1713
+ // Chinese Yuan Renminbi
1714
+ // Asian currencies
1715
+ INR: "INR",
1716
+ // Indian Rupee
1717
+ KRW: "KRW",
1718
+ // South Korean Won
1719
+ SGD: "SGD",
1720
+ // Singapore Dollar
1721
+ HKD: "HKD",
1722
+ // Hong Kong Dollar
1723
+ TWD: "TWD",
1724
+ // Taiwan New Dollar
1725
+ THB: "THB",
1726
+ // Thai Baht
1727
+ IDR: "IDR",
1728
+ // Indonesian Rupiah
1729
+ MYR: "MYR",
1730
+ // Malaysian Ringgit
1731
+ PHP: "PHP",
1732
+ // Philippine Peso
1733
+ VND: "VND",
1734
+ // Vietnamese Dong
1735
+ BDT: "BDT",
1736
+ // Bangladeshi Taka
1737
+ PKR: "PKR",
1738
+ // Pakistani Rupee
1739
+ LKR: "LKR",
1740
+ // Sri Lankan Rupee
1741
+ // European currencies
1742
+ SEK: "SEK",
1743
+ // Swedish Krona
1744
+ NOK: "NOK",
1745
+ // Norwegian Krone
1746
+ DKK: "DKK",
1747
+ // Danish Krone
1748
+ PLN: "PLN",
1749
+ // Polish Zloty
1750
+ CZK: "CZK",
1751
+ // Czech Koruna
1752
+ HUF: "HUF",
1753
+ // Hungarian Forint
1754
+ RON: "RON",
1755
+ // Romanian Leu
1756
+ BGN: "BGN",
1757
+ // Bulgarian Lev
1758
+ HRK: "HRK",
1759
+ // Croatian Kuna
1760
+ RSD: "RSD",
1761
+ // Serbian Dinar
1762
+ ISK: "ISK",
1763
+ // Icelandic Króna
1764
+ // Americas currencies
1765
+ BRL: "BRL",
1766
+ // Brazilian Real
1767
+ MXN: "MXN",
1768
+ // Mexican Peso
1769
+ ARS: "ARS",
1770
+ // Argentine Peso
1771
+ CLP: "CLP",
1772
+ // Chilean Peso
1773
+ COP: "COP",
1774
+ // Colombian Peso
1775
+ PEN: "PEN",
1776
+ // Peruvian Sol
1777
+ UYU: "UYU",
1778
+ // Uruguayan Peso
1779
+ VES: "VES",
1780
+ // Venezuelan Bolívar
1781
+ BOB: "BOB",
1782
+ // Bolivian Boliviano
1783
+ PYG: "PYG",
1784
+ // Paraguayan Guarani
1785
+ CRC: "CRC",
1786
+ // Costa Rican Colón
1787
+ GTQ: "GTQ",
1788
+ // Guatemalan Quetzal
1789
+ HNL: "HNL",
1790
+ // Honduran Lempira
1791
+ NIO: "NIO",
1792
+ // Nicaraguan Córdoba
1793
+ PAB: "PAB",
1794
+ // Panamanian Balboa
1795
+ DOP: "DOP",
1796
+ // Dominican Peso
1797
+ JMD: "JMD",
1798
+ // Jamaican Dollar
1799
+ TTD: "TTD",
1800
+ // Trinidad and Tobago Dollar
1801
+ BBD: "BBD",
1802
+ // Barbadian Dollar
1803
+ // Middle Eastern currencies
1804
+ AED: "AED",
1805
+ // UAE Dirham
1806
+ SAR: "SAR",
1807
+ // Saudi Riyal
1808
+ QAR: "QAR",
1809
+ // Qatari Riyal
1810
+ KWD: "KWD",
1811
+ // Kuwaiti Dinar
1812
+ BHD: "BHD",
1813
+ // Bahraini Dinar
1814
+ OMR: "OMR",
1815
+ // Omani Rial
1816
+ JOD: "JOD",
1817
+ // Jordanian Dinar
1818
+ ILS: "ILS",
1819
+ // Israeli New Shekel
1820
+ TRY: "TRY",
1821
+ // Turkish Lira
1822
+ IQD: "IQD",
1823
+ // Iraqi Dinar
1824
+ IRR: "IRR",
1825
+ // Iranian Rial
1826
+ LBP: "LBP",
1827
+ // Lebanese Pound
1828
+ SYP: "SYP",
1829
+ // Syrian Pound
1830
+ // African currencies
1831
+ ZAR: "ZAR",
1832
+ // South African Rand
1833
+ NGN: "NGN",
1834
+ // Nigerian Naira
1835
+ EGP: "EGP",
1836
+ // Egyptian Pound
1837
+ KES: "KES",
1838
+ // Kenyan Shilling
1839
+ GHS: "GHS",
1840
+ // Ghanaian Cedi
1841
+ MAD: "MAD",
1842
+ // Moroccan Dirham
1843
+ TND: "TND",
1844
+ // Tunisian Dinar
1845
+ DZD: "DZD",
1846
+ // Algerian Dinar
1847
+ ETB: "ETB",
1848
+ // Ethiopian Birr
1849
+ TZS: "TZS",
1850
+ // Tanzanian Shilling
1851
+ UGX: "UGX",
1852
+ // Ugandan Shilling
1853
+ ZMW: "ZMW",
1854
+ // Zambian Kwacha
1855
+ BWP: "BWP",
1856
+ // Botswana Pula
1857
+ MUR: "MUR",
1858
+ // Mauritian Rupee
1859
+ // Pacific currencies
1860
+ NZD: "NZD",
1861
+ // New Zealand Dollar
1862
+ FJD: "FJD",
1863
+ // Fijian Dollar
1864
+ PGK: "PGK",
1865
+ // Papua New Guinean Kina
1866
+ // Former Soviet Union currencies
1867
+ RUB: "RUB",
1868
+ // Russian Ruble
1869
+ UAH: "UAH",
1870
+ // Ukrainian Hryvnia
1871
+ BYN: "BYN",
1872
+ // Belarusian Ruble
1873
+ KZT: "KZT",
1874
+ // Kazakhstani Tenge
1875
+ UZS: "UZS",
1876
+ // Uzbekistani Som
1877
+ AZN: "AZN",
1878
+ // Azerbaijani Manat
1879
+ GEL: "GEL",
1880
+ // Georgian Lari
1881
+ AMD: "AMD",
1882
+ // Armenian Dram
1883
+ // Cryptocurrency representations (unofficial)
1884
+ BTC: "BTC",
1885
+ // Bitcoin
1886
+ ETH: "ETH",
1887
+ // Ethereum
1888
+ USDT: "USDT",
1889
+ // Tether
1890
+ USDC: "USDC"
1891
+ // USD Coin
1892
+ };
1893
+
1437
1894
  // src/web3/enums.ts
1438
1895
  var CHAIN_ID = {
1439
1896
  /** Ethereum Mainnet (Chain ID: 1). */
@@ -2457,6 +2914,6 @@ var PUB_SUB_EVENT = {
2457
2914
  RequestAbort: "request:abort"
2458
2915
  };
2459
2916
 
2460
- export { ALERT_SEVERITIES, ALERT_TYPES, ALL_EVENTS, API_ERROR_CODES, AUTH_PROVIDER, AUTH_PROVIDER_TYPE, CACHE_DURATION_MS, CACHE_EVENTS, CHAIN_ID, CHANGE_TYPES, CLIENT_EVENTS, CLIENT_HINT_HEADERS, COMMON_FIELDS, COMMON_OPERATIONS, COMMON_STORAGE_TYPES, CONFIG_EVENTS, COORDINATES, CORRELATION_TYPE, COSTOPTIMIZATIONSTRATEGY, CorrelationIdSchema, DATA_SAVER_PRESETS, DEBUGGER_CONFIG_SOURCES, DEBUG_EVENTS, DEFAULT_THRESHOLDS, DeviceTokenSchema, ERROR_CATEGORY, ERROR_CATEGORY_TO_EMITTER_KEY, ERROR_CODES, ERROR_DEFINITIONS, ERROR_EVENTS, 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, IMPACT_LEVELS, INTERNAL_STATUS_CODES, LOADBALANCINGSTRATEGY, LocaleSchema, 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, PAYMENTERRORCATEGORY, PAYMENTEVENTCATEGORY, PAYMENTEVENTTYPE, PAYMENTMETHOD, PAYMENTPROVIDERTYPE, PAYMENTSTATUS, PAYMENT_ERROR_CATEGORY, PERFORMANCEMETRICTYPE, PERFORMANCE_EVENTS, PRIORITY_LEVEL, PRODUCTTYPE, 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, REQUIREDACTIONTYPE, ROUTINGSTRATEGY, RTT_THRESHOLDS, SECURITY_THREAT_TYPE, SIGNATURE_METHOD, SPEED_THRESHOLDS, COMMON_STORAGE_TYPES as STORAGE_TYPES, TRACKING_PHASES, TRANSACTIONTYPE, TemplateDataSchema, TemplateIdSchema, UNIFIED_OPERATIONS, UPDATE_STRATEGIES, USERTYPE, USER_ROLE, USER_STATUS, UserIdSchema, VALIDATION_RANGES, WEBHOOK_ENCRYPTION_METHOD, WEBHOOK_EVENT_TYPE, WEBHOOK_VERIFICATION_REASON, isValidConfigSource, isValidHistoryType, isValidOperation, loginCredentialsSchema };
2917
+ export { ALERT_SEVERITIES, ALERT_TYPES, ALL_EVENTS, API_ERROR_CODES, AUTH_PROVIDER, AUTH_PROVIDER_TYPE, CACHE_DURATION_MS, CACHE_EVENTS, CHAIN_ID, CHANGE_TYPES, CLIENT_EVENTS, CLIENT_HINT_HEADERS, COMMON_FIELDS, COMMON_OPERATIONS, COMMON_STORAGE_TYPES, CONFIG_EVENTS, COORDINATES, CORRELATION_TYPE, COSTOPTIMIZATIONSTRATEGY, CURRENCY_CODES, CorrelationIdSchema, DATA_SAVER_PRESETS, DEBUGGER_CONFIG_SOURCES, DEBUG_EVENTS, DEFAULT_THRESHOLDS, DeviceTokenSchema, ERROR_CATEGORY, ERROR_CATEGORY_TO_EMITTER_KEY, ERROR_CODES, ERROR_DEFINITIONS, ERROR_EVENTS, 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, LOADBALANCINGSTRATEGY, LocaleSchema, 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, PAYMENTERRORCATEGORY, PAYMENTEVENTCATEGORY, PAYMENTEVENTTYPE, PAYMENTMETHOD, PAYMENTPROVIDERTYPE, PAYMENTSTATUS, PAYMENT_ERROR_CATEGORY, PERFORMANCEMETRICTYPE, PERFORMANCE_EVENTS, PRIORITY_LEVEL, PRODUCTTYPE, 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, REQUIREDACTIONTYPE, ROUTINGSTRATEGY, RTT_THRESHOLDS, SECURITY_THREAT_TYPE, SIGNATURE_METHOD, SPEED_THRESHOLDS, COMMON_STORAGE_TYPES as STORAGE_TYPES, TRACKING_PHASES, TRANSACTIONTYPE, TemplateDataSchema, TemplateIdSchema, UNIFIED_OPERATIONS, UPDATE_STRATEGIES, USERTYPE, USER_ROLE, USER_STATUS, UserIdSchema, VALIDATION_RANGES, WEBHOOK_ENCRYPTION_METHOD, WEBHOOK_EVENT_TYPE, WEBHOOK_VERIFICATION_REASON, isValidConfigSource, isValidHistoryType, isValidOperation, loginCredentialsSchema };
2461
2918
  //# sourceMappingURL=index.js.map
2462
2919
  //# sourceMappingURL=index.js.map