Skip to content

Commit

Permalink
[Auto Generated] v1.4.15-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jigardafda committed Oct 18, 2024
1 parent 0c4746f commit 99ecc16
Show file tree
Hide file tree
Showing 9 changed files with 212,901 additions and 212,012 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/on_release_created.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Update Postman Collection

on:
release:
types:
- created

jobs:
update_postman:
if: ${{ github.event.release.prerelease == false }}
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Update Postman Collection
run: |
# Application collection
curl --location --request PUT 'https://api.getpostman.com/collections/25401129-fc65e3d4-aa10-4ba8-ae19-15ae6e57b253' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: {{secrets.POSTMAN_API_KEY}}' \
--data-binary "@postman/application.json"
echo "\n✅ Application collection updated!!"
# Platform collection
curl --location --request PUT 'https://api.getpostman.com/collections/25401129-f155d8e8-f15d-42c2-9bbd-38d3a556b40c' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: {{secrets.POSTMAN_API_KEY}}' \
--data-binary "@postman/platform.json"
echo "\n✅ Platform collection updated!!"
21 changes: 18 additions & 3 deletions openapi/application.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"info": {
"title": "Fynd Platform's Application Side APIs",
"version": "1.4.12-beta.1",
"title": "Fynd Platform's Application Side APIs v1.9.4",
"version": "v1.4.15-beta.1",
"description": "Fynd Platform's Application Side APIs"
},
"openapi": "3.0.2",
Expand Down Expand Up @@ -24309,6 +24309,10 @@
},
"item": {
"name": "Tissues",
"l2_category": [
"Tools & Accessories"
],
"l2_category_id": 3,
"brand": {
"name": "Zepto",
"logo": "https://hdn-1.jiomarketx0.de/x0/brands/pictures/square-logo/original/5XLRHXC5H-Logo.png"
Expand Down Expand Up @@ -49074,7 +49078,18 @@
"items": {
"type": "string"
},
"description": "An array of level 1 categories the item belongs."
"description": "An array of level 1 categories to which the item belongs."
},
"l2_category": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of level 2 categories to which the item belongs."
},
"l2_category_id": {
"type": "number",
"description": "ID representing the level 2 category classification of the item"
},
"brand": {
"$ref": "#/components/schemas/ItemBrand"
Expand Down
4 changes: 2 additions & 2 deletions openapi/partner.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"info": {
"title": "Fynd Platform's Partner Side APIs",
"version": "1.4.12-beta.1",
"title": "Fynd Platform's Partner Side APIs v1.9.4",
"version": "v1.4.15-beta.1",
"description": "Fynd Platform's Partner Side APIs"
},
"openapi": "3.0.2",
Expand Down
Loading

0 comments on commit 99ecc16

Please sign in to comment.