@secrecy/lib 1.0.0-dev.21 → 1.0.0-dev.25
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/CHANGELOG.md +178 -0
- package/README.md +0 -1
- package/__tests__/client/client.test.ts +81 -0
- package/__tests__/client/folder.test.ts +302 -0
- package/__tests__/client/mail.test.ts +476 -0
- package/__tests__/client/timing.test.ts +35 -0
- package/__tests__/client/utils.ts +41 -0
- package/__tests__/client/vFile.test.ts +207 -0
- package/__tests__/index.test.ts +171 -0
- package/commitlint.config.cjs +3 -0
- package/dist/index.d.ts +3857 -0
- package/dist/index.js +255 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +255 -0
- package/dist/index.mjs.map +1 -0
- package/docs/assets/css/main.css +2660 -0
- package/docs/assets/images/icons.png +0 -0
- package/docs/assets/images/icons@2x.png +0 -0
- package/docs/assets/images/widgets.png +0 -0
- package/docs/assets/images/widgets@2x.png +0 -0
- package/docs/assets/js/main.js +248 -0
- package/docs/assets/js/search.js +1 -0
- package/docs/classes/baseclient.baseclient-1.html +1165 -0
- package/docs/classes/client.secrecyclient.html +2527 -0
- package/docs/enums/index.sodium.base64_variants.html +205 -0
- package/docs/index.html +198 -0
- package/docs/interfaces/client_types.draftmail.html +335 -0
- package/docs/interfaces/client_types.filecontentbase.html +231 -0
- package/docs/interfaces/client_types.filecontentcloud.html +244 -0
- package/docs/interfaces/client_types.filecontentreceivedmail.html +244 -0
- package/docs/interfaces/client_types.filecontentsentmail.html +230 -0
- package/docs/interfaces/client_types.receivedmail.html +363 -0
- package/docs/interfaces/client_types.sentmail.html +335 -0
- package/docs/interfaces/crypto.keypair.html +202 -0
- package/docs/interfaces/index.sodium.cryptobox.html +185 -0
- package/docs/interfaces/index.sodium.cryptokx.html +185 -0
- package/docs/interfaces/index.sodium.keypair.html +199 -0
- package/docs/interfaces/index.sodium.messagetag.html +185 -0
- package/docs/interfaces/index.sodium.secretbox.html +185 -0
- package/docs/interfaces/index.sodium.stateaddress.html +171 -0
- package/docs/interfaces/index.sodium.stringcryptobox.html +185 -0
- package/docs/interfaces/index.sodium.stringcryptokx.html +185 -0
- package/docs/interfaces/index.sodium.stringkeypair.html +199 -0
- package/docs/interfaces/index.sodium.stringmessagetag.html +185 -0
- package/docs/interfaces/index.sodium.stringsecretbox.html +185 -0
- package/docs/interfaces/utils_store_buddy.storebuddy.html +333 -0
- package/docs/modules/baseclient.html +929 -0
- package/docs/modules/cache.html +185 -0
- package/docs/modules/client.html +207 -0
- package/docs/modules/client_convert_file.html +216 -0
- package/docs/modules/client_convert_folder.html +303 -0
- package/docs/modules/client_convert_vfile.html +216 -0
- package/docs/modules/client_helpers.html +311 -0
- package/docs/modules/client_storage.html +167 -0
- package/docs/modules/client_types.html +1227 -0
- package/docs/modules/client_types_file.html +233 -0
- package/docs/modules/client_types_filesonusersonapplications.html +168 -0
- package/docs/modules/client_types_folder.html +383 -0
- package/docs/modules/client_types_inputs.html +263 -0
- package/docs/modules/client_types_mail.html +181 -0
- package/docs/modules/client_types_queries.html +199 -0
- package/docs/modules/client_types_userappsettings.html +163 -0
- package/docs/modules/client_types_vfile.html +364 -0
- package/docs/modules/crypto.html +366 -0
- package/docs/modules/crypto_file.html +344 -0
- package/docs/modules/index.html +779 -0
- package/docs/modules/index.sodium.html +6039 -0
- package/docs/modules/minify.html +183 -0
- package/docs/modules/minify_lz4.html +279 -0
- package/docs/modules/popuptools.html +259 -0
- package/docs/modules/sodium.html +167 -0
- package/docs/modules/utils.html +219 -0
- package/docs/modules/utils_store_buddy.html +208 -0
- package/docs/modules/utils_time.html +330 -0
- package/docs/modules/worker_md5.html +156 -0
- package/docs/modules/worker_sodium.html +231 -0
- package/docs/modules/worker_workercodes.html +157 -0
- package/docs/modules.html +235 -0
- package/index.html +21 -0
- package/jest.config.ts +27 -0
- package/jest.setup.ts +6 -0
- package/package.json +39 -47
- package/release.config.cjs +15 -0
- package/tsup.config.ts +23 -0
- package/lib/BaseClient.d.ts +0 -274
- package/lib/BaseClient.js +0 -1837
- package/lib/PopupTools.d.ts +0 -17
- package/lib/PopupTools.js +0 -213
- package/lib/ZeusThunder.d.ts +0 -2
- package/lib/ZeusThunder.js +0 -112
- package/lib/cache.d.ts +0 -7
- package/lib/cache.js +0 -5
- package/lib/client/admin/index.d.ts +0 -11
- package/lib/client/admin/index.js +0 -163
- package/lib/client/convert/file.d.ts +0 -5
- package/lib/client/convert/file.js +0 -39
- package/lib/client/convert/folder.d.ts +0 -8
- package/lib/client/convert/folder.js +0 -264
- package/lib/client/convert/mail.d.ts +0 -3
- package/lib/client/convert/mail.js +0 -46
- package/lib/client/convert/vFile.d.ts +0 -5
- package/lib/client/convert/vFile.js +0 -164
- package/lib/client/helpers.d.ts +0 -23
- package/lib/client/helpers.js +0 -116
- package/lib/client/index.d.ts +0 -172
- package/lib/client/index.js +0 -4501
- package/lib/client/storage.d.ts +0 -7
- package/lib/client/storage.js +0 -12
- package/lib/client/types/File.d.ts +0 -21
- package/lib/client/types/File.js +0 -3
- package/lib/client/types/FilesOnUsersOnApplications.d.ts +0 -9
- package/lib/client/types/FilesOnUsersOnApplications.js +0 -3
- package/lib/client/types/Folder.d.ts +0 -68
- package/lib/client/types/Folder.js +0 -7
- package/lib/client/types/Inputs.d.ts +0 -21
- package/lib/client/types/Inputs.js +0 -3
- package/lib/client/types/UserAppNotifications.d.ts +0 -6
- package/lib/client/types/UserAppNotifications.js +0 -3
- package/lib/client/types/UserAppSettings.d.ts +0 -7
- package/lib/client/types/UserAppSettings.js +0 -3
- package/lib/client/types/VFile.d.ts +0 -62
- package/lib/client/types/VFile.js +0 -4
- package/lib/client/types/index.d.ts +0 -154
- package/lib/client/types/index.js +0 -10
- package/lib/client/types/queries.d.ts +0 -535
- package/lib/client/types/queries.js +0 -192
- package/lib/crypto/file.d.ts +0 -14
- package/lib/crypto/file.js +0 -291
- package/lib/crypto/index.d.ts +0 -12
- package/lib/crypto/index.js +0 -37
- package/lib/error.d.ts +0 -30
- package/lib/error.js +0 -3
- package/lib/index.d.ts +0 -13
- package/lib/index.js +0 -42
- package/lib/minify/index.d.ts +0 -2
- package/lib/minify/index.js +0 -28
- package/lib/minify/lz4.d.ts +0 -5
- package/lib/minify/lz4.js +0 -633
- package/lib/sodium.d.ts +0 -3
- package/lib/sodium.js +0 -28
- package/lib/utils/store-buddy.d.ts +0 -14
- package/lib/utils/store-buddy.js +0 -69
- package/lib/utils/time.d.ts +0 -10
- package/lib/utils/time.js +0 -22
- package/lib/utils.d.ts +0 -4
- package/lib/utils.js +0 -188
- package/lib/worker/__mock__/sodium.worker.d.ts +0 -19
- package/lib/worker/__mock__/sodium.worker.js +0 -46
- package/lib/worker/md5.d.ts +0 -1
- package/lib/worker/md5.js +0 -43
- package/lib/worker/sodium.d.ts +0 -3
- package/lib/worker/sodium.js +0 -155
- package/lib/worker/workerCodes.d.ts +0 -2
- package/lib/worker/workerCodes.js +0 -3
- package/lib/zeus/const.d.ts +0 -2
- package/lib/zeus/const.js +0 -1895
- package/lib/zeus/index.d.ts +0 -2798
- package/lib/zeus/index.js +0 -549
|
@@ -0,0 +1,779 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="default no-js">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<title>index | @secrecy/lib</title>
|
|
7
|
+
<meta name="description" content="Documentation for @secrecy/lib">
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
|
+
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<header>
|
|
14
|
+
<div class="tsd-page-toolbar">
|
|
15
|
+
<div class="container">
|
|
16
|
+
<div class="table-wrap">
|
|
17
|
+
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
|
|
18
|
+
<div class="field">
|
|
19
|
+
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
|
20
|
+
<input id="tsd-search-field" type="text" />
|
|
21
|
+
</div>
|
|
22
|
+
<ul class="results">
|
|
23
|
+
<li class="state loading">Preparing search index...</li>
|
|
24
|
+
<li class="state failure">The search index is not available</li>
|
|
25
|
+
</ul>
|
|
26
|
+
<a href="../index.html" class="title">@secrecy/lib</a>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="table-cell" id="tsd-widgets">
|
|
29
|
+
<div id="tsd-filter">
|
|
30
|
+
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
|
31
|
+
<div class="tsd-filter-group">
|
|
32
|
+
<div class="tsd-select" id="tsd-filter-visibility">
|
|
33
|
+
<span class="tsd-select-label">All</span>
|
|
34
|
+
<ul class="tsd-select-list">
|
|
35
|
+
<li data-value="public">Public</li>
|
|
36
|
+
<li data-value="protected">Public/Protected</li>
|
|
37
|
+
<li data-value="private" class="selected">All</li>
|
|
38
|
+
</ul>
|
|
39
|
+
</div>
|
|
40
|
+
<input type="checkbox" id="tsd-filter-inherited" checked />
|
|
41
|
+
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
|
42
|
+
<input type="checkbox" id="tsd-filter-externals" checked />
|
|
43
|
+
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="tsd-page-title">
|
|
52
|
+
<div class="container">
|
|
53
|
+
<ul class="tsd-breadcrumb">
|
|
54
|
+
<li>
|
|
55
|
+
<a href="../modules.html">@secrecy/lib</a>
|
|
56
|
+
</li>
|
|
57
|
+
<li>
|
|
58
|
+
<a href="index.html">index</a>
|
|
59
|
+
</li>
|
|
60
|
+
</ul>
|
|
61
|
+
<h1>Module index</h1>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</header>
|
|
65
|
+
<div class="container container-main">
|
|
66
|
+
<div class="row">
|
|
67
|
+
<div class="col-8 col-content">
|
|
68
|
+
<section class="tsd-panel-group tsd-index-group">
|
|
69
|
+
<h2>Index</h2>
|
|
70
|
+
<section class="tsd-panel tsd-index-panel">
|
|
71
|
+
<div class="tsd-index-content">
|
|
72
|
+
<section class="tsd-index-section ">
|
|
73
|
+
<h3>References</h3>
|
|
74
|
+
<ul class="tsd-index-list">
|
|
75
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#AppSession" class="tsd-kind-icon">App<wbr>Session</a></li>
|
|
76
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#BaseClient" class="tsd-kind-icon">Base<wbr>Client</a></li>
|
|
77
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#BaseMail" class="tsd-kind-icon">Base<wbr>Mail</a></li>
|
|
78
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#BlogItem" class="tsd-kind-icon">Blog<wbr>Item</a></li>
|
|
79
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#CloudLimits" class="tsd-kind-icon">Cloud<wbr>Limits</a></li>
|
|
80
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#DownloadProgress" class="tsd-kind-icon">Download<wbr>Progress</a></li>
|
|
81
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#DraftMail" class="tsd-kind-icon">Draft<wbr>Mail</a></li>
|
|
82
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#FaqItem" class="tsd-kind-icon">Faq<wbr>Item</a></li>
|
|
83
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#File" class="tsd-kind-icon">File</a></li>
|
|
84
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Folder" class="tsd-kind-icon">Folder</a></li>
|
|
85
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#FolderBreadcrumbItem" class="tsd-kind-icon">Folder<wbr>Breadcrumb<wbr>Item</a></li>
|
|
86
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#FolderSize" class="tsd-kind-icon">Folder<wbr>Size</a></li>
|
|
87
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#FolderWithLinks" class="tsd-kind-icon">Folder<wbr>With<wbr>Links</a></li>
|
|
88
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#HashInfos" class="tsd-kind-icon">Hash<wbr>Infos</a></li>
|
|
89
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#KeyPair" class="tsd-kind-icon">Key<wbr>Pair</a></li>
|
|
90
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Lang" class="tsd-kind-icon">Lang</a></li>
|
|
91
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Limits" class="tsd-kind-icon">Limits</a></li>
|
|
92
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Mail" class="tsd-kind-icon">Mail</a></li>
|
|
93
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#MailFile" class="tsd-kind-icon">Mail<wbr>File</a></li>
|
|
94
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#MailIntegrity" class="tsd-kind-icon">Mail<wbr>Integrity</a></li>
|
|
95
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#MailLimits" class="tsd-kind-icon">Mail<wbr>Limits</a></li>
|
|
96
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#MailLimitsValues" class="tsd-kind-icon">Mail<wbr>Limits<wbr>Values</a></li>
|
|
97
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#MailRecipientInput" class="tsd-kind-icon">Mail<wbr>Recipient<wbr>Input</a></li>
|
|
98
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#MailType" class="tsd-kind-icon">Mail<wbr>Type</a></li>
|
|
99
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#NewMail" class="tsd-kind-icon">New<wbr>Mail</a></li>
|
|
100
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#PaymentInfos" class="tsd-kind-icon">Payment<wbr>Infos</a></li>
|
|
101
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Plan" class="tsd-kind-icon">Plan</a></li>
|
|
102
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#PlanKind" class="tsd-kind-icon">Plan<wbr>Kind</a></li>
|
|
103
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Progress" class="tsd-kind-icon">Progress</a></li>
|
|
104
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#ProgressCallback" class="tsd-kind-icon">Progress<wbr>Callback</a></li>
|
|
105
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#PublicUser" class="tsd-kind-icon">Public<wbr>User</a></li>
|
|
106
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#QueryLimits" class="tsd-kind-icon">Query<wbr>Limits</a></li>
|
|
107
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#ReceivedMail" class="tsd-kind-icon">Received<wbr>Mail</a></li>
|
|
108
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#RecurlyInvoices" class="tsd-kind-icon">Recurly<wbr>Invoices</a></li>
|
|
109
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Rights" class="tsd-kind-icon">Rights</a></li>
|
|
110
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SecrecyClient" class="tsd-kind-icon">Secrecy<wbr>Client</a></li>
|
|
111
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SecrecyEnv" class="tsd-kind-icon">Secrecy<wbr>Env</a></li>
|
|
112
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SecrecyPlansCodes" class="tsd-kind-icon">Secrecy<wbr>Plans<wbr>Codes</a></li>
|
|
113
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SecrecyUserApp" class="tsd-kind-icon">Secrecy<wbr>User<wbr>App</a></li>
|
|
114
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SendReport" class="tsd-kind-icon">Send<wbr>Report</a></li>
|
|
115
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SentMail" class="tsd-kind-icon">Sent<wbr>Mail</a></li>
|
|
116
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Session" class="tsd-kind-icon">Session</a></li>
|
|
117
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#StoreBuddy" class="tsd-kind-icon">Store<wbr>Buddy</a></li>
|
|
118
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Subscription" class="tsd-kind-icon">Subscription</a></li>
|
|
119
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SubscriptionCollectionMethod" class="tsd-kind-icon">Subscription<wbr>Collection<wbr>Method</a></li>
|
|
120
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#SubscriptionState" class="tsd-kind-icon">Subscription<wbr>State</a></li>
|
|
121
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#UseSecrecyParams" class="tsd-kind-icon">Use<wbr>Secrecy<wbr>Params</a></li>
|
|
122
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#User" class="tsd-kind-icon">User</a></li>
|
|
123
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#UserAppSettings" class="tsd-kind-icon">User<wbr>App<wbr>Settings</a></li>
|
|
124
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#UserData" class="tsd-kind-icon">User<wbr>Data</a></li>
|
|
125
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#UserSession" class="tsd-kind-icon">User<wbr>Session</a></li>
|
|
126
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#VFile" class="tsd-kind-icon">VFile</a></li>
|
|
127
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#VFileWithFolder" class="tsd-kind-icon">VFile<wbr>With<wbr>Folder</a></li>
|
|
128
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#Value" class="tsd-kind-icon">Value</a></li>
|
|
129
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#WaitingReceivedMail" class="tsd-kind-icon">Waiting<wbr>Received<wbr>Mail</a></li>
|
|
130
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#decryptAnonymous" class="tsd-kind-icon">decrypt<wbr>Anonymous</a></li>
|
|
131
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#decryptCryptoBox" class="tsd-kind-icon">decrypt<wbr>Crypto<wbr>Box</a></li>
|
|
132
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#decryptSecretBox" class="tsd-kind-icon">decrypt<wbr>Secret<wbr>Box</a></li>
|
|
133
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#encryptAnonymous" class="tsd-kind-icon">encrypt<wbr>Anonymous</a></li>
|
|
134
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#encryptCryptoBox" class="tsd-kind-icon">encrypt<wbr>Crypto<wbr>Box</a></li>
|
|
135
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#encryptSecretBox" class="tsd-kind-icon">encrypt<wbr>Secret<wbr>Box</a></li>
|
|
136
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#generateCryptoBoxKeyPair" class="tsd-kind-icon">generate<wbr>Crypto<wbr>Box<wbr>Key<wbr>Pair</a></li>
|
|
137
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#generateSecretBoxKey" class="tsd-kind-icon">generate<wbr>Secret<wbr>Box<wbr>Key</a></li>
|
|
138
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#getSecrecyClient" class="tsd-kind-icon">get<wbr>Secrecy<wbr>Client</a></li>
|
|
139
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#isFolder" class="tsd-kind-icon">is<wbr>Folder</a></li>
|
|
140
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#isVFile" class="tsd-kind-icon">isVFile</a></li>
|
|
141
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#isValidPlan" class="tsd-kind-icon">is<wbr>Valid<wbr>Plan</a></li>
|
|
142
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#login" class="tsd-kind-icon">login</a></li>
|
|
143
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#parseInfos" class="tsd-kind-icon">parse<wbr>Infos</a></li>
|
|
144
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#setup" class="tsd-kind-icon">setup</a></li>
|
|
145
|
+
<li class="tsd-kind-reference tsd-parent-kind-module"><a href="index.html#storeBuddy" class="tsd-kind-icon">store<wbr>Buddy</a></li>
|
|
146
|
+
</ul>
|
|
147
|
+
</section>
|
|
148
|
+
<section class="tsd-index-section tsd-is-external">
|
|
149
|
+
<h3>Namespaces</h3>
|
|
150
|
+
<ul class="tsd-index-list">
|
|
151
|
+
<li class="tsd-kind-namespace tsd-parent-kind-module tsd-is-external"><a href="index.sodium.html" class="tsd-kind-icon">sodium</a></li>
|
|
152
|
+
</ul>
|
|
153
|
+
</section>
|
|
154
|
+
</div>
|
|
155
|
+
</section>
|
|
156
|
+
</section>
|
|
157
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
158
|
+
<h2>References</h2>
|
|
159
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
160
|
+
<a name="AppSession" class="tsd-anchor"></a>
|
|
161
|
+
<h3>App<wbr>Session</h3>
|
|
162
|
+
Re-exports <a href="client_types.html#AppSession">AppSession</a>
|
|
163
|
+
</section>
|
|
164
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
165
|
+
<a name="BaseClient" class="tsd-anchor"></a>
|
|
166
|
+
<h3>Base<wbr>Client</h3>
|
|
167
|
+
Re-exports <a href="../classes/BaseClient.BaseClient-1.html">BaseClient</a>
|
|
168
|
+
</section>
|
|
169
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
170
|
+
<a name="BaseMail" class="tsd-anchor"></a>
|
|
171
|
+
<h3>Base<wbr>Mail</h3>
|
|
172
|
+
Re-exports <a href="client_types.html#BaseMail">BaseMail</a>
|
|
173
|
+
</section>
|
|
174
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
175
|
+
<a name="BlogItem" class="tsd-anchor"></a>
|
|
176
|
+
<h3>Blog<wbr>Item</h3>
|
|
177
|
+
Re-exports <a href="BaseClient.html#BlogItem">BlogItem</a>
|
|
178
|
+
</section>
|
|
179
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
180
|
+
<a name="CloudLimits" class="tsd-anchor"></a>
|
|
181
|
+
<h3>Cloud<wbr>Limits</h3>
|
|
182
|
+
Re-exports <a href="BaseClient.html#CloudLimits">CloudLimits</a>
|
|
183
|
+
</section>
|
|
184
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
185
|
+
<a name="DownloadProgress" class="tsd-anchor"></a>
|
|
186
|
+
<h3>Download<wbr>Progress</h3>
|
|
187
|
+
Re-exports <a href="BaseClient.html#DownloadProgress">DownloadProgress</a>
|
|
188
|
+
</section>
|
|
189
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
190
|
+
<a name="DraftMail" class="tsd-anchor"></a>
|
|
191
|
+
<h3>Draft<wbr>Mail</h3>
|
|
192
|
+
Re-exports <a href="../interfaces/client_types.DraftMail.html">DraftMail</a>
|
|
193
|
+
</section>
|
|
194
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
195
|
+
<a name="FaqItem" class="tsd-anchor"></a>
|
|
196
|
+
<h3>Faq<wbr>Item</h3>
|
|
197
|
+
Re-exports <a href="BaseClient.html#FaqItem">FaqItem</a>
|
|
198
|
+
</section>
|
|
199
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
200
|
+
<a name="File" class="tsd-anchor"></a>
|
|
201
|
+
<h3>File</h3>
|
|
202
|
+
Re-exports <a href="client_types_File.html#File">File</a>
|
|
203
|
+
</section>
|
|
204
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
205
|
+
<a name="Folder" class="tsd-anchor"></a>
|
|
206
|
+
<h3>Folder</h3>
|
|
207
|
+
Re-exports <a href="client_types_Folder.html#Folder">Folder</a>
|
|
208
|
+
</section>
|
|
209
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
210
|
+
<a name="FolderBreadcrumbItem" class="tsd-anchor"></a>
|
|
211
|
+
<h3>Folder<wbr>Breadcrumb<wbr>Item</h3>
|
|
212
|
+
Re-exports <a href="client_types_Folder.html#FolderBreadcrumbItem">FolderBreadcrumbItem</a>
|
|
213
|
+
</section>
|
|
214
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
215
|
+
<a name="FolderSize" class="tsd-anchor"></a>
|
|
216
|
+
<h3>Folder<wbr>Size</h3>
|
|
217
|
+
Re-exports <a href="BaseClient.html#FolderSize">FolderSize</a>
|
|
218
|
+
</section>
|
|
219
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
220
|
+
<a name="FolderWithLinks" class="tsd-anchor"></a>
|
|
221
|
+
<h3>Folder<wbr>With<wbr>Links</h3>
|
|
222
|
+
Re-exports <a href="client_types_Folder.html#FolderWithLinks">FolderWithLinks</a>
|
|
223
|
+
</section>
|
|
224
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
225
|
+
<a name="HashInfos" class="tsd-anchor"></a>
|
|
226
|
+
<h3>Hash<wbr>Infos</h3>
|
|
227
|
+
Re-exports <a href="client_helpers.html#HashInfos">HashInfos</a>
|
|
228
|
+
</section>
|
|
229
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
230
|
+
<a name="KeyPair" class="tsd-anchor"></a>
|
|
231
|
+
<h3>Key<wbr>Pair</h3>
|
|
232
|
+
Re-exports <a href="../interfaces/crypto.KeyPair.html">KeyPair</a>
|
|
233
|
+
</section>
|
|
234
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
235
|
+
<a name="Lang" class="tsd-anchor"></a>
|
|
236
|
+
<h3>Lang</h3>
|
|
237
|
+
Re-exports <a href="BaseClient.html#Lang">Lang</a>
|
|
238
|
+
</section>
|
|
239
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
240
|
+
<a name="Limits" class="tsd-anchor"></a>
|
|
241
|
+
<h3>Limits</h3>
|
|
242
|
+
Re-exports <a href="BaseClient.html#Limits">Limits</a>
|
|
243
|
+
</section>
|
|
244
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
245
|
+
<a name="Mail" class="tsd-anchor"></a>
|
|
246
|
+
<h3>Mail</h3>
|
|
247
|
+
Re-exports <a href="client_types.html#Mail">Mail</a>
|
|
248
|
+
</section>
|
|
249
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
250
|
+
<a name="MailFile" class="tsd-anchor"></a>
|
|
251
|
+
<h3>Mail<wbr>File</h3>
|
|
252
|
+
Re-exports <a href="client_types.html#MailFile">MailFile</a>
|
|
253
|
+
</section>
|
|
254
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
255
|
+
<a name="MailIntegrity" class="tsd-anchor"></a>
|
|
256
|
+
<h3>Mail<wbr>Integrity</h3>
|
|
257
|
+
Re-exports <a href="client_types.html#MailIntegrity">MailIntegrity</a>
|
|
258
|
+
</section>
|
|
259
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
260
|
+
<a name="MailLimits" class="tsd-anchor"></a>
|
|
261
|
+
<h3>Mail<wbr>Limits</h3>
|
|
262
|
+
Re-exports <a href="BaseClient.html#MailLimits">MailLimits</a>
|
|
263
|
+
</section>
|
|
264
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
265
|
+
<a name="MailLimitsValues" class="tsd-anchor"></a>
|
|
266
|
+
<h3>Mail<wbr>Limits<wbr>Values</h3>
|
|
267
|
+
Re-exports <a href="BaseClient.html#MailLimitsValues">MailLimitsValues</a>
|
|
268
|
+
</section>
|
|
269
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
270
|
+
<a name="MailRecipientInput" class="tsd-anchor"></a>
|
|
271
|
+
<h3>Mail<wbr>Recipient<wbr>Input</h3>
|
|
272
|
+
Re-exports <a href="client_types.html#MailRecipientInput">MailRecipientInput</a>
|
|
273
|
+
</section>
|
|
274
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
275
|
+
<a name="MailType" class="tsd-anchor"></a>
|
|
276
|
+
<h3>Mail<wbr>Type</h3>
|
|
277
|
+
Re-exports <a href="client_types.html#MailType">MailType</a>
|
|
278
|
+
</section>
|
|
279
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
280
|
+
<a name="NewMail" class="tsd-anchor"></a>
|
|
281
|
+
<h3>New<wbr>Mail</h3>
|
|
282
|
+
Re-exports <a href="client.html#NewMail">NewMail</a>
|
|
283
|
+
</section>
|
|
284
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
285
|
+
<a name="PaymentInfos" class="tsd-anchor"></a>
|
|
286
|
+
<h3>Payment<wbr>Infos</h3>
|
|
287
|
+
Re-exports <a href="BaseClient.html#PaymentInfos">PaymentInfos</a>
|
|
288
|
+
</section>
|
|
289
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
290
|
+
<a name="Plan" class="tsd-anchor"></a>
|
|
291
|
+
<h3>Plan</h3>
|
|
292
|
+
Re-exports <a href="BaseClient.html#Plan">Plan</a>
|
|
293
|
+
</section>
|
|
294
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
295
|
+
<a name="PlanKind" class="tsd-anchor"></a>
|
|
296
|
+
<h3>Plan<wbr>Kind</h3>
|
|
297
|
+
Re-exports <a href="BaseClient.html#PlanKind">PlanKind</a>
|
|
298
|
+
</section>
|
|
299
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
300
|
+
<a name="Progress" class="tsd-anchor"></a>
|
|
301
|
+
<h3>Progress</h3>
|
|
302
|
+
Re-exports <a href="crypto_file.html#Progress">Progress</a>
|
|
303
|
+
</section>
|
|
304
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
305
|
+
<a name="ProgressCallback" class="tsd-anchor"></a>
|
|
306
|
+
<h3>Progress<wbr>Callback</h3>
|
|
307
|
+
Re-exports <a href="client.html#ProgressCallback">ProgressCallback</a>
|
|
308
|
+
</section>
|
|
309
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
310
|
+
<a name="PublicUser" class="tsd-anchor"></a>
|
|
311
|
+
<h3>Public<wbr>User</h3>
|
|
312
|
+
Re-exports <a href="client_types.html#PublicUser">PublicUser</a>
|
|
313
|
+
</section>
|
|
314
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
315
|
+
<a name="QueryLimits" class="tsd-anchor"></a>
|
|
316
|
+
<h3>Query<wbr>Limits</h3>
|
|
317
|
+
Re-exports <a href="BaseClient.html#QueryLimits">QueryLimits</a>
|
|
318
|
+
</section>
|
|
319
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
320
|
+
<a name="ReceivedMail" class="tsd-anchor"></a>
|
|
321
|
+
<h3>Received<wbr>Mail</h3>
|
|
322
|
+
Re-exports <a href="../interfaces/client_types.ReceivedMail.html">ReceivedMail</a>
|
|
323
|
+
</section>
|
|
324
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
325
|
+
<a name="RecurlyInvoices" class="tsd-anchor"></a>
|
|
326
|
+
<h3>Recurly<wbr>Invoices</h3>
|
|
327
|
+
Re-exports <a href="BaseClient.html#RecurlyInvoices">RecurlyInvoices</a>
|
|
328
|
+
</section>
|
|
329
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
330
|
+
<a name="Rights" class="tsd-anchor"></a>
|
|
331
|
+
<h3>Rights</h3>
|
|
332
|
+
Re-exports <a href="client_types.html#Rights">Rights</a>
|
|
333
|
+
</section>
|
|
334
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
335
|
+
<a name="SecrecyClient" class="tsd-anchor"></a>
|
|
336
|
+
<h3>Secrecy<wbr>Client</h3>
|
|
337
|
+
Re-exports <a href="../classes/client.SecrecyClient.html">SecrecyClient</a>
|
|
338
|
+
</section>
|
|
339
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
340
|
+
<a name="SecrecyEnv" class="tsd-anchor"></a>
|
|
341
|
+
<h3>Secrecy<wbr>Env</h3>
|
|
342
|
+
Re-exports <a href="client_helpers.html#SecrecyEnv">SecrecyEnv</a>
|
|
343
|
+
</section>
|
|
344
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
345
|
+
<a name="SecrecyPlansCodes" class="tsd-anchor"></a>
|
|
346
|
+
<h3>Secrecy<wbr>Plans<wbr>Codes</h3>
|
|
347
|
+
Re-exports <a href="BaseClient.html#SecrecyPlansCodes">SecrecyPlansCodes</a>
|
|
348
|
+
</section>
|
|
349
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
350
|
+
<a name="SecrecyUserApp" class="tsd-anchor"></a>
|
|
351
|
+
<h3>Secrecy<wbr>User<wbr>App</h3>
|
|
352
|
+
Re-exports <a href="client_types.html#SecrecyUserApp">SecrecyUserApp</a>
|
|
353
|
+
</section>
|
|
354
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
355
|
+
<a name="SendReport" class="tsd-anchor"></a>
|
|
356
|
+
<h3>Send<wbr>Report</h3>
|
|
357
|
+
Re-exports <a href="BaseClient.html#SendReport">SendReport</a>
|
|
358
|
+
</section>
|
|
359
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
360
|
+
<a name="SentMail" class="tsd-anchor"></a>
|
|
361
|
+
<h3>Sent<wbr>Mail</h3>
|
|
362
|
+
Re-exports <a href="../interfaces/client_types.SentMail.html">SentMail</a>
|
|
363
|
+
</section>
|
|
364
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
365
|
+
<a name="Session" class="tsd-anchor"></a>
|
|
366
|
+
<h3>Session</h3>
|
|
367
|
+
Re-exports <a href="client_types.html#Session">Session</a>
|
|
368
|
+
</section>
|
|
369
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
370
|
+
<a name="StoreBuddy" class="tsd-anchor"></a>
|
|
371
|
+
<h3>Store<wbr>Buddy</h3>
|
|
372
|
+
Re-exports <a href="../interfaces/utils_store_buddy.StoreBuddy.html">StoreBuddy</a>
|
|
373
|
+
</section>
|
|
374
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
375
|
+
<a name="Subscription" class="tsd-anchor"></a>
|
|
376
|
+
<h3>Subscription</h3>
|
|
377
|
+
Re-exports <a href="BaseClient.html#Subscription">Subscription</a>
|
|
378
|
+
</section>
|
|
379
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
380
|
+
<a name="SubscriptionCollectionMethod" class="tsd-anchor"></a>
|
|
381
|
+
<h3>Subscription<wbr>Collection<wbr>Method</h3>
|
|
382
|
+
Re-exports <a href="BaseClient.html#SubscriptionCollectionMethod">SubscriptionCollectionMethod</a>
|
|
383
|
+
</section>
|
|
384
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
385
|
+
<a name="SubscriptionState" class="tsd-anchor"></a>
|
|
386
|
+
<h3>Subscription<wbr>State</h3>
|
|
387
|
+
Re-exports <a href="BaseClient.html#SubscriptionState">SubscriptionState</a>
|
|
388
|
+
</section>
|
|
389
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
390
|
+
<a name="UseSecrecyParams" class="tsd-anchor"></a>
|
|
391
|
+
<h3>Use<wbr>Secrecy<wbr>Params</h3>
|
|
392
|
+
Re-exports <a href="client_helpers.html#UseSecrecyParams">UseSecrecyParams</a>
|
|
393
|
+
</section>
|
|
394
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
395
|
+
<a name="User" class="tsd-anchor"></a>
|
|
396
|
+
<h3>User</h3>
|
|
397
|
+
Re-exports <a href="BaseClient.html#User">User</a>
|
|
398
|
+
</section>
|
|
399
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
400
|
+
<a name="UserAppSettings" class="tsd-anchor"></a>
|
|
401
|
+
<h3>User<wbr>App<wbr>Settings</h3>
|
|
402
|
+
Re-exports <a href="client_types_UserAppSettings.html#UserAppSettings">UserAppSettings</a>
|
|
403
|
+
</section>
|
|
404
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
405
|
+
<a name="UserData" class="tsd-anchor"></a>
|
|
406
|
+
<h3>User<wbr>Data</h3>
|
|
407
|
+
Re-exports <a href="BaseClient.html#UserData">UserData</a>
|
|
408
|
+
</section>
|
|
409
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
410
|
+
<a name="UserSession" class="tsd-anchor"></a>
|
|
411
|
+
<h3>User<wbr>Session</h3>
|
|
412
|
+
Re-exports <a href="client_types.html#UserSession">UserSession</a>
|
|
413
|
+
</section>
|
|
414
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
415
|
+
<a name="VFile" class="tsd-anchor"></a>
|
|
416
|
+
<h3>VFile</h3>
|
|
417
|
+
Re-exports <a href="client_types_VFile.html#VFile">VFile</a>
|
|
418
|
+
</section>
|
|
419
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
420
|
+
<a name="VFileWithFolder" class="tsd-anchor"></a>
|
|
421
|
+
<h3>VFile<wbr>With<wbr>Folder</h3>
|
|
422
|
+
Re-exports <a href="client_types_VFile.html#VFileWithFolder">VFileWithFolder</a>
|
|
423
|
+
</section>
|
|
424
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
425
|
+
<a name="Value" class="tsd-anchor"></a>
|
|
426
|
+
<h3>Value</h3>
|
|
427
|
+
Re-exports <a href="client_helpers.html#Value">Value</a>
|
|
428
|
+
</section>
|
|
429
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
430
|
+
<a name="WaitingReceivedMail" class="tsd-anchor"></a>
|
|
431
|
+
<h3>Waiting<wbr>Received<wbr>Mail</h3>
|
|
432
|
+
Re-exports <a href="client_types.html#WaitingReceivedMail">WaitingReceivedMail</a>
|
|
433
|
+
</section>
|
|
434
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
435
|
+
<a name="decryptAnonymous" class="tsd-anchor"></a>
|
|
436
|
+
<h3>decrypt<wbr>Anonymous</h3>
|
|
437
|
+
Re-exports <a href="crypto.html#decryptAnonymous">decryptAnonymous</a>
|
|
438
|
+
</section>
|
|
439
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
440
|
+
<a name="decryptCryptoBox" class="tsd-anchor"></a>
|
|
441
|
+
<h3>decrypt<wbr>Crypto<wbr>Box</h3>
|
|
442
|
+
Re-exports <a href="crypto.html#decryptCryptoBox">decryptCryptoBox</a>
|
|
443
|
+
</section>
|
|
444
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
445
|
+
<a name="decryptSecretBox" class="tsd-anchor"></a>
|
|
446
|
+
<h3>decrypt<wbr>Secret<wbr>Box</h3>
|
|
447
|
+
Re-exports <a href="crypto.html#decryptSecretBox">decryptSecretBox</a>
|
|
448
|
+
</section>
|
|
449
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
450
|
+
<a name="encryptAnonymous" class="tsd-anchor"></a>
|
|
451
|
+
<h3>encrypt<wbr>Anonymous</h3>
|
|
452
|
+
Re-exports <a href="crypto.html#encryptAnonymous">encryptAnonymous</a>
|
|
453
|
+
</section>
|
|
454
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
455
|
+
<a name="encryptCryptoBox" class="tsd-anchor"></a>
|
|
456
|
+
<h3>encrypt<wbr>Crypto<wbr>Box</h3>
|
|
457
|
+
Re-exports <a href="crypto.html#encryptCryptoBox">encryptCryptoBox</a>
|
|
458
|
+
</section>
|
|
459
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
460
|
+
<a name="encryptSecretBox" class="tsd-anchor"></a>
|
|
461
|
+
<h3>encrypt<wbr>Secret<wbr>Box</h3>
|
|
462
|
+
Re-exports <a href="crypto.html#encryptSecretBox">encryptSecretBox</a>
|
|
463
|
+
</section>
|
|
464
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
465
|
+
<a name="generateCryptoBoxKeyPair" class="tsd-anchor"></a>
|
|
466
|
+
<h3>generate<wbr>Crypto<wbr>Box<wbr>Key<wbr>Pair</h3>
|
|
467
|
+
Re-exports <a href="crypto.html#generateCryptoBoxKeyPair">generateCryptoBoxKeyPair</a>
|
|
468
|
+
</section>
|
|
469
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
470
|
+
<a name="generateSecretBoxKey" class="tsd-anchor"></a>
|
|
471
|
+
<h3>generate<wbr>Secret<wbr>Box<wbr>Key</h3>
|
|
472
|
+
Re-exports <a href="crypto.html#generateSecretBoxKey">generateSecretBoxKey</a>
|
|
473
|
+
</section>
|
|
474
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
475
|
+
<a name="getSecrecyClient" class="tsd-anchor"></a>
|
|
476
|
+
<h3>get<wbr>Secrecy<wbr>Client</h3>
|
|
477
|
+
Re-exports <a href="client_helpers.html#getSecrecyClient">getSecrecyClient</a>
|
|
478
|
+
</section>
|
|
479
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
480
|
+
<a name="isFolder" class="tsd-anchor"></a>
|
|
481
|
+
<h3>is<wbr>Folder</h3>
|
|
482
|
+
Re-exports <a href="client_types_Folder.html#isFolder">isFolder</a>
|
|
483
|
+
</section>
|
|
484
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
485
|
+
<a name="isVFile" class="tsd-anchor"></a>
|
|
486
|
+
<h3>isVFile</h3>
|
|
487
|
+
Re-exports <a href="client_types_VFile.html#isVFile">isVFile</a>
|
|
488
|
+
</section>
|
|
489
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
490
|
+
<a name="isValidPlan" class="tsd-anchor"></a>
|
|
491
|
+
<h3>is<wbr>Valid<wbr>Plan</h3>
|
|
492
|
+
Re-exports <a href="BaseClient.html#isValidPlan">isValidPlan</a>
|
|
493
|
+
</section>
|
|
494
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
495
|
+
<a name="login" class="tsd-anchor"></a>
|
|
496
|
+
<h3>login</h3>
|
|
497
|
+
Re-exports <a href="client_helpers.html#login">login</a>
|
|
498
|
+
</section>
|
|
499
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
500
|
+
<a name="parseInfos" class="tsd-anchor"></a>
|
|
501
|
+
<h3>parse<wbr>Infos</h3>
|
|
502
|
+
Re-exports <a href="client_helpers.html#parseInfos">parseInfos</a>
|
|
503
|
+
</section>
|
|
504
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
505
|
+
<a name="setup" class="tsd-anchor"></a>
|
|
506
|
+
<h3>setup</h3>
|
|
507
|
+
Re-exports <a href="sodium.html#setup">setup</a>
|
|
508
|
+
</section>
|
|
509
|
+
<section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
|
|
510
|
+
<a name="storeBuddy" class="tsd-anchor"></a>
|
|
511
|
+
<h3>store<wbr>Buddy</h3>
|
|
512
|
+
Re-exports <a href="utils_store_buddy.html#storeBuddy">storeBuddy</a>
|
|
513
|
+
</section>
|
|
514
|
+
</section>
|
|
515
|
+
</div>
|
|
516
|
+
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
517
|
+
<nav class="tsd-navigation primary">
|
|
518
|
+
<ul>
|
|
519
|
+
<li class=" ">
|
|
520
|
+
<a href="../modules.html">Modules</a>
|
|
521
|
+
</li>
|
|
522
|
+
<li class="current tsd-kind-module">
|
|
523
|
+
<a href="index.html">index</a>
|
|
524
|
+
<ul>
|
|
525
|
+
<li class=" tsd-kind-namespace tsd-parent-kind-module tsd-is-external">
|
|
526
|
+
<a href="index.sodium.html">sodium</a>
|
|
527
|
+
</li>
|
|
528
|
+
</ul>
|
|
529
|
+
</li>
|
|
530
|
+
</ul>
|
|
531
|
+
</nav>
|
|
532
|
+
<nav class="tsd-navigation secondary menu-sticky">
|
|
533
|
+
<ul class="before-current">
|
|
534
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
535
|
+
<a href="index.html#AppSession" class="tsd-kind-icon">App<wbr>Session</a>
|
|
536
|
+
</li>
|
|
537
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
538
|
+
<a href="index.html#BaseClient" class="tsd-kind-icon">Base<wbr>Client</a>
|
|
539
|
+
</li>
|
|
540
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
541
|
+
<a href="index.html#BaseMail" class="tsd-kind-icon">Base<wbr>Mail</a>
|
|
542
|
+
</li>
|
|
543
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
544
|
+
<a href="index.html#BlogItem" class="tsd-kind-icon">Blog<wbr>Item</a>
|
|
545
|
+
</li>
|
|
546
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
547
|
+
<a href="index.html#CloudLimits" class="tsd-kind-icon">Cloud<wbr>Limits</a>
|
|
548
|
+
</li>
|
|
549
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
550
|
+
<a href="index.html#DownloadProgress" class="tsd-kind-icon">Download<wbr>Progress</a>
|
|
551
|
+
</li>
|
|
552
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
553
|
+
<a href="index.html#DraftMail" class="tsd-kind-icon">Draft<wbr>Mail</a>
|
|
554
|
+
</li>
|
|
555
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
556
|
+
<a href="index.html#FaqItem" class="tsd-kind-icon">Faq<wbr>Item</a>
|
|
557
|
+
</li>
|
|
558
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
559
|
+
<a href="index.html#File" class="tsd-kind-icon">File</a>
|
|
560
|
+
</li>
|
|
561
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
562
|
+
<a href="index.html#Folder" class="tsd-kind-icon">Folder</a>
|
|
563
|
+
</li>
|
|
564
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
565
|
+
<a href="index.html#FolderBreadcrumbItem" class="tsd-kind-icon">Folder<wbr>Breadcrumb<wbr>Item</a>
|
|
566
|
+
</li>
|
|
567
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
568
|
+
<a href="index.html#FolderSize" class="tsd-kind-icon">Folder<wbr>Size</a>
|
|
569
|
+
</li>
|
|
570
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
571
|
+
<a href="index.html#FolderWithLinks" class="tsd-kind-icon">Folder<wbr>With<wbr>Links</a>
|
|
572
|
+
</li>
|
|
573
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
574
|
+
<a href="index.html#HashInfos" class="tsd-kind-icon">Hash<wbr>Infos</a>
|
|
575
|
+
</li>
|
|
576
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
577
|
+
<a href="index.html#KeyPair" class="tsd-kind-icon">Key<wbr>Pair</a>
|
|
578
|
+
</li>
|
|
579
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
580
|
+
<a href="index.html#Lang" class="tsd-kind-icon">Lang</a>
|
|
581
|
+
</li>
|
|
582
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
583
|
+
<a href="index.html#Limits" class="tsd-kind-icon">Limits</a>
|
|
584
|
+
</li>
|
|
585
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
586
|
+
<a href="index.html#Mail" class="tsd-kind-icon">Mail</a>
|
|
587
|
+
</li>
|
|
588
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
589
|
+
<a href="index.html#MailFile" class="tsd-kind-icon">Mail<wbr>File</a>
|
|
590
|
+
</li>
|
|
591
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
592
|
+
<a href="index.html#MailIntegrity" class="tsd-kind-icon">Mail<wbr>Integrity</a>
|
|
593
|
+
</li>
|
|
594
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
595
|
+
<a href="index.html#MailLimits" class="tsd-kind-icon">Mail<wbr>Limits</a>
|
|
596
|
+
</li>
|
|
597
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
598
|
+
<a href="index.html#MailLimitsValues" class="tsd-kind-icon">Mail<wbr>Limits<wbr>Values</a>
|
|
599
|
+
</li>
|
|
600
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
601
|
+
<a href="index.html#MailRecipientInput" class="tsd-kind-icon">Mail<wbr>Recipient<wbr>Input</a>
|
|
602
|
+
</li>
|
|
603
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
604
|
+
<a href="index.html#MailType" class="tsd-kind-icon">Mail<wbr>Type</a>
|
|
605
|
+
</li>
|
|
606
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
607
|
+
<a href="index.html#NewMail" class="tsd-kind-icon">New<wbr>Mail</a>
|
|
608
|
+
</li>
|
|
609
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
610
|
+
<a href="index.html#PaymentInfos" class="tsd-kind-icon">Payment<wbr>Infos</a>
|
|
611
|
+
</li>
|
|
612
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
613
|
+
<a href="index.html#Plan" class="tsd-kind-icon">Plan</a>
|
|
614
|
+
</li>
|
|
615
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
616
|
+
<a href="index.html#PlanKind" class="tsd-kind-icon">Plan<wbr>Kind</a>
|
|
617
|
+
</li>
|
|
618
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
619
|
+
<a href="index.html#Progress" class="tsd-kind-icon">Progress</a>
|
|
620
|
+
</li>
|
|
621
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
622
|
+
<a href="index.html#ProgressCallback" class="tsd-kind-icon">Progress<wbr>Callback</a>
|
|
623
|
+
</li>
|
|
624
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
625
|
+
<a href="index.html#PublicUser" class="tsd-kind-icon">Public<wbr>User</a>
|
|
626
|
+
</li>
|
|
627
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
628
|
+
<a href="index.html#QueryLimits" class="tsd-kind-icon">Query<wbr>Limits</a>
|
|
629
|
+
</li>
|
|
630
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
631
|
+
<a href="index.html#ReceivedMail" class="tsd-kind-icon">Received<wbr>Mail</a>
|
|
632
|
+
</li>
|
|
633
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
634
|
+
<a href="index.html#RecurlyInvoices" class="tsd-kind-icon">Recurly<wbr>Invoices</a>
|
|
635
|
+
</li>
|
|
636
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
637
|
+
<a href="index.html#Rights" class="tsd-kind-icon">Rights</a>
|
|
638
|
+
</li>
|
|
639
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
640
|
+
<a href="index.html#SecrecyClient" class="tsd-kind-icon">Secrecy<wbr>Client</a>
|
|
641
|
+
</li>
|
|
642
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
643
|
+
<a href="index.html#SecrecyEnv" class="tsd-kind-icon">Secrecy<wbr>Env</a>
|
|
644
|
+
</li>
|
|
645
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
646
|
+
<a href="index.html#SecrecyPlansCodes" class="tsd-kind-icon">Secrecy<wbr>Plans<wbr>Codes</a>
|
|
647
|
+
</li>
|
|
648
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
649
|
+
<a href="index.html#SecrecyUserApp" class="tsd-kind-icon">Secrecy<wbr>User<wbr>App</a>
|
|
650
|
+
</li>
|
|
651
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
652
|
+
<a href="index.html#SendReport" class="tsd-kind-icon">Send<wbr>Report</a>
|
|
653
|
+
</li>
|
|
654
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
655
|
+
<a href="index.html#SentMail" class="tsd-kind-icon">Sent<wbr>Mail</a>
|
|
656
|
+
</li>
|
|
657
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
658
|
+
<a href="index.html#Session" class="tsd-kind-icon">Session</a>
|
|
659
|
+
</li>
|
|
660
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
661
|
+
<a href="index.html#StoreBuddy" class="tsd-kind-icon">Store<wbr>Buddy</a>
|
|
662
|
+
</li>
|
|
663
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
664
|
+
<a href="index.html#Subscription" class="tsd-kind-icon">Subscription</a>
|
|
665
|
+
</li>
|
|
666
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
667
|
+
<a href="index.html#SubscriptionCollectionMethod" class="tsd-kind-icon">Subscription<wbr>Collection<wbr>Method</a>
|
|
668
|
+
</li>
|
|
669
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
670
|
+
<a href="index.html#SubscriptionState" class="tsd-kind-icon">Subscription<wbr>State</a>
|
|
671
|
+
</li>
|
|
672
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
673
|
+
<a href="index.html#UseSecrecyParams" class="tsd-kind-icon">Use<wbr>Secrecy<wbr>Params</a>
|
|
674
|
+
</li>
|
|
675
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
676
|
+
<a href="index.html#User" class="tsd-kind-icon">User</a>
|
|
677
|
+
</li>
|
|
678
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
679
|
+
<a href="index.html#UserAppSettings" class="tsd-kind-icon">User<wbr>App<wbr>Settings</a>
|
|
680
|
+
</li>
|
|
681
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
682
|
+
<a href="index.html#UserData" class="tsd-kind-icon">User<wbr>Data</a>
|
|
683
|
+
</li>
|
|
684
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
685
|
+
<a href="index.html#UserSession" class="tsd-kind-icon">User<wbr>Session</a>
|
|
686
|
+
</li>
|
|
687
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
688
|
+
<a href="index.html#VFile" class="tsd-kind-icon">VFile</a>
|
|
689
|
+
</li>
|
|
690
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
691
|
+
<a href="index.html#VFileWithFolder" class="tsd-kind-icon">VFile<wbr>With<wbr>Folder</a>
|
|
692
|
+
</li>
|
|
693
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
694
|
+
<a href="index.html#Value" class="tsd-kind-icon">Value</a>
|
|
695
|
+
</li>
|
|
696
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
697
|
+
<a href="index.html#WaitingReceivedMail" class="tsd-kind-icon">Waiting<wbr>Received<wbr>Mail</a>
|
|
698
|
+
</li>
|
|
699
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
700
|
+
<a href="index.html#decryptAnonymous" class="tsd-kind-icon">decrypt<wbr>Anonymous</a>
|
|
701
|
+
</li>
|
|
702
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
703
|
+
<a href="index.html#decryptCryptoBox" class="tsd-kind-icon">decrypt<wbr>Crypto<wbr>Box</a>
|
|
704
|
+
</li>
|
|
705
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
706
|
+
<a href="index.html#decryptSecretBox" class="tsd-kind-icon">decrypt<wbr>Secret<wbr>Box</a>
|
|
707
|
+
</li>
|
|
708
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
709
|
+
<a href="index.html#encryptAnonymous" class="tsd-kind-icon">encrypt<wbr>Anonymous</a>
|
|
710
|
+
</li>
|
|
711
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
712
|
+
<a href="index.html#encryptCryptoBox" class="tsd-kind-icon">encrypt<wbr>Crypto<wbr>Box</a>
|
|
713
|
+
</li>
|
|
714
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
715
|
+
<a href="index.html#encryptSecretBox" class="tsd-kind-icon">encrypt<wbr>Secret<wbr>Box</a>
|
|
716
|
+
</li>
|
|
717
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
718
|
+
<a href="index.html#generateCryptoBoxKeyPair" class="tsd-kind-icon">generate<wbr>Crypto<wbr>Box<wbr>Key<wbr>Pair</a>
|
|
719
|
+
</li>
|
|
720
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
721
|
+
<a href="index.html#generateSecretBoxKey" class="tsd-kind-icon">generate<wbr>Secret<wbr>Box<wbr>Key</a>
|
|
722
|
+
</li>
|
|
723
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
724
|
+
<a href="index.html#getSecrecyClient" class="tsd-kind-icon">get<wbr>Secrecy<wbr>Client</a>
|
|
725
|
+
</li>
|
|
726
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
727
|
+
<a href="index.html#isFolder" class="tsd-kind-icon">is<wbr>Folder</a>
|
|
728
|
+
</li>
|
|
729
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
730
|
+
<a href="index.html#isVFile" class="tsd-kind-icon">isVFile</a>
|
|
731
|
+
</li>
|
|
732
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
733
|
+
<a href="index.html#isValidPlan" class="tsd-kind-icon">is<wbr>Valid<wbr>Plan</a>
|
|
734
|
+
</li>
|
|
735
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
736
|
+
<a href="index.html#login" class="tsd-kind-icon">login</a>
|
|
737
|
+
</li>
|
|
738
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
739
|
+
<a href="index.html#parseInfos" class="tsd-kind-icon">parse<wbr>Infos</a>
|
|
740
|
+
</li>
|
|
741
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
742
|
+
<a href="index.html#setup" class="tsd-kind-icon">setup</a>
|
|
743
|
+
</li>
|
|
744
|
+
<li class=" tsd-kind-reference tsd-parent-kind-module">
|
|
745
|
+
<a href="index.html#storeBuddy" class="tsd-kind-icon">store<wbr>Buddy</a>
|
|
746
|
+
</li>
|
|
747
|
+
</ul>
|
|
748
|
+
</nav>
|
|
749
|
+
</div>
|
|
750
|
+
</div>
|
|
751
|
+
</div>
|
|
752
|
+
<footer class="with-border-bottom">
|
|
753
|
+
<div class="container">
|
|
754
|
+
<h2>Legend</h2>
|
|
755
|
+
<div class="tsd-legend-group">
|
|
756
|
+
<ul class="tsd-legend">
|
|
757
|
+
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
|
758
|
+
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
|
759
|
+
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
|
760
|
+
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
|
761
|
+
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
|
762
|
+
</ul>
|
|
763
|
+
<ul class="tsd-legend">
|
|
764
|
+
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
|
765
|
+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
|
766
|
+
</ul>
|
|
767
|
+
<ul class="tsd-legend">
|
|
768
|
+
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
|
769
|
+
</ul>
|
|
770
|
+
</div>
|
|
771
|
+
</div>
|
|
772
|
+
</footer>
|
|
773
|
+
<div class="container tsd-generator">
|
|
774
|
+
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
|
|
775
|
+
</div>
|
|
776
|
+
<div class="overlay"></div>
|
|
777
|
+
<script src="../assets/js/main.js"></script>
|
|
778
|
+
</body>
|
|
779
|
+
</html>
|