feat: initialize

This commit is contained in:
2026-05-19 19:25:56 +03:30
commit 54ffdd060e
78 changed files with 1583 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
meta {
name: feedback
type: http
seq: 8
}
post {
url: {{baseUrl}}/media/:id/feedback
body: multipartForm
auth: inherit
}
params:path {
id:
}
body:multipart-form {
stars:
content:
}
settings {
encodeUrl: true
}
+8
View File
@@ -0,0 +1,8 @@
meta {
name: media
seq: 12
}
auth {
mode: inherit
}
+26
View File
@@ -0,0 +1,26 @@
meta {
name: get-by-id
type: http
seq: 6
}
get {
url: {{baseUrl}}/media/:id
body: text
auth: inherit
}
params:path {
id: 1
}
body:text {
{
"type":"audio",
"tags":["relax","sleep" , "استرس"]
}
}
settings {
encodeUrl: true
}
+22
View File
@@ -0,0 +1,22 @@
meta {
name: get-media
type: http
seq: 7
}
get {
url: {{baseUrl}}/media?categories=1&durations=3-6
body: none
auth: inherit
}
params:query {
categories: 1
durations: 3-6
~tags: relax,sleep
~search:
}
settings {
encodeUrl: true
}
+15
View File
@@ -0,0 +1,15 @@
meta {
name: get-saved
type: http
seq: 4
}
get {
url: {{baseUrl}}/media/saved
body: none
auth: inherit
}
settings {
encodeUrl: true
}
+43
View File
@@ -0,0 +1,43 @@
meta {
name: store-media
type: http
seq: 1
}
post {
url: {{baseUrl}}/media
body: json
auth: inherit
}
body:json {
{
"title": "مدیتیشن موفقیت حتمی",
"caption": "مدیتیشنی قدرتمند برای فعال‌سازی ارتعاش موفقیت، تقویت باورهای مثبت، رهایی از ترس‌ها و هماهنگ شدن با مسیر تحقق اهداف. مناسب برای افرادی که می‌خواهند با انرژی و اعتماد کامل به سمت موفقیت حرکت کنند.",
"type": "video",
"category_id": null,
"category_name": "موفقیت و انگیزشی",
"duration": 10,
"file": null,
"image_id": "28",
"external_url": "https://meditation.approagency.ir/storage/videos/morning_success.mp4",
"visibility": "public",
"tags": [
"مدیتیشن موفقیت",
"انگیزشی",
"جذب موفقیت",
"ارتعاش مثبت",
"قانون جذب",
"هدفگذاری",
"باورهای مثبت",
"فراوانی",
"قدرت ذهن",
"مدیتیشن انگیزشی"
]
}
}
settings {
encodeUrl: true
}
+25
View File
@@ -0,0 +1,25 @@
meta {
name: store-note
type: http
seq: 5
}
post {
url: {{baseUrl}}/media/:id/note
body: json
auth: inherit
}
params:path {
id: 1
}
body:json {
{
"content":"note is here available"
}
}
settings {
encodeUrl: true
}
+25
View File
@@ -0,0 +1,25 @@
meta {
name: store-save
type: http
seq: 3
}
post {
url: {{baseUrl}}/media/:id/save
body: text
auth: inherit
}
params:path {
id: 1
}
body:text {
{
"type":"audio"
}
}
settings {
encodeUrl: true
}
+23
View File
@@ -0,0 +1,23 @@
meta {
name: update-media
type: http
seq: 2
}
post {
url: {{baseUrl}}/media/:id
body: multipartForm
auth: inherit
}
params:path {
id: 11
}
body:multipart-form {
is_premium: true
}
settings {
encodeUrl: true
}