Compare commits

...

31 Commits

Author SHA1 Message Date
f408eae3d2 bump version
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-21 13:23:39 -07:00
2134a8e5de add json patch
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-21 13:22:26 -07:00
8d0ab1a2b8 I HAVE GENERATED YOUR NEW DOCS! 2022-07-21 03:31:10 +00:00
efabead34c update spec
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-20 20:28:19 -07:00
4d2468541c bump version
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-18 21:49:25 -07:00
e7f966bea8 I HAVE GENERATED YOUR NEW DOCS! 2022-07-19 04:46:47 +00:00
147dea9927 Merge pull request #37 from KittyCAD/update-spec-v0.2.3
Update go lang spec docs for v0.2.3
2022-07-18 21:44:19 -07:00
6f2330aa85 I have generated the latest API! 2022-07-19 04:44:07 +00:00
8e7d73973d YOYO NEW GO SPEC DOCS v0.2.3! 2022-07-19 04:41:08 +00:00
8c9d476771 Merge pull request #35 from KittyCAD/dependabot/pip/pytest-asyncio-tw-0.19.0
Update pytest-asyncio requirement from ^0.18.3 to ^0.19.0
2022-07-15 15:07:28 -07:00
96a23c4672 Merge pull request #36 from KittyCAD/update-spec-0.1.6
Update rust lang spec docs for 0.1.6
2022-07-15 15:07:20 -07:00
4f88e5f0a7 I have generated the latest API! 2022-07-15 21:49:46 +00:00
a49aa621ed YOYO NEW RUST SPEC DOCS 0.1.6! 2022-07-15 21:46:55 +00:00
eb0380ef2d Update pytest-asyncio requirement from ^0.18.3 to ^0.19.0
Updates the requirements on [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version.
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Changelog](https://github.com/pytest-dev/pytest-asyncio/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.18.3...v0.19.0)

---
updated-dependencies:
- dependency-name: pytest-asyncio
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-15 11:27:58 +00:00
9414ebcc0b I HAVE GENERATED YOUR NEW DOCS! 2022-07-08 01:03:24 +00:00
0c6b538605 update
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-07 18:00:09 -07:00
905e2094de Merge pull request #34 from KittyCAD/update-spec-0.1.5
Update rust lang spec docs for 0.1.5
2022-07-07 17:59:54 -07:00
4623f854af I have generated the latest API! 2022-07-08 00:56:43 +00:00
3802dd36fc YOYO NEW RUST SPEC DOCS 0.1.5! 2022-07-08 00:53:23 +00:00
a046a9a82b push to correct repo
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-07 17:49:43 -07:00
c795346cd0 I HAVE GENERATED YOUR NEW DOCS! 2022-07-05 23:25:53 +00:00
3bd4326f2c Merge pull request #33 from KittyCAD/update-spec-0.1.4
Update rust lang spec docs for 0.1.4
2022-07-05 16:23:39 -07:00
b08726834a I have generated the latest API! 2022-07-05 23:19:40 +00:00
26954ba9f8 YOYO NEW RUST SPEC DOCS 0.1.4! 2022-07-05 23:16:47 +00:00
20496480f7 I HAVE GENERATED YOUR NEW DOCS! 2022-07-05 22:47:27 +00:00
2c8e9f90d7 Merge pull request #32 from KittyCAD/update-spec-0.1.3
Update rust lang spec docs for 0.1.3
2022-07-05 15:44:38 -07:00
197aa2fc55 fix tests
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-05 15:38:49 -07:00
4beba625ed bump the version
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-05 15:34:46 -07:00
67a03bdd03 update
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-07-05 15:33:51 -07:00
30db5097ff YOYO NEW RUST SPEC DOCS 0.1.3! 2022-07-05 19:27:35 +00:00
b80b69b023 I HAVE GENERATED YOUR NEW DOCS! 2022-06-16 19:06:05 +00:00
393 changed files with 27018 additions and 8677 deletions

View File

@ -34,14 +34,14 @@ jobs:
# Checkout the docs repo since we will want to update the files there.
- uses: actions/checkout@v3
with:
repository: 'kittycad/docs'
repository: 'kittycad/website'
path: 'docs'
token: ${{secrets.PAT_GITHUB}}
- name: move spec to docs
shell: bash
run: |
rm docs/spec.json || true
cp spec.json docs/spec.json
rm docs/kittycad.py.patch.json || true
cp kittycad.py.patch.json docs/kittycad.py.patch.json
- name: commit the changes in the docs repo
shell: bash
run: |
@ -53,7 +53,7 @@ jobs:
git commit -am "YOYO NEW SPEC DOCS ${VERSION}!" || exit 0
git fetch origin
git rebase origin/main || exit 0
export NEW_BRANCH="update-spec-${VERSION}"
export NEW_BRANCH="update-spec-python"
git checkout -b "$NEW_BRANCH"
git push -f origin "$NEW_BRANCH"
gh pr create --title "Update lang spec docs for ${VERSION}" \

View File

@ -22,6 +22,7 @@ generate: docker-image ## Generate the api client.
shell: docker-image ## Pop into a shell in the docker image.
docker run --rm -i $(DOCKER_FLAGS) \
--name python-generator-shell \
-e KITTYCAD_API_TOKEN \
--disable-content-trust \
-v $(CURDIR):/usr/src \
--workdir /usr/src \

View File

@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 801b3277a7f682f8d93df02ea3878661
config: b5766e7d008470ef47d7f2589ef1a682
tags: 645f666f9bcd5a90fca523b33c5a78b7

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,32 @@
kittycad.api.apps.apps\_github\_callback
========================================
.. automodule:: kittycad.api.apps.apps_github_callback
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,32 @@
kittycad.api.apps.apps\_github\_consent
=======================================
.. automodule:: kittycad.api.apps.apps_github_consent
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,32 @@
kittycad.api.apps
=================
.. automodule:: kittycad.api.apps
.. rubric:: Modules
.. autosummary::
:toctree:
:recursive:
kittycad.api.apps.apps_github_callback
kittycad.api.apps.apps_github_consent

View File

@ -1,4 +1,4 @@
kittycad.api.file
kittycad.api.file
=================
.. automodule:: kittycad.api.file

View File

@ -0,0 +1,32 @@
kittycad.api.hidden.auth\_email
===============================
.. automodule:: kittycad.api.hidden.auth_email
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,32 @@
kittycad.api.hidden.auth\_email\_callback
=========================================
.. automodule:: kittycad.api.hidden.auth_email_callback
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,32 @@
kittycad.api.hidden.listen\_auth\_email
=======================================
.. automodule:: kittycad.api.hidden.listen_auth_email
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,32 @@
kittycad.api.hidden.listen\_auth\_email\_callback
=================================================
.. automodule:: kittycad.api.hidden.listen_auth_email_callback
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,32 @@
kittycad.api.hidden.logout
==========================
.. automodule:: kittycad.api.hidden.logout
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -27,5 +27,7 @@ kittycad.api.hidden
:toctree:
:recursive:
kittycad.api.hidden.login
kittycad.api.hidden.auth_email
kittycad.api.hidden.auth_email_callback
kittycad.api.hidden.logout

View File

@ -0,0 +1,23 @@
kittycad.api.oauth2
===================
.. automodule:: kittycad.api.oauth2

View File

@ -0,0 +1,32 @@
kittycad.api.payments.get\_payment\_balance\_for\_user
======================================================
.. automodule:: kittycad.api.payments.get_payment_balance_for_user
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -31,6 +31,7 @@ kittycad.api.payments
kittycad.api.payments.create_payment_intent_for_user
kittycad.api.payments.delete_payment_information_for_user
kittycad.api.payments.delete_payment_method_for_user
kittycad.api.payments.get_payment_balance_for_user
kittycad.api.payments.get_payment_information_for_user
kittycad.api.payments.list_invoices_for_user
kittycad.api.payments.list_payment_methods_for_user

View File

@ -29,11 +29,14 @@
kittycad.api.api-calls
kittycad.api.api-tokens
kittycad.api.apps
kittycad.api.beta
kittycad.api.file
kittycad.api.hidden
kittycad.api.meta
kittycad.api.oauth2
kittycad.api.payments
kittycad.api.sessions
kittycad.api.unit
kittycad.api.users

View File

@ -0,0 +1,32 @@
kittycad.api.unit.create\_unit\_conversion
==========================================
.. automodule:: kittycad.api.unit.create_unit_conversion
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -0,0 +1,31 @@
kittycad.api.unit
=================
.. automodule:: kittycad.api.unit
.. rubric:: Modules
.. autosummary::
:toctree:
:recursive:
kittycad.api.unit.create_unit_conversion

View File

@ -0,0 +1,32 @@
kittycad.api.users.delete\_user\_self
=====================================
.. automodule:: kittycad.api.users.delete_user_self
.. rubric:: Functions
.. autosummary::
asyncio
asyncio_detailed
sync
sync_detailed

View File

@ -27,6 +27,7 @@ kittycad.api.users
:toctree:
:recursive:
kittycad.api.users.delete_user_self
kittycad.api.users.get_user
kittycad.api.users.get_user_extended
kittycad.api.users.get_user_self

View File

@ -0,0 +1,29 @@
kittycad.models.account\_provider
=================================
.. automodule:: kittycad.models.account_provider
.. rubric:: Classes
.. autosummary::
AccountProvider

View File

@ -17,7 +17,7 @@ kittycad.models.api\_call\_status
.. autosummary::
APICallStatus
ApiCallStatus

View File

@ -0,0 +1,29 @@
kittycad.models.app\_client\_info
=================================
.. automodule:: kittycad.models.app_client_info
.. rubric:: Classes
.. autosummary::
AppClientInfo

View File

@ -17,7 +17,7 @@ kittycad.models.async\_api\_call\_type
.. autosummary::
AsyncAPICallType
AsyncApiCallType

View File

@ -0,0 +1,29 @@
kittycad.models.base64\_data
============================
.. automodule:: kittycad.models.base64_data
.. rubric:: Classes
.. autosummary::
Base64Data

View File

@ -0,0 +1,29 @@
kittycad.models.commit
======================
.. automodule:: kittycad.models.commit
.. rubric:: Classes
.. autosummary::
Commit

View File

@ -0,0 +1,29 @@
kittycad.models.customer\_balance
=================================
.. automodule:: kittycad.models.customer_balance
.. rubric:: Classes
.. autosummary::
CustomerBalance

View File

@ -0,0 +1,29 @@
kittycad.models.device\_access\_token\_request\_form
====================================================
.. automodule:: kittycad.models.device_access_token_request_form
.. rubric:: Classes
.. autosummary::
DeviceAccessTokenRequestForm

View File

@ -0,0 +1,29 @@
kittycad.models.device\_auth\_request\_form
===========================================
.. automodule:: kittycad.models.device_auth_request_form
.. rubric:: Classes
.. autosummary::
DeviceAuthRequestForm

View File

@ -0,0 +1,29 @@
kittycad.models.device\_auth\_verify\_params
============================================
.. automodule:: kittycad.models.device_auth_verify_params
.. rubric:: Classes
.. autosummary::
DeviceAuthVerifyParams

View File

@ -0,0 +1,29 @@
kittycad.models.docker\_system\_info
====================================
.. automodule:: kittycad.models.docker_system_info
.. rubric:: Classes
.. autosummary::
DockerSystemInfo

View File

@ -0,0 +1,29 @@
kittycad.models.email\_authentication\_form
===========================================
.. automodule:: kittycad.models.email_authentication_form
.. rubric:: Classes
.. autosummary::
EmailAuthenticationForm

View File

@ -0,0 +1,29 @@
kittycad.models.empty
=====================
.. automodule:: kittycad.models.empty
.. rubric:: Classes
.. autosummary::
Empty

View File

@ -0,0 +1,29 @@
kittycad.models.executor\_metadata
==================================
.. automodule:: kittycad.models.executor_metadata
.. rubric:: Classes
.. autosummary::
ExecutorMetadata

View File

@ -0,0 +1,29 @@
kittycad.models.index\_info
===========================
.. automodule:: kittycad.models.index_info
.. rubric:: Classes
.. autosummary::
IndexInfo

Some files were not shown because too many files have changed in this diff Show More