From 444606114f5682eab173187d1e2da436ff43db57 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 27 May 2021 18:33:44 +0100 Subject: [PATCH] add the rest of pricing --- datastore/publicapi.json | 9 ++++++++- file/publicapi.json | 8 +++++++- image/publicapi.json | 7 ++++++- otp/publicapi.json | 6 +++++- 4 files changed, 26 insertions(+), 4 deletions(-) diff --git a/datastore/publicapi.json b/datastore/publicapi.json index 62f457c..606c457 100644 --- a/datastore/publicapi.json +++ b/datastore/publicapi.json @@ -1,5 +1,12 @@ { "name": "datastore", "icon": "📦", - "category": "storage" + "category": "storage", + "pricing": { + "Datastore.Create": 100, + "Datastore.Read": 100, + "Datastore.Update": 100, + "Datastore.Delete": 100, + "Datastore.CreateIndex": 100 + } } diff --git a/file/publicapi.json b/file/publicapi.json index 3c2c322..1ff2811 100644 --- a/file/publicapi.json +++ b/file/publicapi.json @@ -1,5 +1,11 @@ { "name": "file", "icon": "📁", - "category": "storage" + "category": "storage", + "pricing": { + "File.BatchSave": 100, + "File.List": 100, + "File.Read": 100, + "File.Save": 100 + } } diff --git a/image/publicapi.json b/image/publicapi.json index 30c5779..40d8d63 100644 --- a/image/publicapi.json +++ b/image/publicapi.json @@ -1,5 +1,10 @@ { "name": "image", "icon": "🖼️", - "category": "web" + "category": "web", + "pricing": { + "Image.Convert": 100, + "Image.Resize": 100, + "Image.Upload": 100 + } } diff --git a/otp/publicapi.json b/otp/publicapi.json index 12c12b4..4efab7a 100644 --- a/otp/publicapi.json +++ b/otp/publicapi.json @@ -1,5 +1,9 @@ { "name": "otp", "icon": "🔑", - "category": "user" + "category": "user", + "pricing": { + "Otp.Generate": 100, + "Otp.Validate": 100 + } }