adjust pricing

This commit is contained in:
Asim Aslam
2021-06-08 09:47:44 +01:00
parent 47ceb4b2de
commit 702fda8269
10 changed files with 26 additions and 26 deletions

10
cache/publicapi.json vendored
View File

@@ -3,10 +3,10 @@
"icon": "💭", "icon": "💭",
"category": "storage", "category": "storage",
"pricing": { "pricing": {
"Cache.Get": 100, "Cache.Get": 1,
"Cache.Set": 100, "Cache.Set": 1,
"Cache.Delete": 100, "Cache.Delete": 1,
"Cache.Increment": 100, "Cache.Increment": 1,
"Cache.Decrement": 100 "Cache.Decrement": 1
} }
} }

View File

@@ -3,9 +3,9 @@
"icon": "📦", "icon": "📦",
"category": "storage", "category": "storage",
"pricing": { "pricing": {
"Db.Create": 100, "Db.Create": 1,
"Db.Read": 100, "Db.Read": 1,
"Db.Update": 100, "Db.Update": 1,
"Db.Delete": 100 "Db.Delete": 1
} }
} }

View File

@@ -23,7 +23,7 @@ message Record {
string created = 4; string created = 4;
// Time the file was updated e.g 2021-05-20T13:37:21Z // Time the file was updated e.g 2021-05-20T13:37:21Z
string updated = 5; string updated = 5;
// Any other associated metadata // Any other associated metadata as a map of key-value pairs
map<string,string> metadata = 6; map<string,string> metadata = 6;
} }

View File

@@ -3,9 +3,9 @@
"icon": "📁", "icon": "📁",
"category": "storage", "category": "storage",
"pricing": { "pricing": {
"File.List": 100, "File.List": 1,
"File.Read": 100, "File.Read": 1,
"File.Save": 100, "File.Save": 1,
"File.Delete": 100 "File.Delete": 1
} }
} }

View File

@@ -3,6 +3,6 @@
"icon": "🗺️", "icon": "🗺️",
"category": "location", "category": "location",
"pricing": { "pricing": {
"Ip.Lookup": 100 "Ip.Lookup": 1
} }
} }

View File

@@ -4,7 +4,7 @@
"category": "logistics", "category": "logistics",
"pricing": { "pricing": {
"Location.Read": 1, "Location.Read": 1,
"Location.Save": 10, "Location.Save": 1,
"Location.Search": 100 "Location.Search": 1
} }
} }

View File

@@ -3,7 +3,7 @@
"icon": "🔑", "icon": "🔑",
"category": "user", "category": "user",
"pricing": { "pricing": {
"Otp.Generate": 100, "Otp.Generate": 1,
"Otp.Validate": 100 "Otp.Validate": 1
} }
} }

View File

@@ -4,8 +4,8 @@
"category": "web", "category": "web",
"pricing": { "pricing": {
"Rss.Add": 100, "Rss.Add": 100,
"Rss.Feed": 100, "Rss.Feed": 1,
"Rss.Delete": 100, "Rss.Delete": 1,
"Rss.List": 100 "Rss.List": 1
} }
} }

View File

@@ -3,6 +3,6 @@
"icon": "🤔", "icon": "🤔",
"category": "web", "category": "web",
"pricing": { "pricing": {
"Sentiment.Analyze": 100 "Sentiment.Analyze": 1
} }
} }

View File

@@ -3,8 +3,8 @@
"icon": "🔗", "icon": "🔗",
"category": "web", "category": "web",
"pricing": { "pricing": {
"Url.List": 100, "Url.List": 1,
"Url.Proxy": 100, "Url.Proxy": 1,
"Url.Shorten": 100 "Url.Shorten": 1
} }
} }