Skip to content

Commit

Permalink
Merge pull request #72 from Gateway-DAO/feat/make-auth-class-public
Browse files Browse the repository at this point in the history
feat(sui): added sui wallet and fixed minor changes
  • Loading branch information
Siddharth9890 authored Oct 10, 2024
2 parents ddd9837 + 9c7b73e commit 5d4b9a0
Show file tree
Hide file tree
Showing 21 changed files with 1,664 additions and 3,282 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# [2.1.0-develop.17](https://github.com/Gateway-DAO/gateway-js-sdk/compare/v2.1.0-develop.16...v2.1.0-develop.17) (2024-10-02)


### Features

* simple validation and some minor changes ([febd13c](https://github.com/Gateway-DAO/gateway-js-sdk/commit/febd13c7f04b77b682935ccf68e6d53591be611c))
- simple validation and some minor changes ([febd13c](https://github.com/Gateway-DAO/gateway-js-sdk/commit/febd13c7f04b77b682935ccf68e6d53591be611c))

# [2.1.0-develop.16](https://github.com/Gateway-DAO/gateway-js-sdk/compare/v2.1.0-develop.15...v2.1.0-develop.16) (2024-10-02)

Expand Down
35 changes: 22 additions & 13 deletions api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ paths:
schema:
type: array
items:
$ref: '#/components/schemas/model.ACLRequest'
$ref: '#/components/schemas/model.DeleteACLRequest'
description: Delete Assigned ACL Items Request
required: true
responses:
Expand Down Expand Up @@ -537,12 +537,7 @@ paths:
- Data models
summary: Create data model
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/model.DataModelRequest'
description: Data Model
required: true
$ref: '#/components/requestBodies/model.DataModelRequest'
responses:
'201':
description: Created
Expand Down Expand Up @@ -620,12 +615,7 @@ paths:
schema:
type: integer
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/model.DataModel'
description: Data Model
required: true
$ref: '#/components/requestBodies/model.DataModelRequest'
responses:
'200':
description: OK
Expand All @@ -637,6 +627,14 @@ servers:
- url: 'https://localhost:8080'
- url: 'http://localhost:8080'
components:
requestBodies:
model.DataModelRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/model.DataModelRequest'
description: Data Model
required: true
securitySchemes:
BearerAuth:
description: Type "Bearer" followed by a space and the JWT token.
Expand Down Expand Up @@ -779,11 +777,13 @@ components:
model.DataModel:
type: object
required:
- created_at
- created_by
- description
- id
- schema
- title
- updated_at
properties:
created_at:
type: string
Expand Down Expand Up @@ -822,6 +822,15 @@ components:
type: string
title:
type: string
model.DeleteACLRequest:
type: object
required:
- addresses
properties:
addresses:
type: array
items:
type: string
model.MessageResponse:
type: object
required:
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
],
"license": "MIT",
"dependencies": {
"@mysten/sui": "^1.12.0",
"@solana/web3.js": "^1.95.3",
"ethers": "^5.7.2",
"jsonwebtoken": "^9.0.2",
Expand Down
Loading

0 comments on commit 5d4b9a0

Please sign in to comment.