Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated code for beta #1006

Merged
merged 6 commits into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v442
v482
4 changes: 4 additions & 0 deletions stripe/api_resources/credit_note_line_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@


class CreditNoteLineItem(ListableAPIResource):
"""
The credit note line item object
"""

OBJECT_NAME = "credit_note_line_item"
3 changes: 3 additions & 0 deletions stripe/api_resources/issuing/card_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from stripe.api_resources.abstract import APIResourceTestHelpers
from stripe.api_resources.abstract import ListableAPIResource
from stripe.api_resources.abstract import UpdateableAPIResource
from typing_extensions import Type


class CardDesign(ListableAPIResource, UpdateableAPIResource):
Expand All @@ -16,6 +17,8 @@ class CardDesign(ListableAPIResource, UpdateableAPIResource):
OBJECT_NAME = "issuing.card_design"

class TestHelpers(APIResourceTestHelpers):
_resource_cls: Type["CardDesign"]

@classmethod
def _cls_activate_testmode(
cls,
Expand Down
2 changes: 1 addition & 1 deletion stripe/api_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@


class _ApiVersion:
CURRENT = "2022-11-15"
CURRENT = "2023-08-16"
PREVIEW = "2023-08-11.preview-v2"