Skip to content

Commit 67760c7

Browse files
committed
Travis update: Apr 2025 (Build 833)
[skip ci]
1 parent 0d76d3a commit 67760c7

File tree

6 files changed

+14
-2
lines changed

6 files changed

+14
-2
lines changed

docs/WhatsappButtonType.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Type of the button
1212

1313
* `URL` (value: `'url'`)
1414

15+
* `CATALOG` (value: `'catalog'`)
16+
17+
* `FLOW` (value: `'flow'`)
18+
19+
* `COPY_CODE` (value: `'copy_code'`)
20+
1521
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1622

1723

docs/WhatsappTemplateExample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Example of the templated content
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9-
**header_text** | **List[List[str]]** | Example of the templated text for the header | [optional]
9+
**header_text** | **List[str]** | Example of the templated text for the header | [optional]
1010
**body_text** | **List[List[str]]** | Example of the templated text for the body | [optional]
1111

1212
## Example

docs/WhatsappTemplateStatus.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Template status
1010

1111
* `PENDING` (value: `'pending'`)
1212

13+
* `PENDING_DELETION` (value: `'pending_deletion'`)
14+
1315
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1416

1517

messente_api/models/whatsapp_button_type.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ class WhatsappButtonType(str, Enum):
3131
PHONE_NUMBER = 'phone_number'
3232
OTP = 'otp'
3333
URL = 'url'
34+
CATALOG = 'catalog'
35+
FLOW = 'flow'
36+
COPY_CODE = 'copy_code'
3437

3538
@classmethod
3639
def from_json(cls, json_str: str) -> Self:

messente_api/models/whatsapp_template_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class WhatsappTemplateExample(BaseModel):
2727
"""
2828
Example of the templated content
2929
""" # noqa: E501
30-
header_text: Optional[List[List[StrictStr]]] = Field(default=None, description="Example of the templated text for the header")
30+
header_text: Optional[List[StrictStr]] = Field(default=None, description="Example of the templated text for the header")
3131
body_text: Optional[List[List[StrictStr]]] = Field(default=None, description="Example of the templated text for the body")
3232
additional_properties: Dict[str, Any] = {}
3333
__properties: ClassVar[List[str]] = ["header_text", "body_text"]

messente_api/models/whatsapp_template_status.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class WhatsappTemplateStatus(str, Enum):
3030
APPROVED = 'approved'
3131
REJECTED = 'rejected'
3232
PENDING = 'pending'
33+
PENDING_DELETION = 'pending_deletion'
3334

3435
@classmethod
3536
def from_json(cls, json_str: str) -> Self:

0 commit comments

Comments
 (0)