Skip to content

Commit eafac70

Browse files
author
github-actions
committed
Generated v4.10.0
1 parent c50dc16 commit eafac70

34 files changed

+254
-41
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [v4.10.0](https://github.com/fastly/fastly-rust/releases/tag/release/v4.10.0) (2024-08-08)
4+
5+
**Bug fixes:**
6+
7+
- fix(billing): Adjust type of regional data to help the generator
8+
- fix(billing): Correct type of invoice_id field
9+
310
## [v4.9.0](https://github.com/fastly/fastly-rust/releases/tag/release/v4.9.0) (2024-08-04)
411

512
**Enhancements:**

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastly-api"
3-
version = "4.9.0"
3+
version = "4.10.0"
44
authors = ["Fastly <[email protected]>"]
55
edition = "2021"
66
description = "Fastly API client"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Rust 2021 Edition
1515
Add the following to `Cargo.toml` under `[dependencies]`:
1616

1717
```toml
18-
fastly-api = "4.9.0"
18+
fastly-api = "4.10.0"
1919
```
2020

2121
## Usage

docs/Billing.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**end_time** | Option<**String**> | Date and time in ISO 8601 format. | [readonly]
88
**start_time** | Option<**String**> | Date and time in ISO 8601 format. | [readonly]
9-
**invoice_id** | Option<**String**> | | [readonly]
109
**customer_id** | Option<**String**> | | [readonly]
1110
**vendor_state** | Option<**String**> | The current state of our third-party billing vendor. One of `up` or `down`. | [readonly]
1211
**status** | Option<[**crate::models::BillingStatus**](BillingStatus.md)> | |
1312
**total** | Option<[**crate::models::BillingTotal**](BillingTotal.md)> | |
14-
**regions** | Option<[**::std::collections::HashMap&lt;String, ::std::collections::HashMap&lt;String, serde_json::Value&gt;&gt;**](Map.md)> | Breakdown of regional data for products that are region based. |
13+
**regions** | Option<[**::std::collections::HashMap&lt;String, crate::models::BillingRegions&gt;**](BillingRegions.md)> | Breakdown of regional data for products that are region based. |
1514

1615
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1716

docs/BillingApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ get_invoice_by_id(cfg, params)
6565
Name | Type | Description | Required | Notes
6666
------------- | ------------- | ------------- | ------------- | -------------
6767
**customer_id** | **String** | Alphanumeric string identifying the customer. | [required] |
68-
**invoice_id** | **String** | Alphanumeric string identifying the invoice. | [required] |
68+
**invoice_id** | **i32** | | [required] |
6969

7070
### Return type
7171

docs/BillingBandwidth.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# BillingBandwidth
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**total** | Option<**f32**> | |
8+
**tiers** | Option<[**Vec&lt;crate::models::BillingBandwidthTiers&gt;**](BillingBandwidthTiers.md)> | |
9+
10+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

docs/BillingBandwidthTiers.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# BillingBandwidthTiers
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | Option<**String**> | |
8+
**units** | Option<**f32**> | |
9+
**price** | Option<**f32**> | |
10+
**discounted_price** | Option<**f32**> | |
11+
**total** | Option<**f32**> | |
12+
13+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+
15+

docs/BillingEstimateInvoiceId.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# BillingEstimateInvoiceId
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**invoice_id** | Option<**String**> | | [readonly]
8+
9+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/BillingEstimateResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**end_time** | Option<**String**> | Date and time in ISO 8601 format. | [readonly]
88
**start_time** | Option<**String**> | Date and time in ISO 8601 format. | [readonly]
9-
**invoice_id** | Option<**String**> | | [readonly]
109
**customer_id** | Option<**String**> | | [readonly]
1110
**vendor_state** | Option<**String**> | The current state of our third-party billing vendor. One of `up` or `down`. | [readonly]
1211
**status** | Option<[**crate::models::BillingStatus**](BillingStatus.md)> | |
1312
**total** | Option<[**crate::models::BillingTotal**](BillingTotal.md)> | |
14-
**regions** | Option<[**::std::collections::HashMap&lt;String, ::std::collections::HashMap&lt;String, serde_json::Value&gt;&gt;**](Map.md)> | Breakdown of regional data for products that are region based. |
13+
**regions** | Option<[**::std::collections::HashMap&lt;String, crate::models::BillingRegions&gt;**](BillingRegions.md)> | Breakdown of regional data for products that are region based. |
14+
**invoice_id** | Option<**String**> | | [readonly]
1515
**line_items** | Option<[**Vec&lt;crate::models::BillingEstimateLinesLineItems&gt;**](BillingEstimateLinesLineItems.md)> | |
1616

1717
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/LineItemDataReadOnlyInvoiceId.md renamed to docs/BillingInvoiceId.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
# LineItemDataReadOnlyInvoiceId
1+
# BillingInvoiceId
22

33
## Properties
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7+
**invoice_id** | Option<**i32**> | | [readonly]
78

89
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
910

0 commit comments

Comments
 (0)