@bprotsyk/aso-core 2.1.24 → 2.1.32
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/README.md +1 -1
- package/lib/app/app-integration.d.ts +53 -53
- package/lib/app/app-integration.js +63 -63
- package/lib/app/app-list-item.d.ts +5 -5
- package/lib/app/app-list-item.js +2 -2
- package/lib/app/app-type.d.ts +4 -4
- package/lib/app/app-type.js +8 -8
- package/lib/app/app.d.ts +207 -213
- package/lib/app/app.js +161 -184
- package/lib/general/cloudflare-domain.d.ts +42 -42
- package/lib/general/cloudflare-domain.js +12 -12
- package/lib/general/domain.d.ts +108 -108
- package/lib/general/domain.js +61 -61
- package/lib/general/namecheap-domain.d.ts +85 -85
- package/lib/general/namecheap-domain.js +14 -14
- package/lib/general/push.d.ts +6 -6
- package/lib/general/push.js +2 -2
- package/lib/general/queue.d.ts +2 -2
- package/lib/general/queue.js +1 -1
- package/lib/general/shape.d.ts +18 -18
- package/lib/general/shape.js +36 -36
- package/lib/index.d.ts +26 -26
- package/lib/index.js +69 -69
- package/lib/keitaro/keitaro-campaign.d.ts +31 -31
- package/lib/keitaro/keitaro-campaign.js +5 -5
- package/lib/keitaro/keitaro-domain.d.ts +6 -6
- package/lib/keitaro/keitaro-domain.js +2 -2
- package/lib/keitaro/keitaro-offer.d.ts +7 -7
- package/lib/keitaro/keitaro-offer.js +2 -2
- package/lib/keitaro/keitaro-stream.d.ts +20 -20
- package/lib/keitaro/keitaro-stream.js +2 -2
- package/lib/network/keitaro/http.d.ts +2 -2
- package/lib/network/keitaro/http.js +12 -12
- package/lib/network/keitaro/keitaro-service.d.ts +48 -50
- package/lib/network/keitaro/keitaro-service.js +263 -261
- package/lib/offers/list.d.ts +37 -37
- package/lib/offers/list.js +12 -12
- package/lib/offers/offer.d.ts +91 -91
- package/lib/offers/offer.js +42 -42
- package/lib/offers/offerwall/offerwall-home-dialog-data.d.ts +6 -6
- package/lib/offers/offerwall/offerwall-home-dialog-data.js +2 -2
- package/lib/offers/offerwall/offerwall-offer.d.ts +12 -12
- package/lib/offers/offerwall/offerwall-offer.js +2 -2
- package/lib/offers/offerwall/offerwall-response.d.ts +6 -6
- package/lib/offers/offerwall/offerwall-response.js +2 -2
- package/lib/offers/offerwall/offerwall-section.d.ts +6 -6
- package/lib/offers/offerwall/offerwall-section.js +2 -2
- package/lib/offers/section.d.ts +47 -47
- package/lib/offers/section.js +20 -20
- package/lib/panel/app/upsert-flash-app-request.d.ts +31 -0
- package/lib/panel/app/upsert-flash-app-request.js +2 -0
- package/lib/panel/auth.d.ts +9 -9
- package/lib/panel/auth.js +2 -2
- package/lib/panel/flash/upsert-flash-app-request.d.ts +31 -31
- package/lib/panel/flash/upsert-flash-app-request.js +2 -2
- package/lib/panel/user.d.ts +46 -46
- package/lib/panel/user.js +28 -28
- package/lib/templates/nginx-template.conf +35 -35
- package/lib/templates/nginx-template.d.ts +1 -1
- package/lib/templates/nginx-template.js +39 -39
- package/lib/templates/nginx-template.ts +35 -35
- package/lib/utils/general.d.ts +11 -11
- package/lib/utils/general.js +40 -40
- package/lib/utils/huawei/converter.d.ts +2 -2
- package/lib/utils/huawei/converter.js +53 -53
- package/lib/utils/keitaro-utils.d.ts +13 -15
- package/lib/utils/keitaro-utils.js +569 -569
- package/lib/utils/server-util.js +303 -303
- package/package.json +51 -51
- package/src/app/app-integration.ts +66 -66
- package/src/app/app-list-item.ts +4 -4
- package/src/app/app-type.ts +3 -3
- package/src/app/app.ts +322 -346
- package/src/general/cloudflare-domain.ts +44 -44
- package/src/general/domain.ts +105 -105
- package/src/general/namecheap-domain.ts +63 -63
- package/src/general/push.ts +5 -5
- package/src/general/queue.ts +4 -4
- package/src/general/shape.tsx +55 -55
- package/src/index.ts +32 -32
- package/src/keitaro/keitaro-campaign.ts +35 -35
- package/src/keitaro/keitaro-domain.ts +5 -5
- package/src/keitaro/keitaro-offer.ts +6 -6
- package/src/keitaro/keitaro-stream.ts +19 -19
- package/src/network/keitaro/http.ts +8 -8
- package/src/network/keitaro/keitaro-service.ts +325 -323
- package/src/offers/list.ts +19 -19
- package/src/offers/offer.ts +80 -80
- package/src/offers/offerwall/offerwall-home-dialog-data.ts +6 -6
- package/src/offers/offerwall/offerwall-offer.ts +12 -12
- package/src/offers/offerwall/offerwall-response.ts +7 -7
- package/src/offers/offerwall/offerwall-section.ts +7 -7
- package/src/offers/section.ts +29 -29
- package/src/panel/{flash → app}/upsert-flash-app-request.ts +39 -39
- package/src/panel/auth.ts +9 -9
- package/src/panel/user.ts +38 -38
- package/src/templates/nginx-template.ts +35 -35
- package/src/utils/data.csv +65 -65
- package/src/utils/general.ts +36 -36
- package/src/utils/huawei/converter.ts +55 -55
- package/src/utils/keitaro-utils.ts +664 -662
- package/src/utils/map-apps.json +4747 -4747
- package/src/utils/server-util.ts +368 -368
- package/src/utils/update-postbacks.js +27 -27
- package/tsconfig.json +20 -20
- package/docs/.nojekyll +0 -1
- package/docs/DOCS.zip +0 -0
- package/docs/assets/highlight.css +0 -22
- package/docs/assets/main.js +0 -58
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1279
- package/docs/enums/PanelUserAccessScope.html +0 -127
- package/docs/functions/ASO_v0.toDefault.html +0 -81
- package/docs/functions/ASO_v1.toDefault.html +0 -81
- package/docs/functions/ASO_v2.toDefault.html +0 -79
- package/docs/functions/ASO_v3.toDefault.html +0 -78
- package/docs/functions/ASO_v4.toDefault.html +0 -76
- package/docs/functions/ASO_v5.toDefault.html +0 -77
- package/docs/functions/ColoredText.html +0 -93
- package/docs/functions/ShapeDiv.html +0 -110
- package/docs/index.html +0 -83
- package/docs/interfaces/ASOConfigFetch.IUsageLogEntry.html +0 -1414
- package/docs/interfaces/ASOConfigFetch.IUsageLogRequest.html +0 -104
- package/docs/interfaces/ASOConfigFetch.IUsageLogResponse.html +0 -109
- package/docs/interfaces/ASO_v0.IAuthorizationActionMapping.html +0 -146
- package/docs/interfaces/ASO_v0.IColoredSpan.html +0 -90
- package/docs/interfaces/ASO_v0.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v0.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v0.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v0.IConfig.html +0 -557
- package/docs/interfaces/ASO_v0.IConfigMapping.html +0 -230
- package/docs/interfaces/ASO_v0.ILocalization.html +0 -517
- package/docs/interfaces/ASO_v0.ILocalizationMap.html +0 -78
- package/docs/interfaces/ASO_v0.ILocalizationMapping.html +0 -503
- package/docs/interfaces/ASO_v0.IOfferResult.html +0 -104
- package/docs/interfaces/ASO_v0.IOfferResultEmoji.html +0 -83
- package/docs/interfaces/ASO_v0.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v0.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v0.IOffersSection.html +0 -97
- package/docs/interfaces/ASO_v0.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v0.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v1.IAuthorizationActionMapping.html +0 -146
- package/docs/interfaces/ASO_v1.IColoredSpan.html +0 -90
- package/docs/interfaces/ASO_v1.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v1.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v1.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v1.IConfig.html +0 -550
- package/docs/interfaces/ASO_v1.IConfigMapping.html +0 -230
- package/docs/interfaces/ASO_v1.ILocalization.html +0 -482
- package/docs/interfaces/ASO_v1.ILocalizationMap.html +0 -78
- package/docs/interfaces/ASO_v1.ILocalizationMapping.html +0 -482
- package/docs/interfaces/ASO_v1.IOfferResult.html +0 -104
- package/docs/interfaces/ASO_v1.IOfferResultEmoji.html +0 -83
- package/docs/interfaces/ASO_v1.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v1.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v1.IOffersSection.html +0 -102
- package/docs/interfaces/ASO_v1.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v1.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v2.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v2.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v2.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v2.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v2.IConfig.html +0 -494
- package/docs/interfaces/ASO_v2.IConfigMapping.html +0 -202
- package/docs/interfaces/ASO_v2.ILocalization.html +0 -475
- package/docs/interfaces/ASO_v2.ILocalizationMap.html +0 -76
- package/docs/interfaces/ASO_v2.ILocalizationMapping.html +0 -363
- package/docs/interfaces/ASO_v2.IOfferResult.html +0 -111
- package/docs/interfaces/ASO_v2.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v2.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v2.IOffersSection.html +0 -102
- package/docs/interfaces/ASO_v2.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v2.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v3.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v3.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v3.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v3.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v3.IConfig.html +0 -515
- package/docs/interfaces/ASO_v3.IConfigMapping.html +0 -209
- package/docs/interfaces/ASO_v3.ILocalization.html +0 -447
- package/docs/interfaces/ASO_v3.ILocalizationMap.html +0 -75
- package/docs/interfaces/ASO_v3.ILocalizationMapping.html +0 -342
- package/docs/interfaces/ASO_v3.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v3.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v3.IOffersSection.html +0 -102
- package/docs/interfaces/ASO_v3.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v3.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v4.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v4.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v4.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v4.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v4.IConfig.html +0 -515
- package/docs/interfaces/ASO_v4.IConfigMapping.html +0 -132
- package/docs/interfaces/ASO_v4.ILocalization.html +0 -370
- package/docs/interfaces/ASO_v4.ILocalizationMap.html +0 -73
- package/docs/interfaces/ASO_v4.ILocalizationMapping.html +0 -258
- package/docs/interfaces/ASO_v4.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v4.IOfferSectionMapping.html +0 -90
- package/docs/interfaces/ASO_v4.LocalizedString.html +0 -83
- package/docs/interfaces/ASO_v5.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v5.IColoredSpan.html +0 -90
- package/docs/interfaces/ASO_v5.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v5.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v5.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v5.IConfig.html +0 -543
- package/docs/interfaces/ASO_v5.IConfigMapping.html +0 -160
- package/docs/interfaces/ASO_v5.ILocalization.html +0 -412
- package/docs/interfaces/ASO_v5.ILocalizationMap.html +0 -74
- package/docs/interfaces/ASO_v5.ILocalizationMapping.html +0 -300
- package/docs/interfaces/ASO_v5.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v5.IOfferSectionMapping.html +0 -90
- package/docs/interfaces/ASO_v5.LocalizedString.html +0 -83
- package/docs/interfaces/IAsoConfigResponse.html +0 -82
- package/docs/interfaces/IAsoCustomizedOffer.html +0 -117
- package/docs/interfaces/IAsoDefaultConfig.html +0 -444
- package/docs/interfaces/IAsoOfferResponse.html +0 -82
- package/docs/interfaces/IAsoSection.html +0 -89
- package/docs/interfaces/IAsoSingleOffer.html +0 -89
- package/docs/interfaces/IAuthToken.html +0 -103
- package/docs/interfaces/IColoredTextProps.html +0 -75
- package/docs/interfaces/IFlashApp.html +0 -145
- package/docs/interfaces/IFlashAppListItem.html +0 -89
- package/docs/interfaces/IGradient.html +0 -96
- package/docs/interfaces/IOffer.html +0 -138
- package/docs/interfaces/IOfferWallAuthConfig.html +0 -131
- package/docs/interfaces/IOfferWallAuthLocalization.html +0 -103
- package/docs/interfaces/IOfferWallAuthSubmitRequest.html +0 -75
- package/docs/interfaces/IOfferWallAuthSubmitResponse.html +0 -75
- package/docs/interfaces/IOfferWallHomeDialogData.html +0 -96
- package/docs/interfaces/IOfferWallOffer.html +0 -110
- package/docs/interfaces/IOfferWallResponse.html +0 -82
- package/docs/interfaces/IOfferWallSection.html +0 -89
- package/docs/interfaces/IPanelUser.html +0 -1406
- package/docs/interfaces/IPush.html +0 -96
- package/docs/interfaces/IShape.html +0 -103
- package/docs/interfaces/IStroke.html +0 -82
- package/docs/interfaces/IUpsertFlashAppRequest.html +0 -215
- package/docs/interfaces/IUpsertFlashAppResponse.html +0 -82
- package/docs/modules/ASOConfigFetch.html +0 -64
- package/docs/modules/ASO_v0.html +0 -97
- package/docs/modules/ASO_v1.html +0 -97
- package/docs/modules/ASO_v2.html +0 -93
- package/docs/modules/ASO_v3.html +0 -91
- package/docs/modules/ASO_v4.html +0 -87
- package/docs/modules/ASO_v5.html +0 -89
- package/docs/modules.html +0 -134
- package/docs/variables/FlashAppSchema.html +0 -84
- package/docs/variables/PanelUserSchema.html +0 -84
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ILocalizationMap | @bprotsyk/aso-core</title><meta name="description" content="Documentation for @bprotsyk/aso-core"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
|
-
<div class="tsd-toolbar-contents container">
|
|
3
|
-
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
|
-
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
5
|
-
<div class="field">
|
|
6
|
-
<div id="tsd-toolbar-links"></div></div>
|
|
7
|
-
<ul class="results">
|
|
8
|
-
<li class="state loading">Preparing search index...</li>
|
|
9
|
-
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@bprotsyk/aso-core</a></div>
|
|
10
|
-
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
11
|
-
<div class="container container-main">
|
|
12
|
-
<div class="col-8 col-content">
|
|
13
|
-
<div class="tsd-page-title">
|
|
14
|
-
<ul class="tsd-breadcrumb">
|
|
15
|
-
<li><a href="../modules.html">@bprotsyk/aso-core</a></li>
|
|
16
|
-
<li><a href="../modules/ASO_v0.html">ASO_v0</a></li>
|
|
17
|
-
<li><a href="ASO_v0.ILocalizationMap.html">ILocalizationMap</a></li></ul>
|
|
18
|
-
<h1>Interface ILocalizationMap</h1></div>
|
|
19
|
-
<section class="tsd-panel tsd-hierarchy">
|
|
20
|
-
<h4>Hierarchy</h4>
|
|
21
|
-
<ul class="tsd-hierarchy">
|
|
22
|
-
<li><span class="target">ILocalizationMap</span></li></ul></section>
|
|
23
|
-
<section class="tsd-panel tsd-kind-interface tsd-parent-kind-namespace">
|
|
24
|
-
<h4 class="tsd-before-signature">Indexable</h4>
|
|
25
|
-
<div class="tsd-signature"><span class="tsd-signature-symbol">[</span>key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="../modules/ASO_v0.html" class="tsd-signature-type" data-tsd-kind="Namespace">ASO_v0</a><span class="tsd-signature-symbol">.</span><a href="ASO_v0.ILocalization.html" class="tsd-signature-type" data-tsd-kind="Interface">ILocalization</a></div></section><aside class="tsd-sources">
|
|
26
|
-
<ul>
|
|
27
|
-
<li>Defined in <a href="https://bitbucket.org/bprtsk/ai-panel-core/src/e0603c5/src/aso/config/aso-config-v0.ts#lines-100">src/aso/config/aso-config-v0.ts:100</a></li></ul></aside></div>
|
|
28
|
-
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
29
|
-
<div class="tsd-navigation settings">
|
|
30
|
-
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
31
|
-
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
|
|
32
|
-
<div class="tsd-accordion-details">
|
|
33
|
-
<div class="tsd-filter-visibility">
|
|
34
|
-
<h4 class="uppercase">Member Visibility</h4><form>
|
|
35
|
-
<ul id="tsd-filter-options">
|
|
36
|
-
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
|
|
37
|
-
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li>
|
|
38
|
-
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
|
|
39
|
-
<li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
|
|
40
|
-
<div class="tsd-theme-toggle">
|
|
41
|
-
<h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
|
|
42
|
-
<nav class="tsd-navigation primary">
|
|
43
|
-
<details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
|
|
44
|
-
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
|
45
|
-
<div class="tsd-accordion-details">
|
|
46
|
-
<ul>
|
|
47
|
-
<li class="current"><a href="../modules.html">@bprotsyk/aso-<wbr/>core</a>
|
|
48
|
-
<ul>
|
|
49
|
-
<li class="tsd-kind-namespace"><a href="../modules/ASOConfigFetch.html">ASOConfig<wbr/>Fetch</a></li>
|
|
50
|
-
<li class="current tsd-kind-namespace"><a href="../modules/ASO_v0.html">ASO_<wbr/>v0</a></li>
|
|
51
|
-
<li class="tsd-kind-namespace"><a href="../modules/ASO_v1.html">ASO_<wbr/>v1</a></li>
|
|
52
|
-
<li class="tsd-kind-namespace"><a href="../modules/ASO_v2.html">ASO_<wbr/>v2</a></li>
|
|
53
|
-
<li class="tsd-kind-namespace"><a href="../modules/ASO_v3.html">ASO_<wbr/>v3</a></li>
|
|
54
|
-
<li class="tsd-kind-namespace"><a href="../modules/ASO_v4.html">ASO_<wbr/>v4</a></li>
|
|
55
|
-
<li class="tsd-kind-namespace"><a href="../modules/ASO_v5.html">ASO_<wbr/>v5</a></li></ul></li></ul></div></details></nav>
|
|
56
|
-
<nav class="tsd-navigation secondary menu-sticky">
|
|
57
|
-
<ul>
|
|
58
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IAuthorizationActionMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg>IAuthorization<wbr/>Action<wbr/>Mapping</a></li>
|
|
59
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IColoredSpan.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IColored<wbr/>Span</a></li>
|
|
60
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IColoredSpanMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IColored<wbr/>Span<wbr/>Mapping</a></li>
|
|
61
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IColoredString.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IColored<wbr/>String</a></li>
|
|
62
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IColoredStringMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IColored<wbr/>String<wbr/>Mapping</a></li>
|
|
63
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IConfig.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IConfig</a></li>
|
|
64
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IConfigMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IConfig<wbr/>Mapping</a></li>
|
|
65
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.ILocalization.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>ILocalization</a></li>
|
|
66
|
-
<li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.ILocalizationMap.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>ILocalization<wbr/>Map</a></li>
|
|
67
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.ILocalizationMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>ILocalization<wbr/>Mapping</a></li>
|
|
68
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IOfferResult.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IOffer<wbr/>Result</a></li>
|
|
69
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IOfferResultEmoji.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IOffer<wbr/>Result<wbr/>Emoji</a></li>
|
|
70
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IOfferResultMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IOffer<wbr/>Result<wbr/>Mapping</a></li>
|
|
71
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IOfferSectionMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IOffer<wbr/>Section<wbr/>Mapping</a></li>
|
|
72
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.IOffersSection.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>IOffers<wbr/>Section</a></li>
|
|
73
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.ISectionPalette.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>ISection<wbr/>Palette</a></li>
|
|
74
|
-
<li class="tsd-kind-interface tsd-parent-kind-namespace"><a href="ASO_v0.ISectionPaletteMapping.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>ISection<wbr/>Palette<wbr/>Mapping</a></li>
|
|
75
|
-
<li class="tsd-kind-function tsd-parent-kind-namespace"><a href="../functions/ASO_v0.toDefault.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>to<wbr/>Default</a></li></ul></nav></div></div>
|
|
76
|
-
<div class="container tsd-generator">
|
|
77
|
-
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
|
|
78
|
-
<div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|