@fastgpt-plugin/sdk-client 0.0.1-alpha.5 → 0.0.1-alpha.7

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.ts CHANGED
@@ -590,7 +590,12 @@ declare const PluginVersionListParamsSchema: z$2.ZodObject<{
590
590
  pluginId: z$2.ZodString;
591
591
  source: z$2.ZodString;
592
592
  }, z$2.core.$strip>;
593
- declare const PluginRuntimeConfigSchema: z$2.ZodObject<{}, z$2.core.$catchall<z$2.ZodUnknown>>;
593
+ declare const PluginRuntimeConfigSchema: z$2.ZodObject<{
594
+ minPods: z$2.ZodNumber;
595
+ maxPods: z$2.ZodNumber;
596
+ podTimeout: z$2.ZodNumber;
597
+ maxConcurrentRequestsPerPod: z$2.ZodNumber;
598
+ }, z$2.core.$strict>;
594
599
  type PluginDTOType = z$2.infer<typeof PluginBaseDTOSchema>;
595
600
  type PluginUploadFailureDTOType = z$2.infer<typeof PluginUploadFailureDTOSchema>;
596
601
  type PluginUploadResponseDTOType = z$2.infer<typeof PluginUploadResponseDTOSchema>;
@@ -644,6 +649,7 @@ declare const ToolListItemDTOSchema: z$2.ZodObject<{
644
649
  }, z$2.core.$strip>>>;
645
650
  source: z$2.ZodUnion<[z$2.ZodLiteral<"system">, z$2.ZodString]>;
646
651
  isToolset: z$2.ZodBoolean;
652
+ hasSecret: z$2.ZodBoolean;
647
653
  type: z$2.ZodLiteral<"tool">;
648
654
  name: z$2.ZodObject<{
649
655
  en: z$2.ZodString;
@@ -697,6 +703,7 @@ declare const ToolListDTOSchema: z$2.ZodArray<z$2.ZodObject<{
697
703
  }, z$2.core.$strip>>>;
698
704
  source: z$2.ZodUnion<[z$2.ZodLiteral<"system">, z$2.ZodString]>;
699
705
  isToolset: z$2.ZodBoolean;
706
+ hasSecret: z$2.ZodBoolean;
700
707
  type: z$2.ZodLiteral<"tool">;
701
708
  name: z$2.ZodObject<{
702
709
  en: z$2.ZodString;