Skip to content

Commit

Permalink
ci: jenkins push
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins_job committed Aug 23, 2022
1 parent e251f5b commit 27023bb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions v1/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ Class | Method | HTTP request | Description
*AttachmentsApi* | [**get_attachment**](docs/AttachmentsApi.md#get_attachment) | **GET** /attachments/{uuid} | Download a file attachment
*BuildsApi* | [**get_build**](docs/BuildsApi.md#get_build) | **GET** /builds/{uuid} | Fetch a build
*BuildsApi* | [**get_builds**](docs/BuildsApi.md#get_builds) | **GET** /builds | Fetch builds
*ModelProgramRunsApi* | [**create_model_program_run**](docs/ModelProgramRunsApi.md#create_model_program_run) | **POST** /model_program_run | Run a model program to alter your models
*ModelProgramRunsApi* | [**get_model_program_run**](docs/ModelProgramRunsApi.md#get_model_program_run) | **GET** /model_program_run/{uuid} | Get a model program run by UUID
*ModelProgramRunsApi* | [**create_model_program_run**](docs/ModelProgramRunsApi.md#create_model_program_run) | **POST** /model_program_runs | Run a model program to alter your models
*ModelProgramRunsApi* | [**get_model_program_run**](docs/ModelProgramRunsApi.md#get_model_program_run) | **GET** /model_program_runs/{uuid} | Get a model program run by UUID
*ModelsApi* | [**download_model**](docs/ModelsApi.md#download_model) | **GET** /models/{uuid}/download | Download a model by UUID
*ModelsApi* | [**get_model**](docs/ModelsApi.md#get_model) | **GET** /models/{uuid} | Get a model by UUID
*ModelsApi* | [**get_models**](docs/ModelsApi.md#get_models) | **GET** /models | Fetch models
Expand Down
4 changes: 2 additions & 2 deletions v1/python/carbon3d/api/model_program_runs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def create_model_program_run_with_http_info(self, **kwargs): # noqa: E501
auth_settings = ['bearerAuth'] # noqa: E501

return self.api_client.call_api(
'/model_program_run', 'POST',
'/model_program_runs', 'POST',
path_params,
query_params,
header_params,
Expand Down Expand Up @@ -250,7 +250,7 @@ def get_model_program_run_with_http_info(self, uuid, **kwargs): # noqa: E501
auth_settings = ['bearerAuth'] # noqa: E501

return self.api_client.call_api(
'/model_program_run/{uuid}', 'GET',
'/model_program_runs/{uuid}', 'GET',
path_params,
query_params,
header_params,
Expand Down
4 changes: 2 additions & 2 deletions v1/python/docs/ModelProgramRunsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ All URIs are relative to *https://api.carbon3d.com/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**create_model_program_run**](ModelProgramRunsApi.md#create_model_program_run) | **POST** /model_program_run | Run a model program to alter your models
[**get_model_program_run**](ModelProgramRunsApi.md#get_model_program_run) | **GET** /model_program_run/{uuid} | Get a model program run by UUID
[**create_model_program_run**](ModelProgramRunsApi.md#create_model_program_run) | **POST** /model_program_runs | Run a model program to alter your models
[**get_model_program_run**](ModelProgramRunsApi.md#get_model_program_run) | **GET** /model_program_runs/{uuid} | Get a model program run by UUID


# **create_model_program_run**
Expand Down
3 changes: 1 addition & 2 deletions v1/python_examples/custom_part_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import time
from typing import List

import dateutil
import jwt
import carbon3d as carbon

Expand Down Expand Up @@ -108,7 +107,7 @@ def create_part(parts_api: carbon.PartsApi,
def create_part_order(part_orders_api: carbon.PartOrdersApi,
part_order_number: str,
parts: List[carbon.models.part.Part],
due_date: datetime.datetime,
due_date: datetime,
flush: bool,
build_sop_uuid: str) -> carbon.models.part_order.PartOrder:
"""
Expand Down

0 comments on commit 27023bb

Please sign in to comment.