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 .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ USER vscode
RUN curl -sSf https://rye.astral.sh/get | RYE_VERSION="0.35.0" RYE_INSTALL_OPTION="--yes" bash
ENV PATH=/home/vscode/.rye/shims:$PATH

RUN echo "[[ -d .venv ]] && source .venv/bin/activate" >> /home/vscode/.bashrc
RUN echo "[[ -d .venv ]] && source .venv/bin/activate || export PATH=\$PATH" >> /home/vscode/.bashrc
3 changes: 3 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
}
}
}
},
"features": {
"ghcr.io/devcontainers/features/node:1": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
Expand Down
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.193.0"
".": "0.194.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0a850fe9e55426b331fea3fd2f61ad0e72dd5d7d2cac4c258f69bdf5b23aa42b.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-15ead2ecf5c1d979cfa951c578d25ba20f9f5c1b987d109b6eaa4e8eeda973e1.yml
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.194.0 (2025-02-22)

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

### Features

* **api:** api update ([#978](https://github.com/Increase/increase-python/issues/978)) ([ffd13d5](https://github.com/Increase/increase-python/commit/ffd13d503079c732557dee600cd10b33406fdf2f))


### Chores

* **internal:** fix devcontainers setup ([#976](https://github.com/Increase/increase-python/issues/976)) ([25451ad](https://github.com/Increase/increase-python/commit/25451ad3e978daeae53904fe2d0b6eca69f9f1d2))

## 0.193.0 (2025-02-20)

Full Changelog: [v0.192.0...v0.193.0](https://github.com/Increase/increase-python/compare/v0.192.0...v0.193.0)
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.193.0"
version = "0.194.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.193.0" # x-release-please-version
__version__ = "0.194.0" # x-release-please-version
26 changes: 24 additions & 2 deletions src/increase/types/digital_wallet_token.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import List
from datetime import datetime
from typing_extensions import Literal

from .._models import BaseModel

__all__ = ["DigitalWalletToken"]
__all__ = ["DigitalWalletToken", "Update"]


class Update(BaseModel):
status: Literal["active", "inactive", "suspended", "deactivated"]
"""The status the update changed this Digital Wallet Token to.

- `active` - The digital wallet token is active.
- `inactive` - The digital wallet token has been created but not successfully
activated via two-factor authentication yet.
- `suspended` - The digital wallet token has been temporarily paused.
- `deactivated` - The digital wallet token has been permanently canceled.
"""

timestamp: datetime
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
the update happened.
"""


class DigitalWalletToken(BaseModel):
Expand All @@ -18,7 +37,7 @@ class DigitalWalletToken(BaseModel):
created_at: datetime
"""
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
the Card was created.
the Digital Wallet Token was created.
"""

status: Literal["active", "inactive", "suspended", "deactivated"]
Expand All @@ -45,3 +64,6 @@ class DigitalWalletToken(BaseModel):

For this resource it will always be `digital_wallet_token`.
"""

updates: List[Update]
"""Updates to the Digital Wallet Token."""