ultracart_api 3.11.28 → 3.11.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e2b4677a03b2103fa194b40ebb76de6d6a3e1f73f8fdba966fb3933746d7be4
4
- data.tar.gz: e8e4d31945bfd34d06c080aad8fa06a441f2d4f2c9818bd7ec094815676d97ea
3
+ metadata.gz: 50e86579960cc0fb8e178e6ece69e1b9405e2162f9348d1ad8d39e0d0a406a7f
4
+ data.tar.gz: 792a24d8ccba205aa55b4b3d91a5dd3793db5a10661e606a7deb7283e13d6808
5
5
  SHA512:
6
- metadata.gz: 9186c2fe6a2abf34ca8e44c79486d50c19273158b0a72cbdda7e484a8aae6bc1a3c5a84c2004580c23532aba8e1c02051880551ac4ee7c33a606eb08ff2145c7
7
- data.tar.gz: 600e0b573b33e0116ddf9a7d7e963dcdbb5f0bd070123b6141870db6c8d2b6f45f0f7d22bd11ab557ab7833f7fb613d0cf1cb40bb5f2a961fd3665f8b3f67936
6
+ metadata.gz: d2b8a674c6c5b423328dd5a9765b2590e4dc1db7ab418ad017745f4de5ef30496c65dac19f54192072a9cdd3de2f751e767eaf836d98a2f07322d1920f482733
7
+ data.tar.gz: b64d95d41c945990b79412add044d59bf6b47c5af94acec7eb39b7f8f17b487457397efcde809ee6fcd034caa8685efc2134c11d6764a7caed4a5eb8ec399341
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 3.11.28
10
+ - Package version: 3.11.30
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-3.11.28.gem
27
+ gem install ./ultracart_api-3.11.30.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.28.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.30.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ultracart_api', '~> 3.11.28'
35
+ gem 'ultracart_api', '~> 3.11.30'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -148,6 +148,8 @@ Class | Method | HTTP request | Description
148
148
  *UltracartClient::ConversationApi* | [**get_agent_keep_alive**](docs/ConversationApi.md#get_agent_keep_alive) | **GET** /conversation/agent/keepalive | Agent keep alive
149
149
  *UltracartClient::ConversationApi* | [**get_agent_profile**](docs/ConversationApi.md#get_agent_profile) | **GET** /conversation/agent/profile | Get agent profile
150
150
  *UltracartClient::ConversationApi* | [**get_agent_profile_knowledge_base**](docs/ConversationApi.md#get_agent_profile_knowledge_base) | **GET** /conversation/agent/profiles/{user_id}/knowledge_base | Get the list of knowledge base documents associated with this agent profile
151
+ *UltracartClient::ConversationApi* | [**get_agent_profile_mcp**](docs/ConversationApi.md#get_agent_profile_mcp) | **GET** /conversation/agent/profiles/{user_id}/mcps/{mcp_server_uuid} | Get an MCP server associated with this agent
152
+ *UltracartClient::ConversationApi* | [**get_agent_profile_mcps**](docs/ConversationApi.md#get_agent_profile_mcps) | **GET** /conversation/agent/profiles/{user_id}/mcps | Get the list of MCP servers associated with this agent
151
153
  *UltracartClient::ConversationApi* | [**get_agent_profiles**](docs/ConversationApi.md#get_agent_profiles) | **GET** /conversation/agent/profiles | Get agent profiles
152
154
  *UltracartClient::ConversationApi* | [**get_agent_websocket_authorization**](docs/ConversationApi.md#get_agent_websocket_authorization) | **PUT** /conversation/agent/auth | Get agent websocket authorization
153
155
  *UltracartClient::ConversationApi* | [**get_conversation**](docs/ConversationApi.md#get_conversation) | **GET** /conversation/conversations/{conversation_uuid} | Retrieve a conversation
@@ -192,6 +194,7 @@ Class | Method | HTTP request | Description
192
194
  *UltracartClient::ConversationApi* | [**get_virtual_agent_budget**](docs/ConversationApi.md#get_virtual_agent_budget) | **GET** /conversation/virtualagent/budget | Get virtual agent budget
193
195
  *UltracartClient::ConversationApi* | [**get_virtual_agent_capabilities**](docs/ConversationApi.md#get_virtual_agent_capabilities) | **GET** /conversation/virtualagent/capabilities | Get virtual agent capabilities
194
196
  *UltracartClient::ConversationApi* | [**insert_agent_profile_knowledge_base_document**](docs/ConversationApi.md#insert_agent_profile_knowledge_base_document) | **POST** /conversation/agent/profiles/{user_id}/knowledge_base | Insert a knowledge base document
197
+ *UltracartClient::ConversationApi* | [**insert_agent_profile_mcp**](docs/ConversationApi.md#insert_agent_profile_mcp) | **POST** /conversation/agent/profiles/{user_id}/mcps | Insert an agent MCP server
195
198
  *UltracartClient::ConversationApi* | [**insert_conversation_canned_message**](docs/ConversationApi.md#insert_conversation_canned_message) | **POST** /conversation/canned_messages | Insert a canned message
196
199
  *UltracartClient::ConversationApi* | [**insert_conversation_department**](docs/ConversationApi.md#insert_conversation_department) | **POST** /conversation/departments | Insert a department
197
200
  *UltracartClient::ConversationApi* | [**insert_conversation_engagement**](docs/ConversationApi.md#insert_conversation_engagement) | **POST** /conversation/engagements | Insert a engagement
@@ -211,6 +214,7 @@ Class | Method | HTTP request | Description
211
214
  *UltracartClient::ConversationApi* | [**sms_unsubscribe_conversation**](docs/ConversationApi.md#sms_unsubscribe_conversation) | **PUT** /conversation/conversations/{conversation_uuid}/sms_unsubscribe | Unsubscribe any SMS participants in this conversation
212
215
  *UltracartClient::ConversationApi* | [**start_conversation**](docs/ConversationApi.md#start_conversation) | **PUT** /conversation/conversations | Start a conversation
213
216
  *UltracartClient::ConversationApi* | [**update_agent_profile**](docs/ConversationApi.md#update_agent_profile) | **PUT** /conversation/agent/profile | Update agent profile
217
+ *UltracartClient::ConversationApi* | [**update_agent_profile_mcp**](docs/ConversationApi.md#update_agent_profile_mcp) | **POST** /conversation/agent/profiles/{user_id}/mcps/{mcp_server_uuid} | Update an agent MCP server
214
218
  *UltracartClient::ConversationApi* | [**update_conversation_canned_message**](docs/ConversationApi.md#update_conversation_canned_message) | **PUT** /conversation/canned_messages/{conversation_canned_message_oid} | Update a canned message
215
219
  *UltracartClient::ConversationApi* | [**update_conversation_department**](docs/ConversationApi.md#update_conversation_department) | **PUT** /conversation/departments/{conversation_department_oid} | Update a department
216
220
  *UltracartClient::ConversationApi* | [**update_conversation_engagement**](docs/ConversationApi.md#update_conversation_engagement) | **PUT** /conversation/engagements/{conversation_engagement_oid} | Update a engagement
@@ -789,6 +793,9 @@ Class | Method | HTTP request | Description
789
793
  - [UltracartClient::ConversationLocationCountry](docs/ConversationLocationCountry.md)
790
794
  - [UltracartClient::ConversationLocationStateProvince](docs/ConversationLocationStateProvince.md)
791
795
  - [UltracartClient::ConversationLocationsResponse](docs/ConversationLocationsResponse.md)
796
+ - [UltracartClient::ConversationMcpServer](docs/ConversationMcpServer.md)
797
+ - [UltracartClient::ConversationMcpServerResponse](docs/ConversationMcpServerResponse.md)
798
+ - [UltracartClient::ConversationMcpServersResponse](docs/ConversationMcpServersResponse.md)
792
799
  - [UltracartClient::ConversationMessage](docs/ConversationMessage.md)
793
800
  - [UltracartClient::ConversationMessageTranslation](docs/ConversationMessageTranslation.md)
794
801
  - [UltracartClient::ConversationMessageTransportStatus](docs/ConversationMessageTransportStatus.md)
@@ -1591,6 +1598,8 @@ Not every change is committed to every SDK.
1591
1598
 
1592
1599
  | Version | Date | Comments |
1593
1600
  | --: | :-: | --- |
1601
+ | 3.11.30 | 11/19/2025 | conversation - AI agent MCP server configuration methods |
1602
+ | 3.11.29 | 11/13/2025 | conversations - AI capabilities flag for generate coupon |
1594
1603
  | 3.11.28 | 11/07/2025 | OrderApi.assignToAffiliate |
1595
1604
  | 3.11.27 | 11/06/2025 | conversation ai knowledge base changes |
1596
1605
  | 3.11.26 | 10/20/2025 | conversation api bug fixes |
@@ -19,6 +19,8 @@ Method | HTTP request | Description
19
19
  [**get_agent_keep_alive**](ConversationApi.md#get_agent_keep_alive) | **GET** /conversation/agent/keepalive | Agent keep alive
20
20
  [**get_agent_profile**](ConversationApi.md#get_agent_profile) | **GET** /conversation/agent/profile | Get agent profile
21
21
  [**get_agent_profile_knowledge_base**](ConversationApi.md#get_agent_profile_knowledge_base) | **GET** /conversation/agent/profiles/{user_id}/knowledge_base | Get the list of knowledge base documents associated with this agent profile
22
+ [**get_agent_profile_mcp**](ConversationApi.md#get_agent_profile_mcp) | **GET** /conversation/agent/profiles/{user_id}/mcps/{mcp_server_uuid} | Get an MCP server associated with this agent
23
+ [**get_agent_profile_mcps**](ConversationApi.md#get_agent_profile_mcps) | **GET** /conversation/agent/profiles/{user_id}/mcps | Get the list of MCP servers associated with this agent
22
24
  [**get_agent_profiles**](ConversationApi.md#get_agent_profiles) | **GET** /conversation/agent/profiles | Get agent profiles
23
25
  [**get_agent_websocket_authorization**](ConversationApi.md#get_agent_websocket_authorization) | **PUT** /conversation/agent/auth | Get agent websocket authorization
24
26
  [**get_conversation**](ConversationApi.md#get_conversation) | **GET** /conversation/conversations/{conversation_uuid} | Retrieve a conversation
@@ -63,6 +65,7 @@ Method | HTTP request | Description
63
65
  [**get_virtual_agent_budget**](ConversationApi.md#get_virtual_agent_budget) | **GET** /conversation/virtualagent/budget | Get virtual agent budget
64
66
  [**get_virtual_agent_capabilities**](ConversationApi.md#get_virtual_agent_capabilities) | **GET** /conversation/virtualagent/capabilities | Get virtual agent capabilities
65
67
  [**insert_agent_profile_knowledge_base_document**](ConversationApi.md#insert_agent_profile_knowledge_base_document) | **POST** /conversation/agent/profiles/{user_id}/knowledge_base | Insert a knowledge base document
68
+ [**insert_agent_profile_mcp**](ConversationApi.md#insert_agent_profile_mcp) | **POST** /conversation/agent/profiles/{user_id}/mcps | Insert an agent MCP server
66
69
  [**insert_conversation_canned_message**](ConversationApi.md#insert_conversation_canned_message) | **POST** /conversation/canned_messages | Insert a canned message
67
70
  [**insert_conversation_department**](ConversationApi.md#insert_conversation_department) | **POST** /conversation/departments | Insert a department
68
71
  [**insert_conversation_engagement**](ConversationApi.md#insert_conversation_engagement) | **POST** /conversation/engagements | Insert a engagement
@@ -82,6 +85,7 @@ Method | HTTP request | Description
82
85
  [**sms_unsubscribe_conversation**](ConversationApi.md#sms_unsubscribe_conversation) | **PUT** /conversation/conversations/{conversation_uuid}/sms_unsubscribe | Unsubscribe any SMS participants in this conversation
83
86
  [**start_conversation**](ConversationApi.md#start_conversation) | **PUT** /conversation/conversations | Start a conversation
84
87
  [**update_agent_profile**](ConversationApi.md#update_agent_profile) | **PUT** /conversation/agent/profile | Update agent profile
88
+ [**update_agent_profile_mcp**](ConversationApi.md#update_agent_profile_mcp) | **POST** /conversation/agent/profiles/{user_id}/mcps/{mcp_server_uuid} | Update an agent MCP server
85
89
  [**update_conversation_canned_message**](ConversationApi.md#update_conversation_canned_message) | **PUT** /conversation/canned_messages/{conversation_canned_message_oid} | Update a canned message
86
90
  [**update_conversation_department**](ConversationApi.md#update_conversation_department) | **PUT** /conversation/departments/{conversation_department_oid} | Update a department
87
91
  [**update_conversation_engagement**](ConversationApi.md#update_conversation_engagement) | **PUT** /conversation/engagements/{conversation_engagement_oid} | Update a engagement
@@ -838,6 +842,109 @@ Name | Type | Description | Notes
838
842
 
839
843
 
840
844
 
845
+ # **get_agent_profile_mcp**
846
+ > ConversationMcpServerResponse get_agent_profile_mcp(user_id, mcp_server_uuid)
847
+
848
+ Get an MCP server associated with this agent
849
+
850
+ Retrieve MCP server associated with this agent
851
+
852
+ ### Example
853
+ ```ruby
854
+ # load the gem
855
+ require 'ultracart_api'
856
+
857
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
858
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
859
+ api_instance = UltracartClient::ConversationApi.new_using_api_key(simple_key, false, false)
860
+
861
+
862
+ user_id = 56 # Integer |
863
+
864
+ mcp_server_uuid = 'mcp_server_uuid_example' # String |
865
+
866
+
867
+ begin
868
+ #Get an MCP server associated with this agent
869
+ result = api_instance.get_agent_profile_mcp(user_id, mcp_server_uuid)
870
+ p result
871
+ rescue UltracartClient::ApiError => e
872
+ puts "Exception when calling ConversationApi->get_agent_profile_mcp: #{e}"
873
+ end
874
+ ```
875
+
876
+ ### Parameters
877
+
878
+ Name | Type | Description | Notes
879
+ ------------- | ------------- | ------------- | -------------
880
+ **user_id** | **Integer**| |
881
+ **mcp_server_uuid** | **String**| |
882
+
883
+ ### Return type
884
+
885
+ [**ConversationMcpServerResponse**](ConversationMcpServerResponse.md)
886
+
887
+ ### Authorization
888
+
889
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
890
+
891
+ ### HTTP request headers
892
+
893
+ - **Content-Type**: application/json
894
+ - **Accept**: application/json
895
+
896
+
897
+
898
+ # **get_agent_profile_mcps**
899
+ > ConversationMcpServersResponse get_agent_profile_mcps(user_id)
900
+
901
+ Get the list of MCP servers associated with this agent
902
+
903
+ Retrieve MCP servers associated with this agent
904
+
905
+ ### Example
906
+ ```ruby
907
+ # load the gem
908
+ require 'ultracart_api'
909
+
910
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
911
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
912
+ api_instance = UltracartClient::ConversationApi.new_using_api_key(simple_key, false, false)
913
+
914
+
915
+ user_id = 56 # Integer |
916
+
917
+
918
+ begin
919
+ #Get the list of MCP servers associated with this agent
920
+ result = api_instance.get_agent_profile_mcps(user_id)
921
+ p result
922
+ rescue UltracartClient::ApiError => e
923
+ puts "Exception when calling ConversationApi->get_agent_profile_mcps: #{e}"
924
+ end
925
+ ```
926
+
927
+ ### Parameters
928
+
929
+ Name | Type | Description | Notes
930
+ ------------- | ------------- | ------------- | -------------
931
+ **user_id** | **Integer**| |
932
+
933
+ ### Return type
934
+
935
+ [**ConversationMcpServersResponse**](ConversationMcpServersResponse.md)
936
+
937
+ ### Authorization
938
+
939
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
940
+
941
+ ### HTTP request headers
942
+
943
+ - **Content-Type**: application/json
944
+ - **Accept**: application/json
945
+
946
+
947
+
841
948
  # **get_agent_profiles**
842
949
  > ConversationAgentProfilesResponse get_agent_profiles
843
950
 
@@ -2965,6 +3072,59 @@ Name | Type | Description | Notes
2965
3072
 
2966
3073
 
2967
3074
 
3075
+ # **insert_agent_profile_mcp**
3076
+ > ConversationMcpServerResponse insert_agent_profile_mcp(user_id, mcp_server)
3077
+
3078
+ Insert an agent MCP server
3079
+
3080
+ Insert an agent MCP server
3081
+
3082
+ ### Example
3083
+ ```ruby
3084
+ # load the gem
3085
+ require 'ultracart_api'
3086
+
3087
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
3088
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
3089
+ api_instance = UltracartClient::ConversationApi.new_using_api_key(simple_key, false, false)
3090
+
3091
+
3092
+ user_id = 56 # Integer |
3093
+
3094
+ mcp_server = UltracartClient::ConversationMcpServer.new # ConversationMcpServer | MCP Server
3095
+
3096
+
3097
+ begin
3098
+ #Insert an agent MCP server
3099
+ result = api_instance.insert_agent_profile_mcp(user_id, mcp_server)
3100
+ p result
3101
+ rescue UltracartClient::ApiError => e
3102
+ puts "Exception when calling ConversationApi->insert_agent_profile_mcp: #{e}"
3103
+ end
3104
+ ```
3105
+
3106
+ ### Parameters
3107
+
3108
+ Name | Type | Description | Notes
3109
+ ------------- | ------------- | ------------- | -------------
3110
+ **user_id** | **Integer**| |
3111
+ **mcp_server** | [**ConversationMcpServer**](ConversationMcpServer.md)| MCP Server |
3112
+
3113
+ ### Return type
3114
+
3115
+ [**ConversationMcpServerResponse**](ConversationMcpServerResponse.md)
3116
+
3117
+ ### Authorization
3118
+
3119
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
3120
+
3121
+ ### HTTP request headers
3122
+
3123
+ - **Content-Type**: application/json
3124
+ - **Accept**: application/json
3125
+
3126
+
3127
+
2968
3128
  # **insert_conversation_canned_message**
2969
3129
  > ConversationCannedMessageResponse insert_conversation_canned_message(canned_message)
2970
3130
 
@@ -3915,6 +4075,62 @@ Name | Type | Description | Notes
3915
4075
 
3916
4076
 
3917
4077
 
4078
+ # **update_agent_profile_mcp**
4079
+ > ConversationMcpServerResponse update_agent_profile_mcp(user_id, mcp_server_uuid, mcp_server)
4080
+
4081
+ Update an agent MCP server
4082
+
4083
+ Update an agent MCP server
4084
+
4085
+ ### Example
4086
+ ```ruby
4087
+ # load the gem
4088
+ require 'ultracart_api'
4089
+
4090
+ # Create a Simple Key: https://ultracart.atlassian.net/wiki/spaces/ucdoc/pages/38688545/API+Simple+Key
4091
+ simple_key = '109ee846ee69f50177018ab12f008a00748a25aa28dbdc0177018ab12f008a00'
4092
+ api_instance = UltracartClient::ConversationApi.new_using_api_key(simple_key, false, false)
4093
+
4094
+
4095
+ user_id = 56 # Integer |
4096
+
4097
+ mcp_server_uuid = 'mcp_server_uuid_example' # String |
4098
+
4099
+ mcp_server = UltracartClient::ConversationMcpServer.new # ConversationMcpServer | MCP Server
4100
+
4101
+
4102
+ begin
4103
+ #Update an agent MCP server
4104
+ result = api_instance.update_agent_profile_mcp(user_id, mcp_server_uuid, mcp_server)
4105
+ p result
4106
+ rescue UltracartClient::ApiError => e
4107
+ puts "Exception when calling ConversationApi->update_agent_profile_mcp: #{e}"
4108
+ end
4109
+ ```
4110
+
4111
+ ### Parameters
4112
+
4113
+ Name | Type | Description | Notes
4114
+ ------------- | ------------- | ------------- | -------------
4115
+ **user_id** | **Integer**| |
4116
+ **mcp_server_uuid** | **String**| |
4117
+ **mcp_server** | [**ConversationMcpServer**](ConversationMcpServer.md)| MCP Server |
4118
+
4119
+ ### Return type
4120
+
4121
+ [**ConversationMcpServerResponse**](ConversationMcpServerResponse.md)
4122
+
4123
+ ### Authorization
4124
+
4125
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
4126
+
4127
+ ### HTTP request headers
4128
+
4129
+ - **Content-Type**: application/json
4130
+ - **Accept**: application/json
4131
+
4132
+
4133
+
3918
4134
  # **update_conversation_canned_message**
3919
4135
  > ConversationCannedMessageResponse update_conversation_canned_message(conversation_canned_message_oid, canned_message)
3920
4136
 
@@ -0,0 +1,15 @@
1
+ # UltracartClient::ConversationMcpServer
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **auth_method** | **String** | Authorization Method | [optional]
7
+ **basic_password** | **String** | Basic password | [optional]
8
+ **basic_user_name** | **String** | Basic user name | [optional]
9
+ **header_name** | **String** | Header name | [optional]
10
+ **header_value** | **String** | Header value | [optional]
11
+ **mcp_server_uuid** | **String** | UUID of the MCP server configuration | [optional]
12
+ **priority** | **Integer** | Priority on which the MCP server tools are incorporated into the model. Lower number comes first | [optional]
13
+ **url** | **String** | URL to the MCP server (must be https) | [optional]
14
+
15
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::ConversationMcpServerResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **mcp_server** | [**ConversationMcpServer**](ConversationMcpServer.md) | | [optional]
8
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # UltracartClient::ConversationMcpServersResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | [**Error**](Error.md) | | [optional]
7
+ **mcp_servers** | [**Array<ConversationMcpServer>**](ConversationMcpServer.md) | | [optional]
8
+ **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional]
9
+ **success** | **BOOLEAN** | Indicates if API call was successful | [optional]
10
+ **warning** | [**Warning**](Warning.md) | | [optional]
11
+
12
+
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
14
14
  **merchant_id** | **String** | | [optional]
15
15
  **message_dts** | **String** | Message date/time | [optional]
16
16
  **message_epoch** | **Integer** | Message epoch milliseconds | [optional]
17
+ **message_type** | **String** | | [optional]
17
18
  **translations** | [**Array<ConversationMessageTranslation>**](ConversationMessageTranslation.md) | | [optional]
18
19
  **transport_statuses** | [**Array<ConversationMessageTransportStatus>**](ConversationMessageTransportStatus.md) | | [optional]
19
20
  **type** | **String** | Message type | [optional]
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **access_storefront_and_item** | **BOOLEAN** | Permission flag to allow this Agent access to the storefront and item information. | [optional]
7
7
  **cancel_subscription** | **BOOLEAN** | | [optional]
8
8
  **delay_subscription** | **BOOLEAN** | | [optional]
9
+ **generate_coupon** | **BOOLEAN** | Permission flag to allow this Agent to generate coupons based upon the agent prompt instructions | [optional]
9
10
  **lookup_order_information** | **BOOLEAN** | | [optional]
10
11
  **lookup_subscription_information** | **BOOLEAN** | | [optional]
11
12
  **open_support_ticket** | **BOOLEAN** | | [optional]
data/docs/ItemShipping.md CHANGED
@@ -27,6 +27,7 @@ Name | Type | Description | Notes
27
27
  **freight_class** | **String** | Freight class | [optional]
28
28
  **hazmat** | **BOOLEAN** | Hazardous material | [optional]
29
29
  **hold_for_transmission** | **BOOLEAN** | Hold for transmission | [optional]
30
+ **include_on_packing_slip** | **BOOLEAN** | Force this item onto the packing slip even if there is no weight. | [optional]
30
31
  **made_to_order** | **BOOLEAN** | True if this item is made to order | [optional]
31
32
  **made_to_order_lead_time** | **Integer** | Number of days lead time it takes to make the item before ite can ship | [optional]
32
33
  **max_days_time_in_transit** | **Integer** | Maximum days allowed in transit | [optional]