Skip to content

Commit

Permalink
Release 0.1.2 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfana01 authored Oct 18, 2022
1 parent fa288ae commit 78c6e51
Show file tree
Hide file tree
Showing 29 changed files with 3,305 additions and 416 deletions.
28 changes: 27 additions & 1 deletion .openapi-generator/FILES
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.gitignore
.gitlab-ci.yml
.openapi-generator-ignore
.travis.yml
README.md
docs/Account.md
Expand Down Expand Up @@ -205,6 +204,7 @@ docs/GoogleProductCategory5Filter.md
docs/GoogleProductCategory6Filter.md
docs/Granularity.md
docs/ImageDetails.md
docs/ImageMetadata.md
docs/InlineObject.md
docs/ItemAttributes.md
docs/ItemAttributesAllOf.md
Expand Down Expand Up @@ -266,14 +266,21 @@ docs/PacingDeliveryType.md
docs/Paginated.md
docs/Pin.md
docs/PinMedia.md
docs/PinMediaMetadata.md
docs/PinMediaSource.md
docs/PinMediaSourceImageBase64.md
docs/PinMediaSourceImageURL.md
docs/PinMediaSourceVideoID.md
docs/PinMediaWithImage.md
docs/PinMediaWithImageAllOf.md
docs/PinMediaWithImageAndVideo.md
docs/PinMediaWithImageAndVideoAllOf.md
docs/PinMediaWithImages.md
docs/PinMediaWithImagesAllOf.md
docs/PinMediaWithVideo.md
docs/PinMediaWithVideoAllOf.md
docs/PinMediaWithVideos.md
docs/PinMediaWithVideosAllOf.md
docs/PinPromotionSummaryStatus.md
docs/PinsApi.md
docs/PinterestTagEventData.md
Expand Down Expand Up @@ -321,6 +328,7 @@ docs/UpdatableItemAttributes.md
docs/UserAccountApi.md
docs/UserListOperationType.md
docs/UserListType.md
docs/VideoMetadata.md
git_push.sh
pinterest/__init__.py
pinterest/generated/__init__.py
Expand Down Expand Up @@ -542,6 +550,7 @@ pinterest/generated/client/model/google_product_category5_filter.py
pinterest/generated/client/model/google_product_category6_filter.py
pinterest/generated/client/model/granularity.py
pinterest/generated/client/model/image_details.py
pinterest/generated/client/model/image_metadata.py
pinterest/generated/client/model/inline_object.py
pinterest/generated/client/model/item_attributes.py
pinterest/generated/client/model/item_attributes_all_of.py
Expand Down Expand Up @@ -600,14 +609,21 @@ pinterest/generated/client/model/pacing_delivery_type.py
pinterest/generated/client/model/paginated.py
pinterest/generated/client/model/pin.py
pinterest/generated/client/model/pin_media.py
pinterest/generated/client/model/pin_media_metadata.py
pinterest/generated/client/model/pin_media_source.py
pinterest/generated/client/model/pin_media_source_image_base64.py
pinterest/generated/client/model/pin_media_source_image_url.py
pinterest/generated/client/model/pin_media_source_video_id.py
pinterest/generated/client/model/pin_media_with_image.py
pinterest/generated/client/model/pin_media_with_image_all_of.py
pinterest/generated/client/model/pin_media_with_image_and_video.py
pinterest/generated/client/model/pin_media_with_image_and_video_all_of.py
pinterest/generated/client/model/pin_media_with_images.py
pinterest/generated/client/model/pin_media_with_images_all_of.py
pinterest/generated/client/model/pin_media_with_video.py
pinterest/generated/client/model/pin_media_with_video_all_of.py
pinterest/generated/client/model/pin_media_with_videos.py
pinterest/generated/client/model/pin_media_with_videos_all_of.py
pinterest/generated/client/model/pin_promotion_summary_status.py
pinterest/generated/client/model/pinterest_tag_event_data.py
pinterest/generated/client/model/placement_group_type.py
Expand Down Expand Up @@ -649,6 +665,7 @@ pinterest/generated/client/model/tracking_urls.py
pinterest/generated/client/model/updatable_item_attributes.py
pinterest/generated/client/model/user_list_operation_type.py
pinterest/generated/client/model/user_list_type.py
pinterest/generated/client/model/video_metadata.py
pinterest/generated/client/model_utils.py
pinterest/generated/client/models/__init__.py
pinterest/generated/client/rest.py
Expand Down Expand Up @@ -859,6 +876,7 @@ test/test_google_product_category5_filter.py
test/test_google_product_category6_filter.py
test/test_granularity.py
test/test_image_details.py
test/test_image_metadata.py
test/test_inline_object.py
test/test_item_attributes.py
test/test_item_attributes_all_of.py
Expand Down Expand Up @@ -920,14 +938,21 @@ test/test_pacing_delivery_type.py
test/test_paginated.py
test/test_pin.py
test/test_pin_media.py
test/test_pin_media_metadata.py
test/test_pin_media_source.py
test/test_pin_media_source_image_base64.py
test/test_pin_media_source_image_url.py
test/test_pin_media_source_video_id.py
test/test_pin_media_with_image.py
test/test_pin_media_with_image_all_of.py
test/test_pin_media_with_image_and_video.py
test/test_pin_media_with_image_and_video_all_of.py
test/test_pin_media_with_images.py
test/test_pin_media_with_images_all_of.py
test/test_pin_media_with_video.py
test/test_pin_media_with_video_all_of.py
test/test_pin_media_with_videos.py
test/test_pin_media_with_videos_all_of.py
test/test_pin_promotion_summary_status.py
test/test_pins_api.py
test/test_pinterest_tag_event_data.py
Expand Down Expand Up @@ -975,4 +1000,5 @@ test/test_updatable_item_attributes.py
test/test_user_account_api.py
test/test_user_list_operation_type.py
test/test_user_list_type.py
test/test_video_metadata.py
tox.ini
13 changes: 11 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,14 @@ clean-pyc: ## Clean python binaries
find . -name '*~' -exec rm -f {} +

build: ## Build command
python setup.py sdist
ls -l dist
python -m build
ls -l dist

pip_release_install:
pip install twine build

publish_pypi_test: pip_release_install build
twine upload -r testpypi dist/*

publish_pypi: pip_release_install build
twine upload -r dist/*
Loading

0 comments on commit 78c6e51

Please sign in to comment.