aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-api/src/headers.ts
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-08-03 09:39:52 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-08-03 11:19:50 +0800
commit260640feed5dcda52936873397cf3b2c899718c6 (patch)
treeac843a20251ece74878152cc742dbe9806345dfe /packages/sra-api/src/headers.ts
parent36e7cb16aa086892ace18b2c6f3ed5a6e3b26a70 (diff)
downloaddexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.tar
dexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.tar.gz
dexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.tar.bz2
dexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.tar.lz
dexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.tar.xz
dexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.tar.zst
dexon-sol-tools-260640feed5dcda52936873397cf3b2c899718c6.zip
Refactor using some utility methods
Diffstat (limited to 'packages/sra-api/src/headers.ts')
-rw-r--r--packages/sra-api/src/headers.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/sra-api/src/headers.ts b/packages/sra-api/src/headers.ts
new file mode 100644
index 000000000..152254c9f
--- /dev/null
+++ b/packages/sra-api/src/headers.ts
@@ -0,0 +1,20 @@
+export const headers = {
+ 'X-Rate-Limit-Limit': {
+ description: `The maximum number of requests you're permitted to make per hour.`,
+ schema: {
+ type: 'integer',
+ },
+ },
+ 'X-Rate-Limit-Remaining': {
+ description: 'The number of requests remaining in the current rate limit window.',
+ schema: {
+ type: 'integer',
+ },
+ },
+ 'X-Rate-Limit-Reset': {
+ description: 'The time at which the current rate limit window resets in UTC epoch seconds.',
+ schema: {
+ type: 'integer',
+ },
+ },
+};