Initial commit: Add logistics and order_detail message types
Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled

- Add Logistics component with progress tracking
- Add OrderDetail component for order information
- Support data-driven steps and actions
- Add blue color scale to widget SCSS
- Fix node overflow and progress bar rendering issues
- Add English translations for dashboard components

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Liang XJ
2026-01-26 11:16:56 +08:00
commit 092fb2e083
7646 changed files with 975643 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
in: path
name: account_id
schema:
type: integer
required: true
description: The numeric ID of the account

View File

@@ -0,0 +1,6 @@
in: path
name: id
schema:
type: integer
required: true
description: The ID of the agentbot to be updated

View File

@@ -0,0 +1,15 @@
in: query
name: sort
schema:
type: string
enum:
- name
- email
- phone_number
- last_activity_at
- -name
- -email
- -phone_number
- -last_activity_at
required: false
description: The attribute by which list should be sorted

View File

@@ -0,0 +1,6 @@
in: path
name: conversation_id
schema:
type: integer
required: true
description: The numeric ID of the conversation

View File

@@ -0,0 +1,6 @@
in: path
name: conversation_uuid
schema:
type: integer
required: true
description: The uuid of the conversation

View File

@@ -0,0 +1,6 @@
in: path
name: custom_filter_id
schema:
type: integer
required: true
description: The numeric ID of the custom filter

View File

@@ -0,0 +1,6 @@
in: path
name: hook_id
schema:
type: integer
required: true
description: The numeric ID of the integration hook

View File

@@ -0,0 +1,6 @@
in: path
name: inbox_id
schema:
type: integer
required: true
description: The ID of the Inbox

View File

@@ -0,0 +1,56 @@
account_id:
$ref: ./account_id.yml
agent_bot_id:
$ref: ./agent_bot_id.yml
team_id:
$ref: ./team_id.yml
inbox_id:
$ref: ./inbox_id.yml
hook_id:
$ref: ./hook_id.yml
source_id:
$ref: ./source_id.yml
contact_sort_param:
$ref: ./contact_sort.yml
conversation_id:
$ref: ./conversation_id.yml
conversation_uuid:
$ref: ./conversation_uuid.yml
custom_filter_id:
$ref: ./custom_filter_id.yml
webhook_id:
$ref: ./webhook_id.yml
message_id:
$ref: ./message_id.yml
page:
$ref: ./page.yml
platform_user_id:
$ref: ./platform_user_id.yml
report_type:
$ref: ./report_type.yml
report_metric:
$ref: ./report_metric.yml
public_inbox_identifier:
$ref: ./public/inbox_identifier.yml
public_contact_identifier:
$ref: ./public/contact_identifier.yml
portal_id:
$ref: ./portal_id.yml

View File

@@ -0,0 +1,6 @@
in: path
name: message_id
schema:
type: integer
required: true
description: The numeric ID of the message

View File

@@ -0,0 +1,7 @@
in: query
name: page
schema:
type: integer
default: 1
required: false
description: The page parameter

View File

@@ -0,0 +1,6 @@
in: path
name: id
schema:
type: integer
required: true
description: The numeric ID of the user on the platform

View File

@@ -0,0 +1,6 @@
in: path
name: id
schema:
type: string
required: true
description: The slug identifier of the portal

View File

@@ -0,0 +1,6 @@
in: path
name: contact_identifier
schema:
type: string
required: true
description: The source id of contact obtained on contact create

View File

@@ -0,0 +1,6 @@
in: path
name: inbox_identifier
schema:
type: string
required: true
description: The identifier obtained from API inbox channel

View File

@@ -0,0 +1,13 @@
in: query
name: metric
schema:
type: string
enum:
- conversations_count
- incoming_messages_count
- outgoing_messages_count
- avg_first_response_time
- avg_resolution_time
- resolutions_count
required: true
description: The type of metric

View File

@@ -0,0 +1,12 @@
in: query
name: type
schema:
type: string
enum:
- account
- agent
- inbox
- label
- team
required: true
description: Type of report

View File

@@ -0,0 +1,6 @@
in: path
name: source_id
required: true
schema:
type: string
description: "Id of the session for which the conversation is created.\n\n\n\n Source Ids can be obtained through contactable inboxes API or via generated.<br/><br/>Website: Chatwoot generated string which can be obtained from webhook events. <br/> Phone Channels(Twilio): Phone number in e164 format <br/> Email Channels: Contact Email address <br/> API Channel: Any Random String"

View File

@@ -0,0 +1,6 @@
in: path
name: team_id
schema:
type: integer
required: true
description: The ID of the team to be updated

View File

@@ -0,0 +1,6 @@
in: path
name: webhook_id
schema:
type: integer
required: true
description: The numeric ID of the webhook