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
4 changes: 2 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
}
]
},
"originGitCommit": "c7ae462826a6e814bff92fd1ae9fc8c18b8359ba",
"sdkVersion": "1.2.5"
"originGitCommit": "deb8532a1f84f6daa08b5c611a66a5ec92f53f0e",
"sdkVersion": "1.2.6"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "schematichq"
version = "1.2.5"
version = "1.2.6"
description = ""
readme = "README.md"
authors = []
Expand Down
193 changes: 193 additions & 0 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1670,6 +1670,124 @@ client.billing.upsert_billing_coupon(
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.billing.<a href="src/schematic/billing/client.py">delete_billing_coupon</a>(...) -> DeleteBillingCouponResponse</code></summary>
<dl>
<dd>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from schematic import Schematic
from schematic.environment import SchematicEnvironment

client = Schematic(
api_key="<value>",
environment=SchematicEnvironment.DEFAULT,
)

client.billing.delete_billing_coupon(
billing_id="billing_id",
)

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**billing_id:** `str` — billing_id

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.billing.<a href="src/schematic/billing/client.py">delete_billing_customer</a>(...) -> DeleteBillingCustomerResponse</code></summary>
<dl>
<dd>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from schematic import Schematic
from schematic.environment import SchematicEnvironment

client = Schematic(
api_key="<value>",
environment=SchematicEnvironment.DEFAULT,
)

client.billing.delete_billing_customer(
billing_id="billing_id",
)

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**billing_id:** `str` — billing_id

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>
Expand Down Expand Up @@ -2250,6 +2368,65 @@ client.billing.upsert_invoice(
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.billing.<a href="src/schematic/billing/client.py">delete_billing_invoice</a>(...) -> DeleteBillingInvoiceResponse</code></summary>
<dl>
<dd>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```python
from schematic import Schematic
from schematic.environment import SchematicEnvironment

client = Schematic(
api_key="<value>",
environment=SchematicEnvironment.DEFAULT,
)

client.billing.delete_billing_invoice(
billing_id="billing_id",
)

```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**billing_id:** `str` — billing_id

</dd>
</dl>

<dl>
<dd>

**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>
Expand Down Expand Up @@ -7110,6 +7287,14 @@ client.checkout.get_checkout_data(
<dl>
<dd>

**currency:** `typing.Optional[str]`

</dd>
</dl>

<dl>
<dd>

**selected_plan_id:** `typing.Optional[str]`

</dd>
Expand Down Expand Up @@ -15238,6 +15423,14 @@ client.plans.publish_plan_version(
<dl>
<dd>

**coupon_external_id:** `typing.Optional[str]`

</dd>
</dl>

<dl>
<dd>

**customer_email:** `typing.Optional[str]`

</dd>
Expand Down
9 changes: 9 additions & 0 deletions src/schematic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,9 @@
CountBillingProductsResponse,
CountCustomersParams,
CountCustomersResponse,
DeleteBillingCouponResponse,
DeleteBillingCustomerResponse,
DeleteBillingInvoiceResponse,
DeleteBillingProductResponse,
DeletePaymentMethodByExternalIdResponse,
DeleteProductPriceResponse,
Expand Down Expand Up @@ -1023,6 +1026,9 @@
"DataExportType": ".types",
"DatastreamCompanyPlan": ".types",
"DeleteApiKeyResponse": ".accounts",
"DeleteBillingCouponResponse": ".billing",
"DeleteBillingCustomerResponse": ".billing",
"DeleteBillingInvoiceResponse": ".billing",
"DeleteBillingPlanCreditGrantParams": ".credits",
"DeleteBillingPlanCreditGrantRequestBody": ".types",
"DeleteBillingPlanCreditGrantResponse": ".credits",
Expand Down Expand Up @@ -1787,6 +1793,9 @@ def __dir__():
"DataExportType",
"DatastreamCompanyPlan",
"DeleteApiKeyResponse",
"DeleteBillingCouponResponse",
"DeleteBillingCustomerResponse",
"DeleteBillingInvoiceResponse",
"DeleteBillingPlanCreditGrantParams",
"DeleteBillingPlanCreditGrantRequestBody",
"DeleteBillingPlanCreditGrantResponse",
Expand Down
9 changes: 9 additions & 0 deletions src/schematic/billing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
CountBillingProductsResponse,
CountCustomersParams,
CountCustomersResponse,
DeleteBillingCouponResponse,
DeleteBillingCustomerResponse,
DeleteBillingInvoiceResponse,
DeleteBillingProductResponse,
DeletePaymentMethodByExternalIdResponse,
DeleteProductPriceResponse,
Expand Down Expand Up @@ -44,6 +47,9 @@
"CountBillingProductsResponse": ".types",
"CountCustomersParams": ".types",
"CountCustomersResponse": ".types",
"DeleteBillingCouponResponse": ".types",
"DeleteBillingCustomerResponse": ".types",
"DeleteBillingInvoiceResponse": ".types",
"DeleteBillingProductResponse": ".types",
"DeletePaymentMethodByExternalIdResponse": ".types",
"DeleteProductPriceResponse": ".types",
Expand Down Expand Up @@ -100,6 +106,9 @@ def __dir__():
"CountBillingProductsResponse",
"CountCustomersParams",
"CountCustomersResponse",
"DeleteBillingCouponResponse",
"DeleteBillingCustomerResponse",
"DeleteBillingInvoiceResponse",
"DeleteBillingProductResponse",
"DeletePaymentMethodByExternalIdResponse",
"DeleteProductPriceResponse",
Expand Down
Loading
Loading