@adaline/open-router 1.6.0 → 1.7.0

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 CHANGED
@@ -973,6 +973,29 @@ declare const BaseChatModelSchema: {
973
973
  title: string;
974
974
  description: string;
975
975
  objectSchema?: any;
976
+ } | {
977
+ type: "paired-select";
978
+ param: string;
979
+ title: string;
980
+ description: string;
981
+ fields: [{
982
+ label: string;
983
+ key: string;
984
+ choices: {
985
+ value: string;
986
+ label: string;
987
+ }[];
988
+ description?: string | undefined;
989
+ }, {
990
+ label: string;
991
+ key: string;
992
+ choices: {
993
+ value: string;
994
+ label: string;
995
+ }[];
996
+ description?: string | undefined;
997
+ }];
998
+ uniqueByField?: string | undefined;
976
999
  } | {
977
1000
  type: "range";
978
1001
  param: string;
package/dist/index.d.ts CHANGED
@@ -973,6 +973,29 @@ declare const BaseChatModelSchema: {
973
973
  title: string;
974
974
  description: string;
975
975
  objectSchema?: any;
976
+ } | {
977
+ type: "paired-select";
978
+ param: string;
979
+ title: string;
980
+ description: string;
981
+ fields: [{
982
+ label: string;
983
+ key: string;
984
+ choices: {
985
+ value: string;
986
+ label: string;
987
+ }[];
988
+ description?: string | undefined;
989
+ }, {
990
+ label: string;
991
+ key: string;
992
+ choices: {
993
+ value: string;
994
+ label: string;
995
+ }[];
996
+ description?: string | undefined;
997
+ }];
998
+ uniqueByField?: string | undefined;
976
999
  } | {
977
1000
  type: "range";
978
1001
  param: string;