@lobehub/market-types 1.10.0 → 1.10.2
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/index.d.mts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -803,6 +803,8 @@ interface RangeQuery {
|
|
|
803
803
|
* Install report request data
|
|
804
804
|
*/
|
|
805
805
|
interface InstallReportRequest {
|
|
806
|
+
/** Client IP address (real user IP) */
|
|
807
|
+
clientIp?: string;
|
|
806
808
|
/** Error code if installation failed */
|
|
807
809
|
errorCode?: string;
|
|
808
810
|
/** Error message if installation failed */
|
|
@@ -810,7 +812,7 @@ interface InstallReportRequest {
|
|
|
810
812
|
/** Plugin identifier */
|
|
811
813
|
identifier: string;
|
|
812
814
|
/** Installation duration in milliseconds */
|
|
813
|
-
installDurationMs
|
|
815
|
+
installDurationMs?: number;
|
|
814
816
|
/** Plugin manifest information */
|
|
815
817
|
manifest?: Pick<PluginManifest, 'prompts' | 'tools' | 'resources'>;
|
|
816
818
|
/** Additional metadata */
|
|
@@ -819,6 +821,8 @@ interface InstallReportRequest {
|
|
|
819
821
|
platform?: string;
|
|
820
822
|
/** Whether the installation was successful */
|
|
821
823
|
success: boolean;
|
|
824
|
+
/** User agent (real user agent) */
|
|
825
|
+
userAgent?: string;
|
|
822
826
|
/** Plugin version */
|
|
823
827
|
version: string;
|
|
824
828
|
}
|