Skip to content
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.263.0"
".": "0.264.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a7e0e17a385ddfb049d0fe4e5d05785901cf40f464c51399d7c2cd1f863696c0.yml
openapi_spec_hash: b4bca6edf466e9061a72c98207f92c6d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f0b14ed0b6857930b2bbb80a8a0580dff2aad5510240f608ea9385a8b1d1b66b.yml
openapi_spec_hash: ea869bb98167424f60f8ef006da70945
config_hash: a185e9a72778cc4658ea73fb3a7f1354
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.264.0 (2025-07-10)

Full Changelog: [v0.263.0...v0.264.0](https://github.com/Increase/increase-python/compare/v0.263.0...v0.264.0)

### Features

* **api:** api update ([b2aeeb0](https://github.com/Increase/increase-python/commit/b2aeeb0b3ba930aec3d5bd764c2fb642199a33b6))


### Chores

* **readme:** fix version rendering on pypi ([537b78a](https://github.com/Increase/increase-python/commit/537b78ab51073c10515ddcf75dbe5efb0bfe3acb))

## 0.263.0 (2025-07-09)

Full Changelog: [v0.262.0...v0.263.0](https://github.com/Increase/increase-python/compare/v0.262.0...v0.263.0)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Increase Python API library

[![PyPI version](<https://img.shields.io/pypi/v/increase.svg?label=pypi%20(stable)>)](https://pypi.org/project/increase/)
<!-- prettier-ignore -->
[![PyPI version](https://img.shields.io/pypi/v/increase.svg?label=pypi%20(stable))](https://pypi.org/project/increase/)

The Increase Python library provides convenient access to the Increase REST API from any Python 3.8+
application. The library includes type definitions for all request params and response fields,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.263.0"
version = "0.264.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "increase"
__version__ = "0.263.0" # x-release-please-version
__version__ = "0.264.0" # x-release-please-version
3 changes: 3 additions & 0 deletions src/increase/types/card_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class CardDetails(BaseModel):
expiration_year: int
"""The year the card expires in YYYY format (e.g., 2025)."""

pin: str
"""The 4-digit PIN for the card, for use with ATMs."""

primary_account_number: str
"""The card number."""

Expand Down