Skip to content

Commit

Permalink
feat: update next client
Browse files Browse the repository at this point in the history
This includes moving the core api to a subpackage.
Public api is now added to client.
These are now accessed on the
`next.Core` and `next.Public` fields.
  • Loading branch information
ikadix committed May 28, 2024
1 parent d895fdc commit cb0f82d
Show file tree
Hide file tree
Showing 7 changed files with 37,995 additions and 31,692 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,10 @@ check-schemas:
( diff -rN "$(CURDIR)/schemas" "$(CHKDIR)/schemas" && rm -rf "$(CHKDIR)" ) \
|| ( rm -rf "$(CHKDIR)" && exit 1 )

.PHONY: retrieve-openapi-schema
retrieve-openapi-schema:
wget -O next/katapult-openapi.json https://api.katapult.io/core/v1/schema/openapi.json
.PHONY: retrieve-openapi-schemas
retrieve-openapi-schemas:
wget -O next/katapult-core-openapi.json https://api.katapult.io/core/v1/schema/openapi.json
wget -O next/katapult-public-openapi.json https://api.katapult.io/public/v1/schema/openapi.json

#
# Coverage
Expand Down
Loading

0 comments on commit cb0f82d

Please sign in to comment.