@crestal/nation-sdk 0.8.56 → 0.8.58

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.
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Nation IntentKit API
3
3
  * API for Nation IntentKit services
4
4
  *
5
- * The version of the OpenAPI document: 0.8.56
5
+ * The version of the OpenAPI document: 0.8.58
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1521,20 +1521,6 @@ export interface ValidationError {
1521
1521
  }
1522
1522
  export interface ValidationErrorLocInner {
1523
1523
  }
1524
- /**
1525
- * Request agent for chat response.
1526
- */
1527
- export interface X402MessageRequest {
1528
- 'chat_id'?: string | null;
1529
- 'app_id'?: string | null;
1530
- /**
1531
- * Content of the message
1532
- */
1533
- 'message': string;
1534
- 'search_mode'?: boolean | null;
1535
- 'super_mode'?: boolean | null;
1536
- 'attachments'?: Array<ChatMessageAttachment> | null;
1537
- }
1538
1524
  /**
1539
1525
  * AgentApi - axios parameter creator
1540
1526
  */
@@ -1542,11 +1528,11 @@ export declare const AgentApiAxiosParamCreator: (configuration?: Configuration)
1542
1528
  /**
1543
1529
  * Create a new agent. **Request Body:** * `agent` - Agent configuration **Returns:** * `AgentResponse` - Created agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Agent limit reached, invalid agent ID format, or agent ID already exists - 422: Invalid agent configuration from JSON schema validation - 500: Database error
1544
1530
  * @summary Create Agent
1545
- * @param {AgentUpdate} [agentUpdate]
1531
+ * @param {AgentUpdate} agentUpdate
1546
1532
  * @param {*} [options] Override http request option.
1547
1533
  * @throws {RequiredError}
1548
1534
  */
1549
- createAgent: (agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1535
+ createAgent: (agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1550
1536
  /**
1551
1537
  * Export agent configuration as YAML. **Path Parameters:** * `agent_id` - ID of the agent to export **Returns:** * `str` - YAML configuration of the agent **Raises:** * `HTTPException`: - 404: Agent not found - 403: Not authorized to access this agent
1552
1538
  * @summary Export Agent
@@ -1631,20 +1617,20 @@ export declare const AgentApiAxiosParamCreator: (configuration?: Configuration)
1631
1617
  * Override an existing agent. Use input to override agent configuration. If some fields are not provided, they will be reset to default values. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `data` - Agent update configuration **Returns:** * `AgentResponse` - Updated agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Invalid agent ID format - 404: Agent not found - 403: Permission denied (if owner mismatch) - 422: Invalid agent configuration from JSON schema validation - 500: Database error
1632
1618
  * @summary Override Agent
1633
1619
  * @param {string} agentId ID of the agent to update
1634
- * @param {AgentUpdate} [agentUpdate]
1620
+ * @param {AgentUpdate} agentUpdate
1635
1621
  * @param {*} [options] Override http request option.
1636
1622
  * @throws {RequiredError}
1637
1623
  */
1638
- overrideAgent: (agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1624
+ overrideAgent: (agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1639
1625
  /**
1640
1626
  * Override agent public information with the provided values.
1641
1627
  * @summary Override Agent Public Information
1642
1628
  * @param {string} agentId ID of the agent to update
1643
- * @param {AgentPublicInfo} [agentPublicInfo]
1629
+ * @param {AgentPublicInfo} agentPublicInfo
1644
1630
  * @param {*} [options] Override http request option.
1645
1631
  * @throws {RequiredError}
1646
1632
  */
1647
- overrideAgentPublicInfo: (agentId: string, agentPublicInfo?: AgentPublicInfo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1633
+ overrideAgentPublicInfo: (agentId: string, agentPublicInfo: AgentPublicInfo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1648
1634
  /**
1649
1635
  * Publish an agent if its public information passes strict validation.
1650
1636
  * @summary Publish Agent
@@ -1672,20 +1658,20 @@ export declare const AgentApiAxiosParamCreator: (configuration?: Configuration)
1672
1658
  /**
1673
1659
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core or JSON schema validation - 500: Server error
1674
1660
  * @summary Validate Agent Create
1675
- * @param {AgentUpdate} [agentUpdate]
1661
+ * @param {AgentUpdate} agentUpdate
1676
1662
  * @param {*} [options] Override http request option.
1677
1663
  * @throws {RequiredError}
1678
1664
  */
1679
- validateAgentCreate: (agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1665
+ validateAgentCreate: (agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1680
1666
  /**
1681
1667
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core - 500: Server error
1682
1668
  * @summary Validate Agent Update
1683
1669
  * @param {string} agentId Agent ID
1684
- * @param {AgentUpdate} [agentUpdate]
1670
+ * @param {AgentUpdate} agentUpdate
1685
1671
  * @param {*} [options] Override http request option.
1686
1672
  * @throws {RequiredError}
1687
1673
  */
1688
- validateAgentUpdate: (agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1674
+ validateAgentUpdate: (agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1689
1675
  };
1690
1676
  /**
1691
1677
  * AgentApi - functional programming interface
@@ -1694,11 +1680,11 @@ export declare const AgentApiFp: (configuration?: Configuration) => {
1694
1680
  /**
1695
1681
  * Create a new agent. **Request Body:** * `agent` - Agent configuration **Returns:** * `AgentResponse` - Created agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Agent limit reached, invalid agent ID format, or agent ID already exists - 422: Invalid agent configuration from JSON schema validation - 500: Database error
1696
1682
  * @summary Create Agent
1697
- * @param {AgentUpdate} [agentUpdate]
1683
+ * @param {AgentUpdate} agentUpdate
1698
1684
  * @param {*} [options] Override http request option.
1699
1685
  * @throws {RequiredError}
1700
1686
  */
1701
- createAgent(agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AgentResponse>>;
1687
+ createAgent(agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AgentResponse>>;
1702
1688
  /**
1703
1689
  * Export agent configuration as YAML. **Path Parameters:** * `agent_id` - ID of the agent to export **Returns:** * `str` - YAML configuration of the agent **Raises:** * `HTTPException`: - 404: Agent not found - 403: Not authorized to access this agent
1704
1690
  * @summary Export Agent
@@ -1783,20 +1769,20 @@ export declare const AgentApiFp: (configuration?: Configuration) => {
1783
1769
  * Override an existing agent. Use input to override agent configuration. If some fields are not provided, they will be reset to default values. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `data` - Agent update configuration **Returns:** * `AgentResponse` - Updated agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Invalid agent ID format - 404: Agent not found - 403: Permission denied (if owner mismatch) - 422: Invalid agent configuration from JSON schema validation - 500: Database error
1784
1770
  * @summary Override Agent
1785
1771
  * @param {string} agentId ID of the agent to update
1786
- * @param {AgentUpdate} [agentUpdate]
1772
+ * @param {AgentUpdate} agentUpdate
1787
1773
  * @param {*} [options] Override http request option.
1788
1774
  * @throws {RequiredError}
1789
1775
  */
1790
- overrideAgent(agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AgentResponse>>;
1776
+ overrideAgent(agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AgentResponse>>;
1791
1777
  /**
1792
1778
  * Override agent public information with the provided values.
1793
1779
  * @summary Override Agent Public Information
1794
1780
  * @param {string} agentId ID of the agent to update
1795
- * @param {AgentPublicInfo} [agentPublicInfo]
1781
+ * @param {AgentPublicInfo} agentPublicInfo
1796
1782
  * @param {*} [options] Override http request option.
1797
1783
  * @throws {RequiredError}
1798
1784
  */
1799
- overrideAgentPublicInfo(agentId: string, agentPublicInfo?: AgentPublicInfo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Agent>>;
1785
+ overrideAgentPublicInfo(agentId: string, agentPublicInfo: AgentPublicInfo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Agent>>;
1800
1786
  /**
1801
1787
  * Publish an agent if its public information passes strict validation.
1802
1788
  * @summary Publish Agent
@@ -1824,20 +1810,20 @@ export declare const AgentApiFp: (configuration?: Configuration) => {
1824
1810
  /**
1825
1811
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core or JSON schema validation - 500: Server error
1826
1812
  * @summary Validate Agent Create
1827
- * @param {AgentUpdate} [agentUpdate]
1813
+ * @param {AgentUpdate} agentUpdate
1828
1814
  * @param {*} [options] Override http request option.
1829
1815
  * @throws {RequiredError}
1830
1816
  */
1831
- validateAgentCreate(agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1817
+ validateAgentCreate(agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1832
1818
  /**
1833
1819
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core - 500: Server error
1834
1820
  * @summary Validate Agent Update
1835
1821
  * @param {string} agentId Agent ID
1836
- * @param {AgentUpdate} [agentUpdate]
1822
+ * @param {AgentUpdate} agentUpdate
1837
1823
  * @param {*} [options] Override http request option.
1838
1824
  * @throws {RequiredError}
1839
1825
  */
1840
- validateAgentUpdate(agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1826
+ validateAgentUpdate(agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1841
1827
  };
1842
1828
  /**
1843
1829
  * AgentApi - factory interface
@@ -1846,11 +1832,11 @@ export declare const AgentApiFactory: (configuration?: Configuration, basePath?:
1846
1832
  /**
1847
1833
  * Create a new agent. **Request Body:** * `agent` - Agent configuration **Returns:** * `AgentResponse` - Created agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Agent limit reached, invalid agent ID format, or agent ID already exists - 422: Invalid agent configuration from JSON schema validation - 500: Database error
1848
1834
  * @summary Create Agent
1849
- * @param {AgentUpdate} [agentUpdate]
1835
+ * @param {AgentUpdate} agentUpdate
1850
1836
  * @param {*} [options] Override http request option.
1851
1837
  * @throws {RequiredError}
1852
1838
  */
1853
- createAgent(agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AgentResponse>;
1839
+ createAgent(agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AgentResponse>;
1854
1840
  /**
1855
1841
  * Export agent configuration as YAML. **Path Parameters:** * `agent_id` - ID of the agent to export **Returns:** * `str` - YAML configuration of the agent **Raises:** * `HTTPException`: - 404: Agent not found - 403: Not authorized to access this agent
1856
1842
  * @summary Export Agent
@@ -1935,20 +1921,20 @@ export declare const AgentApiFactory: (configuration?: Configuration, basePath?:
1935
1921
  * Override an existing agent. Use input to override agent configuration. If some fields are not provided, they will be reset to default values. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `data` - Agent update configuration **Returns:** * `AgentResponse` - Updated agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Invalid agent ID format - 404: Agent not found - 403: Permission denied (if owner mismatch) - 422: Invalid agent configuration from JSON schema validation - 500: Database error
1936
1922
  * @summary Override Agent
1937
1923
  * @param {string} agentId ID of the agent to update
1938
- * @param {AgentUpdate} [agentUpdate]
1924
+ * @param {AgentUpdate} agentUpdate
1939
1925
  * @param {*} [options] Override http request option.
1940
1926
  * @throws {RequiredError}
1941
1927
  */
1942
- overrideAgent(agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AgentResponse>;
1928
+ overrideAgent(agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<AgentResponse>;
1943
1929
  /**
1944
1930
  * Override agent public information with the provided values.
1945
1931
  * @summary Override Agent Public Information
1946
1932
  * @param {string} agentId ID of the agent to update
1947
- * @param {AgentPublicInfo} [agentPublicInfo]
1933
+ * @param {AgentPublicInfo} agentPublicInfo
1948
1934
  * @param {*} [options] Override http request option.
1949
1935
  * @throws {RequiredError}
1950
1936
  */
1951
- overrideAgentPublicInfo(agentId: string, agentPublicInfo?: AgentPublicInfo, options?: RawAxiosRequestConfig): AxiosPromise<Agent>;
1937
+ overrideAgentPublicInfo(agentId: string, agentPublicInfo: AgentPublicInfo, options?: RawAxiosRequestConfig): AxiosPromise<Agent>;
1952
1938
  /**
1953
1939
  * Publish an agent if its public information passes strict validation.
1954
1940
  * @summary Publish Agent
@@ -1976,20 +1962,20 @@ export declare const AgentApiFactory: (configuration?: Configuration, basePath?:
1976
1962
  /**
1977
1963
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core or JSON schema validation - 500: Server error
1978
1964
  * @summary Validate Agent Create
1979
- * @param {AgentUpdate} [agentUpdate]
1965
+ * @param {AgentUpdate} agentUpdate
1980
1966
  * @param {*} [options] Override http request option.
1981
1967
  * @throws {RequiredError}
1982
1968
  */
1983
- validateAgentCreate(agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1969
+ validateAgentCreate(agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1984
1970
  /**
1985
1971
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core - 500: Server error
1986
1972
  * @summary Validate Agent Update
1987
1973
  * @param {string} agentId Agent ID
1988
- * @param {AgentUpdate} [agentUpdate]
1974
+ * @param {AgentUpdate} agentUpdate
1989
1975
  * @param {*} [options] Override http request option.
1990
1976
  * @throws {RequiredError}
1991
1977
  */
1992
- validateAgentUpdate(agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1978
+ validateAgentUpdate(agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1993
1979
  };
1994
1980
  /**
1995
1981
  * AgentApi - object-oriented interface
@@ -1998,11 +1984,11 @@ export declare class AgentApi extends BaseAPI {
1998
1984
  /**
1999
1985
  * Create a new agent. **Request Body:** * `agent` - Agent configuration **Returns:** * `AgentResponse` - Created agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Agent limit reached, invalid agent ID format, or agent ID already exists - 422: Invalid agent configuration from JSON schema validation - 500: Database error
2000
1986
  * @summary Create Agent
2001
- * @param {AgentUpdate} [agentUpdate]
1987
+ * @param {AgentUpdate} agentUpdate
2002
1988
  * @param {*} [options] Override http request option.
2003
1989
  * @throws {RequiredError}
2004
1990
  */
2005
- createAgent(agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentResponse, any, {}>>;
1991
+ createAgent(agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentResponse, any, {}>>;
2006
1992
  /**
2007
1993
  * Export agent configuration as YAML. **Path Parameters:** * `agent_id` - ID of the agent to export **Returns:** * `str` - YAML configuration of the agent **Raises:** * `HTTPException`: - 404: Agent not found - 403: Not authorized to access this agent
2008
1994
  * @summary Export Agent
@@ -2087,20 +2073,20 @@ export declare class AgentApi extends BaseAPI {
2087
2073
  * Override an existing agent. Use input to override agent configuration. If some fields are not provided, they will be reset to default values. **Path Parameters:** * `agent_id` - ID of the agent to update **Request Body:** * `data` - Agent update configuration **Returns:** * `AgentResponse` - Updated agent configuration with additional processed data **Raises:** * `HTTPException`: - 400: Invalid agent ID format - 404: Agent not found - 403: Permission denied (if owner mismatch) - 422: Invalid agent configuration from JSON schema validation - 500: Database error
2088
2074
  * @summary Override Agent
2089
2075
  * @param {string} agentId ID of the agent to update
2090
- * @param {AgentUpdate} [agentUpdate]
2076
+ * @param {AgentUpdate} agentUpdate
2091
2077
  * @param {*} [options] Override http request option.
2092
2078
  * @throws {RequiredError}
2093
2079
  */
2094
- overrideAgent(agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentResponse, any, {}>>;
2080
+ overrideAgent(agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AgentResponse, any, {}>>;
2095
2081
  /**
2096
2082
  * Override agent public information with the provided values.
2097
2083
  * @summary Override Agent Public Information
2098
2084
  * @param {string} agentId ID of the agent to update
2099
- * @param {AgentPublicInfo} [agentPublicInfo]
2085
+ * @param {AgentPublicInfo} agentPublicInfo
2100
2086
  * @param {*} [options] Override http request option.
2101
2087
  * @throws {RequiredError}
2102
2088
  */
2103
- overrideAgentPublicInfo(agentId: string, agentPublicInfo?: AgentPublicInfo, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Agent, any, {}>>;
2089
+ overrideAgentPublicInfo(agentId: string, agentPublicInfo: AgentPublicInfo, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Agent, any, {}>>;
2104
2090
  /**
2105
2091
  * Publish an agent if its public information passes strict validation.
2106
2092
  * @summary Publish Agent
@@ -2128,20 +2114,20 @@ export declare class AgentApi extends BaseAPI {
2128
2114
  /**
2129
2115
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core or JSON schema validation - 500: Server error
2130
2116
  * @summary Validate Agent Create
2131
- * @param {AgentUpdate} [agentUpdate]
2117
+ * @param {AgentUpdate} agentUpdate
2132
2118
  * @param {*} [options] Override http request option.
2133
2119
  * @throws {RequiredError}
2134
2120
  */
2135
- validateAgentCreate(agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2121
+ validateAgentCreate(agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2136
2122
  /**
2137
2123
  * Validate agent configuration. **Request Body:** * `agent` - Agent configuration **Returns:** * `204 No Content` - Agent configuration is valid **Raises:** * `HTTPException`: - 400: Invalid agent configuration - 422: Invalid agent configuration from intentkit core - 500: Server error
2138
2124
  * @summary Validate Agent Update
2139
2125
  * @param {string} agentId Agent ID
2140
- * @param {AgentUpdate} [agentUpdate]
2126
+ * @param {AgentUpdate} agentUpdate
2141
2127
  * @param {*} [options] Override http request option.
2142
2128
  * @throws {RequiredError}
2143
2129
  */
2144
- validateAgentUpdate(agentId: string, agentUpdate?: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2130
+ validateAgentUpdate(agentId: string, agentUpdate: AgentUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2145
2131
  }
2146
2132
  /**
2147
2133
  * ChatApi - axios parameter creator
@@ -3863,11 +3849,10 @@ export declare const X402ApiAxiosParamCreator: (configuration?: Configuration) =
3863
3849
  * Send a new message to a specific chat thread. The response is a list of messages generated by the agent. The response does not include the original user message. It could be skill calls, agent messages, or system error messages. The last message is the agent\'s final response.
3864
3850
  * @summary Chat by x402
3865
3851
  * @param {string} aid Agent ID
3866
- * @param {X402MessageRequest} x402MessageRequest
3867
3852
  * @param {*} [options] Override http request option.
3868
3853
  * @throws {RequiredError}
3869
3854
  */
3870
- chatByX402: (aid: string, x402MessageRequest: X402MessageRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3855
+ chatByX402: (aid: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3871
3856
  };
3872
3857
  /**
3873
3858
  * X402Api - functional programming interface
@@ -3877,11 +3862,10 @@ export declare const X402ApiFp: (configuration?: Configuration) => {
3877
3862
  * Send a new message to a specific chat thread. The response is a list of messages generated by the agent. The response does not include the original user message. It could be skill calls, agent messages, or system error messages. The last message is the agent\'s final response.
3878
3863
  * @summary Chat by x402
3879
3864
  * @param {string} aid Agent ID
3880
- * @param {X402MessageRequest} x402MessageRequest
3881
3865
  * @param {*} [options] Override http request option.
3882
3866
  * @throws {RequiredError}
3883
3867
  */
3884
- chatByX402(aid: string, x402MessageRequest: X402MessageRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ChatMessage>>>;
3868
+ chatByX402(aid: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ChatMessage>>>;
3885
3869
  };
3886
3870
  /**
3887
3871
  * X402Api - factory interface
@@ -3891,11 +3875,10 @@ export declare const X402ApiFactory: (configuration?: Configuration, basePath?:
3891
3875
  * Send a new message to a specific chat thread. The response is a list of messages generated by the agent. The response does not include the original user message. It could be skill calls, agent messages, or system error messages. The last message is the agent\'s final response.
3892
3876
  * @summary Chat by x402
3893
3877
  * @param {string} aid Agent ID
3894
- * @param {X402MessageRequest} x402MessageRequest
3895
3878
  * @param {*} [options] Override http request option.
3896
3879
  * @throws {RequiredError}
3897
3880
  */
3898
- chatByX402(aid: string, x402MessageRequest: X402MessageRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<ChatMessage>>;
3881
+ chatByX402(aid: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ChatMessage>>;
3899
3882
  };
3900
3883
  /**
3901
3884
  * X402Api - object-oriented interface
@@ -3905,9 +3888,8 @@ export declare class X402Api extends BaseAPI {
3905
3888
  * Send a new message to a specific chat thread. The response is a list of messages generated by the agent. The response does not include the original user message. It could be skill calls, agent messages, or system error messages. The last message is the agent\'s final response.
3906
3889
  * @summary Chat by x402
3907
3890
  * @param {string} aid Agent ID
3908
- * @param {X402MessageRequest} x402MessageRequest
3909
3891
  * @param {*} [options] Override http request option.
3910
3892
  * @throws {RequiredError}
3911
3893
  */
3912
- chatByX402(aid: string, x402MessageRequest: X402MessageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatMessage[], any, {}>>;
3894
+ chatByX402(aid: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatMessage[], any, {}>>;
3913
3895
  }