@orq-ai/node 3.6.0-rc.27 → 3.6.0-rc.29
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/bin/mcp-server.js +3013 -3880
- package/bin/mcp-server.js.map +37 -28
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/deployments.d.ts +618 -618
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +864 -1051
- package/models/components/deployments.js.map +1 -1
- package/models/operations/bulkcreatedatapoints.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/deploymentgetconfig.d.ts +618 -618
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +855 -1052
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentstream.d.ts +618 -618
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +823 -1052
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/searchknowledge.d.ts +642 -642
- package/models/operations/searchknowledge.d.ts.map +1 -1
- package/models/operations/searchknowledge.js +946 -1177
- package/models/operations/searchknowledge.js.map +1 -1
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/package.json +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/deployments.ts +1217 -1677
- package/src/models/operations/bulkcreatedatapoints.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/deploymentgetconfig.ts +1202 -1723
- package/src/models/operations/deploymentstream.ts +1314 -1761
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/searchknowledge.ts +1334 -1750
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
|
@@ -719,192 +719,192 @@ export type Thread = {
|
|
|
719
719
|
/**
|
|
720
720
|
* Exists
|
|
721
721
|
*/
|
|
722
|
-
export type
|
|
723
|
-
|
|
722
|
+
export type OrExists = {
|
|
723
|
+
exists: boolean;
|
|
724
724
|
};
|
|
725
|
-
export type
|
|
725
|
+
export type DeploymentGetConfigOrNin = string | number | boolean;
|
|
726
726
|
/**
|
|
727
727
|
* Not in
|
|
728
728
|
*/
|
|
729
|
-
export type
|
|
730
|
-
|
|
729
|
+
export type OrNin = {
|
|
730
|
+
nin: Array<string | number | boolean>;
|
|
731
731
|
};
|
|
732
|
-
export type
|
|
732
|
+
export type DeploymentGetConfigOrIn = string | number | boolean;
|
|
733
733
|
/**
|
|
734
734
|
* In
|
|
735
735
|
*/
|
|
736
|
-
export type
|
|
737
|
-
|
|
736
|
+
export type OrIn = {
|
|
737
|
+
in: Array<string | number | boolean>;
|
|
738
738
|
};
|
|
739
739
|
/**
|
|
740
740
|
* Less than or equal to
|
|
741
741
|
*/
|
|
742
|
-
export type
|
|
743
|
-
|
|
742
|
+
export type OrLte = {
|
|
743
|
+
lte: number;
|
|
744
744
|
};
|
|
745
745
|
/**
|
|
746
746
|
* Less than
|
|
747
747
|
*/
|
|
748
|
-
export type
|
|
749
|
-
|
|
748
|
+
export type OrLt = {
|
|
749
|
+
lt: number;
|
|
750
750
|
};
|
|
751
751
|
/**
|
|
752
752
|
* Greater than or equal to
|
|
753
753
|
*/
|
|
754
|
-
export type
|
|
755
|
-
|
|
754
|
+
export type OrGte = {
|
|
755
|
+
gte: number;
|
|
756
756
|
};
|
|
757
|
-
export type
|
|
758
|
-
|
|
757
|
+
export type Or3 = {
|
|
758
|
+
gt: number;
|
|
759
759
|
};
|
|
760
|
-
export type
|
|
760
|
+
export type DeploymentGetConfigOrNe = string | number | boolean;
|
|
761
761
|
/**
|
|
762
762
|
* Not equal to
|
|
763
763
|
*/
|
|
764
|
-
export type
|
|
765
|
-
|
|
764
|
+
export type OrNe = {
|
|
765
|
+
ne: string | number | boolean;
|
|
766
766
|
};
|
|
767
|
-
export type
|
|
767
|
+
export type DeploymentGetConfigOrEq = string | number | boolean;
|
|
768
768
|
/**
|
|
769
769
|
* Equal to
|
|
770
770
|
*/
|
|
771
|
-
export type
|
|
772
|
-
|
|
771
|
+
export type OrEq = {
|
|
772
|
+
eq: string | number | boolean;
|
|
773
773
|
};
|
|
774
|
-
export type
|
|
774
|
+
export type KnowledgeFilterOr = OrEq | OrNe | Or3 | OrGte | OrLt | OrLte | OrIn | OrNin | OrExists;
|
|
775
775
|
/**
|
|
776
776
|
* Or
|
|
777
777
|
*/
|
|
778
|
-
export type
|
|
779
|
-
|
|
780
|
-
[k: string]:
|
|
778
|
+
export type Or = {
|
|
779
|
+
or: Array<{
|
|
780
|
+
[k: string]: OrEq | OrNe | Or3 | OrGte | OrLt | OrLte | OrIn | OrNin | OrExists;
|
|
781
781
|
}>;
|
|
782
782
|
};
|
|
783
783
|
/**
|
|
784
784
|
* Exists
|
|
785
785
|
*/
|
|
786
|
-
export type
|
|
787
|
-
|
|
786
|
+
export type AndExists = {
|
|
787
|
+
exists: boolean;
|
|
788
788
|
};
|
|
789
|
-
export type
|
|
789
|
+
export type DeploymentGetConfigAndNin = string | number | boolean;
|
|
790
790
|
/**
|
|
791
791
|
* Not in
|
|
792
792
|
*/
|
|
793
|
-
export type
|
|
794
|
-
|
|
793
|
+
export type AndNin = {
|
|
794
|
+
nin: Array<string | number | boolean>;
|
|
795
795
|
};
|
|
796
|
-
export type
|
|
796
|
+
export type DeploymentGetConfigAndIn = string | number | boolean;
|
|
797
797
|
/**
|
|
798
798
|
* In
|
|
799
799
|
*/
|
|
800
|
-
export type
|
|
801
|
-
|
|
800
|
+
export type AndIn = {
|
|
801
|
+
in: Array<string | number | boolean>;
|
|
802
802
|
};
|
|
803
803
|
/**
|
|
804
804
|
* Less than or equal to
|
|
805
805
|
*/
|
|
806
|
-
export type
|
|
807
|
-
|
|
806
|
+
export type AndLte = {
|
|
807
|
+
lte: number;
|
|
808
808
|
};
|
|
809
809
|
/**
|
|
810
810
|
* Less than
|
|
811
811
|
*/
|
|
812
|
-
export type
|
|
813
|
-
|
|
812
|
+
export type AndLt = {
|
|
813
|
+
lt: number;
|
|
814
814
|
};
|
|
815
815
|
/**
|
|
816
816
|
* Greater than or equal to
|
|
817
817
|
*/
|
|
818
|
-
export type
|
|
819
|
-
|
|
818
|
+
export type AndGte = {
|
|
819
|
+
gte: number;
|
|
820
820
|
};
|
|
821
|
-
export type
|
|
822
|
-
|
|
821
|
+
export type And3 = {
|
|
822
|
+
gt: number;
|
|
823
823
|
};
|
|
824
|
-
export type
|
|
824
|
+
export type DeploymentGetConfigAndNe = string | number | boolean;
|
|
825
825
|
/**
|
|
826
826
|
* Not equal to
|
|
827
827
|
*/
|
|
828
|
-
export type
|
|
829
|
-
|
|
828
|
+
export type AndNe = {
|
|
829
|
+
ne: string | number | boolean;
|
|
830
830
|
};
|
|
831
|
-
export type
|
|
831
|
+
export type DeploymentGetConfigAndEq = string | number | boolean;
|
|
832
832
|
/**
|
|
833
833
|
* Equal to
|
|
834
834
|
*/
|
|
835
|
-
export type
|
|
836
|
-
|
|
835
|
+
export type AndEq = {
|
|
836
|
+
eq: string | number | boolean;
|
|
837
837
|
};
|
|
838
|
-
export type
|
|
838
|
+
export type KnowledgeFilterAnd = AndEq | AndNe | And3 | AndGte | AndLt | AndLte | AndIn | AndNin | AndExists;
|
|
839
839
|
/**
|
|
840
840
|
* And
|
|
841
841
|
*/
|
|
842
|
-
export type
|
|
843
|
-
|
|
844
|
-
[k: string]:
|
|
842
|
+
export type And = {
|
|
843
|
+
and: Array<{
|
|
844
|
+
[k: string]: AndEq | AndNe | And3 | AndGte | AndLt | AndLte | AndIn | AndNin | AndExists;
|
|
845
845
|
}>;
|
|
846
846
|
};
|
|
847
847
|
/**
|
|
848
848
|
* Exists
|
|
849
849
|
*/
|
|
850
|
-
export type
|
|
851
|
-
|
|
850
|
+
export type Exists = {
|
|
851
|
+
exists: boolean;
|
|
852
852
|
};
|
|
853
|
-
export type
|
|
853
|
+
export type OneNin = string | number | boolean;
|
|
854
854
|
/**
|
|
855
855
|
* Not in
|
|
856
856
|
*/
|
|
857
|
-
export type
|
|
858
|
-
|
|
857
|
+
export type Nin = {
|
|
858
|
+
nin: Array<string | number | boolean>;
|
|
859
859
|
};
|
|
860
|
-
export type
|
|
860
|
+
export type OneIn = string | number | boolean;
|
|
861
861
|
/**
|
|
862
862
|
* In
|
|
863
863
|
*/
|
|
864
|
-
export type
|
|
865
|
-
|
|
864
|
+
export type In = {
|
|
865
|
+
in: Array<string | number | boolean>;
|
|
866
866
|
};
|
|
867
867
|
/**
|
|
868
868
|
* Less than or equal to
|
|
869
869
|
*/
|
|
870
|
-
export type
|
|
871
|
-
|
|
870
|
+
export type Lte = {
|
|
871
|
+
lte: number;
|
|
872
872
|
};
|
|
873
873
|
/**
|
|
874
874
|
* Less than
|
|
875
875
|
*/
|
|
876
|
-
export type
|
|
877
|
-
|
|
876
|
+
export type Lt = {
|
|
877
|
+
lt: number;
|
|
878
878
|
};
|
|
879
879
|
/**
|
|
880
880
|
* Greater than or equal to
|
|
881
881
|
*/
|
|
882
|
-
export type
|
|
883
|
-
|
|
882
|
+
export type Gte = {
|
|
883
|
+
gte: number;
|
|
884
884
|
};
|
|
885
885
|
export type One3 = {
|
|
886
|
-
|
|
886
|
+
gt: number;
|
|
887
887
|
};
|
|
888
|
-
export type
|
|
888
|
+
export type OneNe = string | number | boolean;
|
|
889
889
|
/**
|
|
890
890
|
* Not equal to
|
|
891
891
|
*/
|
|
892
|
-
export type
|
|
893
|
-
|
|
892
|
+
export type Ne = {
|
|
893
|
+
ne: string | number | boolean;
|
|
894
894
|
};
|
|
895
|
-
export type
|
|
895
|
+
export type OneEq = string | number | boolean;
|
|
896
896
|
/**
|
|
897
897
|
* Equal to
|
|
898
898
|
*/
|
|
899
|
-
export type
|
|
900
|
-
|
|
899
|
+
export type Eq = {
|
|
900
|
+
eq: string | number | boolean;
|
|
901
901
|
};
|
|
902
|
-
export type KnowledgeFilter1 =
|
|
902
|
+
export type KnowledgeFilter1 = Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
|
|
903
903
|
/**
|
|
904
904
|
* A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
|
|
905
905
|
*/
|
|
906
|
-
export type KnowledgeFilter =
|
|
907
|
-
[k: string]:
|
|
906
|
+
export type KnowledgeFilter = And | Or | {
|
|
907
|
+
[k: string]: Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
|
|
908
908
|
};
|
|
909
909
|
export type DeploymentGetConfigRequestBody = {
|
|
910
910
|
/**
|
|
@@ -956,8 +956,8 @@ export type DeploymentGetConfigRequestBody = {
|
|
|
956
956
|
/**
|
|
957
957
|
* A filter to apply to the knowledge base chunk metadata when using knowledge bases in the deployment.
|
|
958
958
|
*/
|
|
959
|
-
knowledgeFilter?:
|
|
960
|
-
[k: string]:
|
|
959
|
+
knowledgeFilter?: And | Or | {
|
|
960
|
+
[k: string]: Eq | Ne | One3 | Gte | Lt | Lte | In | Nin | Exists;
|
|
961
961
|
} | undefined;
|
|
962
962
|
};
|
|
963
963
|
/**
|
|
@@ -2972,826 +2972,826 @@ export declare namespace Thread$ {
|
|
|
2972
2972
|
export declare function threadToJSON(thread: Thread): string;
|
|
2973
2973
|
export declare function threadFromJSON(jsonString: string): SafeParseResult<Thread, SDKValidationError>;
|
|
2974
2974
|
/** @internal */
|
|
2975
|
-
export declare const
|
|
2975
|
+
export declare const OrExists$inboundSchema: z.ZodType<OrExists, z.ZodTypeDef, unknown>;
|
|
2976
2976
|
/** @internal */
|
|
2977
|
-
export type
|
|
2978
|
-
|
|
2977
|
+
export type OrExists$Outbound = {
|
|
2978
|
+
exists: boolean;
|
|
2979
2979
|
};
|
|
2980
2980
|
/** @internal */
|
|
2981
|
-
export declare const
|
|
2981
|
+
export declare const OrExists$outboundSchema: z.ZodType<OrExists$Outbound, z.ZodTypeDef, OrExists>;
|
|
2982
2982
|
/**
|
|
2983
2983
|
* @internal
|
|
2984
2984
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2985
2985
|
*/
|
|
2986
|
-
export declare namespace
|
|
2987
|
-
/** @deprecated use `
|
|
2988
|
-
const inboundSchema: z.ZodType<
|
|
2989
|
-
/** @deprecated use `
|
|
2990
|
-
const outboundSchema: z.ZodType<
|
|
2991
|
-
/** @deprecated use `
|
|
2992
|
-
type Outbound =
|
|
2986
|
+
export declare namespace OrExists$ {
|
|
2987
|
+
/** @deprecated use `OrExists$inboundSchema` instead. */
|
|
2988
|
+
const inboundSchema: z.ZodType<OrExists, z.ZodTypeDef, unknown>;
|
|
2989
|
+
/** @deprecated use `OrExists$outboundSchema` instead. */
|
|
2990
|
+
const outboundSchema: z.ZodType<OrExists$Outbound, z.ZodTypeDef, OrExists>;
|
|
2991
|
+
/** @deprecated use `OrExists$Outbound` instead. */
|
|
2992
|
+
type Outbound = OrExists$Outbound;
|
|
2993
2993
|
}
|
|
2994
|
-
export declare function
|
|
2995
|
-
export declare function
|
|
2994
|
+
export declare function orExistsToJSON(orExists: OrExists): string;
|
|
2995
|
+
export declare function orExistsFromJSON(jsonString: string): SafeParseResult<OrExists, SDKValidationError>;
|
|
2996
2996
|
/** @internal */
|
|
2997
|
-
export declare const
|
|
2997
|
+
export declare const DeploymentGetConfigOrNin$inboundSchema: z.ZodType<DeploymentGetConfigOrNin, z.ZodTypeDef, unknown>;
|
|
2998
2998
|
/** @internal */
|
|
2999
|
-
export type
|
|
2999
|
+
export type DeploymentGetConfigOrNin$Outbound = string | number | boolean;
|
|
3000
3000
|
/** @internal */
|
|
3001
|
-
export declare const
|
|
3001
|
+
export declare const DeploymentGetConfigOrNin$outboundSchema: z.ZodType<DeploymentGetConfigOrNin$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNin>;
|
|
3002
3002
|
/**
|
|
3003
3003
|
* @internal
|
|
3004
3004
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3005
3005
|
*/
|
|
3006
|
-
export declare namespace
|
|
3007
|
-
/** @deprecated use `
|
|
3008
|
-
const inboundSchema: z.ZodType<
|
|
3009
|
-
/** @deprecated use `
|
|
3010
|
-
const outboundSchema: z.ZodType<
|
|
3011
|
-
/** @deprecated use `
|
|
3012
|
-
type Outbound =
|
|
3006
|
+
export declare namespace DeploymentGetConfigOrNin$ {
|
|
3007
|
+
/** @deprecated use `DeploymentGetConfigOrNin$inboundSchema` instead. */
|
|
3008
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigOrNin, z.ZodTypeDef, unknown>;
|
|
3009
|
+
/** @deprecated use `DeploymentGetConfigOrNin$outboundSchema` instead. */
|
|
3010
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigOrNin$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNin>;
|
|
3011
|
+
/** @deprecated use `DeploymentGetConfigOrNin$Outbound` instead. */
|
|
3012
|
+
type Outbound = DeploymentGetConfigOrNin$Outbound;
|
|
3013
3013
|
}
|
|
3014
|
-
export declare function
|
|
3015
|
-
export declare function
|
|
3014
|
+
export declare function deploymentGetConfigOrNinToJSON(deploymentGetConfigOrNin: DeploymentGetConfigOrNin): string;
|
|
3015
|
+
export declare function deploymentGetConfigOrNinFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrNin, SDKValidationError>;
|
|
3016
3016
|
/** @internal */
|
|
3017
|
-
export declare const
|
|
3017
|
+
export declare const OrNin$inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown>;
|
|
3018
3018
|
/** @internal */
|
|
3019
|
-
export type
|
|
3020
|
-
|
|
3019
|
+
export type OrNin$Outbound = {
|
|
3020
|
+
nin: Array<string | number | boolean>;
|
|
3021
3021
|
};
|
|
3022
3022
|
/** @internal */
|
|
3023
|
-
export declare const
|
|
3023
|
+
export declare const OrNin$outboundSchema: z.ZodType<OrNin$Outbound, z.ZodTypeDef, OrNin>;
|
|
3024
3024
|
/**
|
|
3025
3025
|
* @internal
|
|
3026
3026
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3027
3027
|
*/
|
|
3028
|
-
export declare namespace
|
|
3029
|
-
/** @deprecated use `
|
|
3030
|
-
const inboundSchema: z.ZodType<
|
|
3031
|
-
/** @deprecated use `
|
|
3032
|
-
const outboundSchema: z.ZodType<
|
|
3033
|
-
/** @deprecated use `
|
|
3034
|
-
type Outbound =
|
|
3028
|
+
export declare namespace OrNin$ {
|
|
3029
|
+
/** @deprecated use `OrNin$inboundSchema` instead. */
|
|
3030
|
+
const inboundSchema: z.ZodType<OrNin, z.ZodTypeDef, unknown>;
|
|
3031
|
+
/** @deprecated use `OrNin$outboundSchema` instead. */
|
|
3032
|
+
const outboundSchema: z.ZodType<OrNin$Outbound, z.ZodTypeDef, OrNin>;
|
|
3033
|
+
/** @deprecated use `OrNin$Outbound` instead. */
|
|
3034
|
+
type Outbound = OrNin$Outbound;
|
|
3035
3035
|
}
|
|
3036
|
-
export declare function
|
|
3037
|
-
export declare function
|
|
3036
|
+
export declare function orNinToJSON(orNin: OrNin): string;
|
|
3037
|
+
export declare function orNinFromJSON(jsonString: string): SafeParseResult<OrNin, SDKValidationError>;
|
|
3038
3038
|
/** @internal */
|
|
3039
|
-
export declare const
|
|
3039
|
+
export declare const DeploymentGetConfigOrIn$inboundSchema: z.ZodType<DeploymentGetConfigOrIn, z.ZodTypeDef, unknown>;
|
|
3040
3040
|
/** @internal */
|
|
3041
|
-
export type
|
|
3041
|
+
export type DeploymentGetConfigOrIn$Outbound = string | number | boolean;
|
|
3042
3042
|
/** @internal */
|
|
3043
|
-
export declare const
|
|
3043
|
+
export declare const DeploymentGetConfigOrIn$outboundSchema: z.ZodType<DeploymentGetConfigOrIn$Outbound, z.ZodTypeDef, DeploymentGetConfigOrIn>;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* @internal
|
|
3046
3046
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3047
3047
|
*/
|
|
3048
|
-
export declare namespace
|
|
3049
|
-
/** @deprecated use `
|
|
3050
|
-
const inboundSchema: z.ZodType<
|
|
3051
|
-
/** @deprecated use `
|
|
3052
|
-
const outboundSchema: z.ZodType<
|
|
3053
|
-
/** @deprecated use `
|
|
3054
|
-
type Outbound =
|
|
3048
|
+
export declare namespace DeploymentGetConfigOrIn$ {
|
|
3049
|
+
/** @deprecated use `DeploymentGetConfigOrIn$inboundSchema` instead. */
|
|
3050
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigOrIn, z.ZodTypeDef, unknown>;
|
|
3051
|
+
/** @deprecated use `DeploymentGetConfigOrIn$outboundSchema` instead. */
|
|
3052
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigOrIn$Outbound, z.ZodTypeDef, DeploymentGetConfigOrIn>;
|
|
3053
|
+
/** @deprecated use `DeploymentGetConfigOrIn$Outbound` instead. */
|
|
3054
|
+
type Outbound = DeploymentGetConfigOrIn$Outbound;
|
|
3055
3055
|
}
|
|
3056
|
-
export declare function
|
|
3057
|
-
export declare function
|
|
3056
|
+
export declare function deploymentGetConfigOrInToJSON(deploymentGetConfigOrIn: DeploymentGetConfigOrIn): string;
|
|
3057
|
+
export declare function deploymentGetConfigOrInFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrIn, SDKValidationError>;
|
|
3058
3058
|
/** @internal */
|
|
3059
|
-
export declare const
|
|
3059
|
+
export declare const OrIn$inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown>;
|
|
3060
3060
|
/** @internal */
|
|
3061
|
-
export type
|
|
3062
|
-
|
|
3061
|
+
export type OrIn$Outbound = {
|
|
3062
|
+
in: Array<string | number | boolean>;
|
|
3063
3063
|
};
|
|
3064
3064
|
/** @internal */
|
|
3065
|
-
export declare const
|
|
3065
|
+
export declare const OrIn$outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn>;
|
|
3066
3066
|
/**
|
|
3067
3067
|
* @internal
|
|
3068
3068
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3069
3069
|
*/
|
|
3070
|
-
export declare namespace
|
|
3071
|
-
/** @deprecated use `
|
|
3072
|
-
const inboundSchema: z.ZodType<
|
|
3073
|
-
/** @deprecated use `
|
|
3074
|
-
const outboundSchema: z.ZodType<
|
|
3075
|
-
/** @deprecated use `
|
|
3076
|
-
type Outbound =
|
|
3070
|
+
export declare namespace OrIn$ {
|
|
3071
|
+
/** @deprecated use `OrIn$inboundSchema` instead. */
|
|
3072
|
+
const inboundSchema: z.ZodType<OrIn, z.ZodTypeDef, unknown>;
|
|
3073
|
+
/** @deprecated use `OrIn$outboundSchema` instead. */
|
|
3074
|
+
const outboundSchema: z.ZodType<OrIn$Outbound, z.ZodTypeDef, OrIn>;
|
|
3075
|
+
/** @deprecated use `OrIn$Outbound` instead. */
|
|
3076
|
+
type Outbound = OrIn$Outbound;
|
|
3077
3077
|
}
|
|
3078
|
-
export declare function
|
|
3079
|
-
export declare function
|
|
3078
|
+
export declare function orInToJSON(orIn: OrIn): string;
|
|
3079
|
+
export declare function orInFromJSON(jsonString: string): SafeParseResult<OrIn, SDKValidationError>;
|
|
3080
3080
|
/** @internal */
|
|
3081
|
-
export declare const
|
|
3081
|
+
export declare const OrLte$inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown>;
|
|
3082
3082
|
/** @internal */
|
|
3083
|
-
export type
|
|
3084
|
-
|
|
3083
|
+
export type OrLte$Outbound = {
|
|
3084
|
+
lte: number;
|
|
3085
3085
|
};
|
|
3086
3086
|
/** @internal */
|
|
3087
|
-
export declare const
|
|
3087
|
+
export declare const OrLte$outboundSchema: z.ZodType<OrLte$Outbound, z.ZodTypeDef, OrLte>;
|
|
3088
3088
|
/**
|
|
3089
3089
|
* @internal
|
|
3090
3090
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3091
3091
|
*/
|
|
3092
|
-
export declare namespace
|
|
3093
|
-
/** @deprecated use `
|
|
3094
|
-
const inboundSchema: z.ZodType<
|
|
3095
|
-
/** @deprecated use `
|
|
3096
|
-
const outboundSchema: z.ZodType<
|
|
3097
|
-
/** @deprecated use `
|
|
3098
|
-
type Outbound =
|
|
3092
|
+
export declare namespace OrLte$ {
|
|
3093
|
+
/** @deprecated use `OrLte$inboundSchema` instead. */
|
|
3094
|
+
const inboundSchema: z.ZodType<OrLte, z.ZodTypeDef, unknown>;
|
|
3095
|
+
/** @deprecated use `OrLte$outboundSchema` instead. */
|
|
3096
|
+
const outboundSchema: z.ZodType<OrLte$Outbound, z.ZodTypeDef, OrLte>;
|
|
3097
|
+
/** @deprecated use `OrLte$Outbound` instead. */
|
|
3098
|
+
type Outbound = OrLte$Outbound;
|
|
3099
3099
|
}
|
|
3100
|
-
export declare function
|
|
3101
|
-
export declare function
|
|
3100
|
+
export declare function orLteToJSON(orLte: OrLte): string;
|
|
3101
|
+
export declare function orLteFromJSON(jsonString: string): SafeParseResult<OrLte, SDKValidationError>;
|
|
3102
3102
|
/** @internal */
|
|
3103
|
-
export declare const
|
|
3103
|
+
export declare const OrLt$inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown>;
|
|
3104
3104
|
/** @internal */
|
|
3105
|
-
export type
|
|
3106
|
-
|
|
3105
|
+
export type OrLt$Outbound = {
|
|
3106
|
+
lt: number;
|
|
3107
3107
|
};
|
|
3108
3108
|
/** @internal */
|
|
3109
|
-
export declare const
|
|
3109
|
+
export declare const OrLt$outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt>;
|
|
3110
3110
|
/**
|
|
3111
3111
|
* @internal
|
|
3112
3112
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3113
3113
|
*/
|
|
3114
|
-
export declare namespace
|
|
3115
|
-
/** @deprecated use `
|
|
3116
|
-
const inboundSchema: z.ZodType<
|
|
3117
|
-
/** @deprecated use `
|
|
3118
|
-
const outboundSchema: z.ZodType<
|
|
3119
|
-
/** @deprecated use `
|
|
3120
|
-
type Outbound =
|
|
3114
|
+
export declare namespace OrLt$ {
|
|
3115
|
+
/** @deprecated use `OrLt$inboundSchema` instead. */
|
|
3116
|
+
const inboundSchema: z.ZodType<OrLt, z.ZodTypeDef, unknown>;
|
|
3117
|
+
/** @deprecated use `OrLt$outboundSchema` instead. */
|
|
3118
|
+
const outboundSchema: z.ZodType<OrLt$Outbound, z.ZodTypeDef, OrLt>;
|
|
3119
|
+
/** @deprecated use `OrLt$Outbound` instead. */
|
|
3120
|
+
type Outbound = OrLt$Outbound;
|
|
3121
3121
|
}
|
|
3122
|
-
export declare function
|
|
3123
|
-
export declare function
|
|
3122
|
+
export declare function orLtToJSON(orLt: OrLt): string;
|
|
3123
|
+
export declare function orLtFromJSON(jsonString: string): SafeParseResult<OrLt, SDKValidationError>;
|
|
3124
3124
|
/** @internal */
|
|
3125
|
-
export declare const
|
|
3125
|
+
export declare const OrGte$inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown>;
|
|
3126
3126
|
/** @internal */
|
|
3127
|
-
export type
|
|
3128
|
-
|
|
3127
|
+
export type OrGte$Outbound = {
|
|
3128
|
+
gte: number;
|
|
3129
3129
|
};
|
|
3130
3130
|
/** @internal */
|
|
3131
|
-
export declare const
|
|
3131
|
+
export declare const OrGte$outboundSchema: z.ZodType<OrGte$Outbound, z.ZodTypeDef, OrGte>;
|
|
3132
3132
|
/**
|
|
3133
3133
|
* @internal
|
|
3134
3134
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3135
3135
|
*/
|
|
3136
|
-
export declare namespace
|
|
3137
|
-
/** @deprecated use `
|
|
3138
|
-
const inboundSchema: z.ZodType<
|
|
3139
|
-
/** @deprecated use `
|
|
3140
|
-
const outboundSchema: z.ZodType<
|
|
3141
|
-
/** @deprecated use `
|
|
3142
|
-
type Outbound =
|
|
3136
|
+
export declare namespace OrGte$ {
|
|
3137
|
+
/** @deprecated use `OrGte$inboundSchema` instead. */
|
|
3138
|
+
const inboundSchema: z.ZodType<OrGte, z.ZodTypeDef, unknown>;
|
|
3139
|
+
/** @deprecated use `OrGte$outboundSchema` instead. */
|
|
3140
|
+
const outboundSchema: z.ZodType<OrGte$Outbound, z.ZodTypeDef, OrGte>;
|
|
3141
|
+
/** @deprecated use `OrGte$Outbound` instead. */
|
|
3142
|
+
type Outbound = OrGte$Outbound;
|
|
3143
3143
|
}
|
|
3144
|
-
export declare function
|
|
3145
|
-
export declare function
|
|
3144
|
+
export declare function orGteToJSON(orGte: OrGte): string;
|
|
3145
|
+
export declare function orGteFromJSON(jsonString: string): SafeParseResult<OrGte, SDKValidationError>;
|
|
3146
3146
|
/** @internal */
|
|
3147
|
-
export declare const
|
|
3147
|
+
export declare const Or3$inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown>;
|
|
3148
3148
|
/** @internal */
|
|
3149
|
-
export type
|
|
3150
|
-
|
|
3149
|
+
export type Or3$Outbound = {
|
|
3150
|
+
gt: number;
|
|
3151
3151
|
};
|
|
3152
3152
|
/** @internal */
|
|
3153
|
-
export declare const
|
|
3153
|
+
export declare const Or3$outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3>;
|
|
3154
3154
|
/**
|
|
3155
3155
|
* @internal
|
|
3156
3156
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3157
3157
|
*/
|
|
3158
|
-
export declare namespace
|
|
3159
|
-
/** @deprecated use `
|
|
3160
|
-
const inboundSchema: z.ZodType<
|
|
3161
|
-
/** @deprecated use `
|
|
3162
|
-
const outboundSchema: z.ZodType<
|
|
3163
|
-
/** @deprecated use `
|
|
3164
|
-
type Outbound =
|
|
3158
|
+
export declare namespace Or3$ {
|
|
3159
|
+
/** @deprecated use `Or3$inboundSchema` instead. */
|
|
3160
|
+
const inboundSchema: z.ZodType<Or3, z.ZodTypeDef, unknown>;
|
|
3161
|
+
/** @deprecated use `Or3$outboundSchema` instead. */
|
|
3162
|
+
const outboundSchema: z.ZodType<Or3$Outbound, z.ZodTypeDef, Or3>;
|
|
3163
|
+
/** @deprecated use `Or3$Outbound` instead. */
|
|
3164
|
+
type Outbound = Or3$Outbound;
|
|
3165
3165
|
}
|
|
3166
|
-
export declare function
|
|
3167
|
-
export declare function
|
|
3166
|
+
export declare function or3ToJSON(or3: Or3): string;
|
|
3167
|
+
export declare function or3FromJSON(jsonString: string): SafeParseResult<Or3, SDKValidationError>;
|
|
3168
3168
|
/** @internal */
|
|
3169
|
-
export declare const
|
|
3169
|
+
export declare const DeploymentGetConfigOrNe$inboundSchema: z.ZodType<DeploymentGetConfigOrNe, z.ZodTypeDef, unknown>;
|
|
3170
3170
|
/** @internal */
|
|
3171
|
-
export type
|
|
3171
|
+
export type DeploymentGetConfigOrNe$Outbound = string | number | boolean;
|
|
3172
3172
|
/** @internal */
|
|
3173
|
-
export declare const
|
|
3173
|
+
export declare const DeploymentGetConfigOrNe$outboundSchema: z.ZodType<DeploymentGetConfigOrNe$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNe>;
|
|
3174
3174
|
/**
|
|
3175
3175
|
* @internal
|
|
3176
3176
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3177
3177
|
*/
|
|
3178
|
-
export declare namespace
|
|
3179
|
-
/** @deprecated use `
|
|
3180
|
-
const inboundSchema: z.ZodType<
|
|
3181
|
-
/** @deprecated use `
|
|
3182
|
-
const outboundSchema: z.ZodType<
|
|
3183
|
-
/** @deprecated use `
|
|
3184
|
-
type Outbound =
|
|
3178
|
+
export declare namespace DeploymentGetConfigOrNe$ {
|
|
3179
|
+
/** @deprecated use `DeploymentGetConfigOrNe$inboundSchema` instead. */
|
|
3180
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigOrNe, z.ZodTypeDef, unknown>;
|
|
3181
|
+
/** @deprecated use `DeploymentGetConfigOrNe$outboundSchema` instead. */
|
|
3182
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigOrNe$Outbound, z.ZodTypeDef, DeploymentGetConfigOrNe>;
|
|
3183
|
+
/** @deprecated use `DeploymentGetConfigOrNe$Outbound` instead. */
|
|
3184
|
+
type Outbound = DeploymentGetConfigOrNe$Outbound;
|
|
3185
3185
|
}
|
|
3186
|
-
export declare function
|
|
3187
|
-
export declare function
|
|
3186
|
+
export declare function deploymentGetConfigOrNeToJSON(deploymentGetConfigOrNe: DeploymentGetConfigOrNe): string;
|
|
3187
|
+
export declare function deploymentGetConfigOrNeFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrNe, SDKValidationError>;
|
|
3188
3188
|
/** @internal */
|
|
3189
|
-
export declare const
|
|
3189
|
+
export declare const OrNe$inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown>;
|
|
3190
3190
|
/** @internal */
|
|
3191
|
-
export type
|
|
3192
|
-
|
|
3191
|
+
export type OrNe$Outbound = {
|
|
3192
|
+
ne: string | number | boolean;
|
|
3193
3193
|
};
|
|
3194
3194
|
/** @internal */
|
|
3195
|
-
export declare const
|
|
3195
|
+
export declare const OrNe$outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe>;
|
|
3196
3196
|
/**
|
|
3197
3197
|
* @internal
|
|
3198
3198
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3199
3199
|
*/
|
|
3200
|
-
export declare namespace
|
|
3201
|
-
/** @deprecated use `
|
|
3202
|
-
const inboundSchema: z.ZodType<
|
|
3203
|
-
/** @deprecated use `
|
|
3204
|
-
const outboundSchema: z.ZodType<
|
|
3205
|
-
/** @deprecated use `
|
|
3206
|
-
type Outbound =
|
|
3200
|
+
export declare namespace OrNe$ {
|
|
3201
|
+
/** @deprecated use `OrNe$inboundSchema` instead. */
|
|
3202
|
+
const inboundSchema: z.ZodType<OrNe, z.ZodTypeDef, unknown>;
|
|
3203
|
+
/** @deprecated use `OrNe$outboundSchema` instead. */
|
|
3204
|
+
const outboundSchema: z.ZodType<OrNe$Outbound, z.ZodTypeDef, OrNe>;
|
|
3205
|
+
/** @deprecated use `OrNe$Outbound` instead. */
|
|
3206
|
+
type Outbound = OrNe$Outbound;
|
|
3207
3207
|
}
|
|
3208
|
-
export declare function
|
|
3209
|
-
export declare function
|
|
3208
|
+
export declare function orNeToJSON(orNe: OrNe): string;
|
|
3209
|
+
export declare function orNeFromJSON(jsonString: string): SafeParseResult<OrNe, SDKValidationError>;
|
|
3210
3210
|
/** @internal */
|
|
3211
|
-
export declare const
|
|
3211
|
+
export declare const DeploymentGetConfigOrEq$inboundSchema: z.ZodType<DeploymentGetConfigOrEq, z.ZodTypeDef, unknown>;
|
|
3212
3212
|
/** @internal */
|
|
3213
|
-
export type
|
|
3213
|
+
export type DeploymentGetConfigOrEq$Outbound = string | number | boolean;
|
|
3214
3214
|
/** @internal */
|
|
3215
|
-
export declare const
|
|
3215
|
+
export declare const DeploymentGetConfigOrEq$outboundSchema: z.ZodType<DeploymentGetConfigOrEq$Outbound, z.ZodTypeDef, DeploymentGetConfigOrEq>;
|
|
3216
3216
|
/**
|
|
3217
3217
|
* @internal
|
|
3218
3218
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3219
3219
|
*/
|
|
3220
|
-
export declare namespace
|
|
3221
|
-
/** @deprecated use `
|
|
3222
|
-
const inboundSchema: z.ZodType<
|
|
3223
|
-
/** @deprecated use `
|
|
3224
|
-
const outboundSchema: z.ZodType<
|
|
3225
|
-
/** @deprecated use `
|
|
3226
|
-
type Outbound =
|
|
3220
|
+
export declare namespace DeploymentGetConfigOrEq$ {
|
|
3221
|
+
/** @deprecated use `DeploymentGetConfigOrEq$inboundSchema` instead. */
|
|
3222
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigOrEq, z.ZodTypeDef, unknown>;
|
|
3223
|
+
/** @deprecated use `DeploymentGetConfigOrEq$outboundSchema` instead. */
|
|
3224
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigOrEq$Outbound, z.ZodTypeDef, DeploymentGetConfigOrEq>;
|
|
3225
|
+
/** @deprecated use `DeploymentGetConfigOrEq$Outbound` instead. */
|
|
3226
|
+
type Outbound = DeploymentGetConfigOrEq$Outbound;
|
|
3227
3227
|
}
|
|
3228
|
-
export declare function
|
|
3229
|
-
export declare function
|
|
3228
|
+
export declare function deploymentGetConfigOrEqToJSON(deploymentGetConfigOrEq: DeploymentGetConfigOrEq): string;
|
|
3229
|
+
export declare function deploymentGetConfigOrEqFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigOrEq, SDKValidationError>;
|
|
3230
3230
|
/** @internal */
|
|
3231
|
-
export declare const
|
|
3231
|
+
export declare const OrEq$inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown>;
|
|
3232
3232
|
/** @internal */
|
|
3233
|
-
export type
|
|
3234
|
-
|
|
3233
|
+
export type OrEq$Outbound = {
|
|
3234
|
+
eq: string | number | boolean;
|
|
3235
3235
|
};
|
|
3236
3236
|
/** @internal */
|
|
3237
|
-
export declare const
|
|
3237
|
+
export declare const OrEq$outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq>;
|
|
3238
3238
|
/**
|
|
3239
3239
|
* @internal
|
|
3240
3240
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3241
3241
|
*/
|
|
3242
|
-
export declare namespace
|
|
3243
|
-
/** @deprecated use `
|
|
3244
|
-
const inboundSchema: z.ZodType<
|
|
3245
|
-
/** @deprecated use `
|
|
3246
|
-
const outboundSchema: z.ZodType<
|
|
3247
|
-
/** @deprecated use `
|
|
3248
|
-
type Outbound =
|
|
3242
|
+
export declare namespace OrEq$ {
|
|
3243
|
+
/** @deprecated use `OrEq$inboundSchema` instead. */
|
|
3244
|
+
const inboundSchema: z.ZodType<OrEq, z.ZodTypeDef, unknown>;
|
|
3245
|
+
/** @deprecated use `OrEq$outboundSchema` instead. */
|
|
3246
|
+
const outboundSchema: z.ZodType<OrEq$Outbound, z.ZodTypeDef, OrEq>;
|
|
3247
|
+
/** @deprecated use `OrEq$Outbound` instead. */
|
|
3248
|
+
type Outbound = OrEq$Outbound;
|
|
3249
3249
|
}
|
|
3250
|
-
export declare function
|
|
3251
|
-
export declare function
|
|
3250
|
+
export declare function orEqToJSON(orEq: OrEq): string;
|
|
3251
|
+
export declare function orEqFromJSON(jsonString: string): SafeParseResult<OrEq, SDKValidationError>;
|
|
3252
3252
|
/** @internal */
|
|
3253
|
-
export declare const
|
|
3253
|
+
export declare const KnowledgeFilterOr$inboundSchema: z.ZodType<KnowledgeFilterOr, z.ZodTypeDef, unknown>;
|
|
3254
3254
|
/** @internal */
|
|
3255
|
-
export type
|
|
3255
|
+
export type KnowledgeFilterOr$Outbound = OrEq$Outbound | OrNe$Outbound | Or3$Outbound | OrGte$Outbound | OrLt$Outbound | OrLte$Outbound | OrIn$Outbound | OrNin$Outbound | OrExists$Outbound;
|
|
3256
3256
|
/** @internal */
|
|
3257
|
-
export declare const
|
|
3257
|
+
export declare const KnowledgeFilterOr$outboundSchema: z.ZodType<KnowledgeFilterOr$Outbound, z.ZodTypeDef, KnowledgeFilterOr>;
|
|
3258
3258
|
/**
|
|
3259
3259
|
* @internal
|
|
3260
3260
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3261
3261
|
*/
|
|
3262
|
-
export declare namespace
|
|
3263
|
-
/** @deprecated use `
|
|
3264
|
-
const inboundSchema: z.ZodType<
|
|
3265
|
-
/** @deprecated use `
|
|
3266
|
-
const outboundSchema: z.ZodType<
|
|
3267
|
-
/** @deprecated use `
|
|
3268
|
-
type Outbound =
|
|
3262
|
+
export declare namespace KnowledgeFilterOr$ {
|
|
3263
|
+
/** @deprecated use `KnowledgeFilterOr$inboundSchema` instead. */
|
|
3264
|
+
const inboundSchema: z.ZodType<KnowledgeFilterOr, z.ZodTypeDef, unknown>;
|
|
3265
|
+
/** @deprecated use `KnowledgeFilterOr$outboundSchema` instead. */
|
|
3266
|
+
const outboundSchema: z.ZodType<KnowledgeFilterOr$Outbound, z.ZodTypeDef, KnowledgeFilterOr>;
|
|
3267
|
+
/** @deprecated use `KnowledgeFilterOr$Outbound` instead. */
|
|
3268
|
+
type Outbound = KnowledgeFilterOr$Outbound;
|
|
3269
3269
|
}
|
|
3270
|
-
export declare function
|
|
3271
|
-
export declare function
|
|
3270
|
+
export declare function knowledgeFilterOrToJSON(knowledgeFilterOr: KnowledgeFilterOr): string;
|
|
3271
|
+
export declare function knowledgeFilterOrFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterOr, SDKValidationError>;
|
|
3272
3272
|
/** @internal */
|
|
3273
|
-
export declare const
|
|
3273
|
+
export declare const Or$inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown>;
|
|
3274
3274
|
/** @internal */
|
|
3275
|
-
export type
|
|
3276
|
-
|
|
3277
|
-
[k: string]:
|
|
3275
|
+
export type Or$Outbound = {
|
|
3276
|
+
or: Array<{
|
|
3277
|
+
[k: string]: OrEq$Outbound | OrNe$Outbound | Or3$Outbound | OrGte$Outbound | OrLt$Outbound | OrLte$Outbound | OrIn$Outbound | OrNin$Outbound | OrExists$Outbound;
|
|
3278
3278
|
}>;
|
|
3279
3279
|
};
|
|
3280
3280
|
/** @internal */
|
|
3281
|
-
export declare const
|
|
3281
|
+
export declare const Or$outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or>;
|
|
3282
3282
|
/**
|
|
3283
3283
|
* @internal
|
|
3284
3284
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3285
3285
|
*/
|
|
3286
|
-
export declare namespace
|
|
3287
|
-
/** @deprecated use `
|
|
3288
|
-
const inboundSchema: z.ZodType<
|
|
3289
|
-
/** @deprecated use `
|
|
3290
|
-
const outboundSchema: z.ZodType<
|
|
3291
|
-
/** @deprecated use `
|
|
3292
|
-
type Outbound =
|
|
3286
|
+
export declare namespace Or$ {
|
|
3287
|
+
/** @deprecated use `Or$inboundSchema` instead. */
|
|
3288
|
+
const inboundSchema: z.ZodType<Or, z.ZodTypeDef, unknown>;
|
|
3289
|
+
/** @deprecated use `Or$outboundSchema` instead. */
|
|
3290
|
+
const outboundSchema: z.ZodType<Or$Outbound, z.ZodTypeDef, Or>;
|
|
3291
|
+
/** @deprecated use `Or$Outbound` instead. */
|
|
3292
|
+
type Outbound = Or$Outbound;
|
|
3293
3293
|
}
|
|
3294
|
-
export declare function
|
|
3295
|
-
export declare function
|
|
3294
|
+
export declare function orToJSON(or: Or): string;
|
|
3295
|
+
export declare function orFromJSON(jsonString: string): SafeParseResult<Or, SDKValidationError>;
|
|
3296
3296
|
/** @internal */
|
|
3297
|
-
export declare const
|
|
3297
|
+
export declare const AndExists$inboundSchema: z.ZodType<AndExists, z.ZodTypeDef, unknown>;
|
|
3298
3298
|
/** @internal */
|
|
3299
|
-
export type
|
|
3300
|
-
|
|
3299
|
+
export type AndExists$Outbound = {
|
|
3300
|
+
exists: boolean;
|
|
3301
3301
|
};
|
|
3302
3302
|
/** @internal */
|
|
3303
|
-
export declare const
|
|
3303
|
+
export declare const AndExists$outboundSchema: z.ZodType<AndExists$Outbound, z.ZodTypeDef, AndExists>;
|
|
3304
3304
|
/**
|
|
3305
3305
|
* @internal
|
|
3306
3306
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3307
3307
|
*/
|
|
3308
|
-
export declare namespace
|
|
3309
|
-
/** @deprecated use `
|
|
3310
|
-
const inboundSchema: z.ZodType<
|
|
3311
|
-
/** @deprecated use `
|
|
3312
|
-
const outboundSchema: z.ZodType<
|
|
3313
|
-
/** @deprecated use `
|
|
3314
|
-
type Outbound =
|
|
3308
|
+
export declare namespace AndExists$ {
|
|
3309
|
+
/** @deprecated use `AndExists$inboundSchema` instead. */
|
|
3310
|
+
const inboundSchema: z.ZodType<AndExists, z.ZodTypeDef, unknown>;
|
|
3311
|
+
/** @deprecated use `AndExists$outboundSchema` instead. */
|
|
3312
|
+
const outboundSchema: z.ZodType<AndExists$Outbound, z.ZodTypeDef, AndExists>;
|
|
3313
|
+
/** @deprecated use `AndExists$Outbound` instead. */
|
|
3314
|
+
type Outbound = AndExists$Outbound;
|
|
3315
3315
|
}
|
|
3316
|
-
export declare function
|
|
3317
|
-
export declare function
|
|
3316
|
+
export declare function andExistsToJSON(andExists: AndExists): string;
|
|
3317
|
+
export declare function andExistsFromJSON(jsonString: string): SafeParseResult<AndExists, SDKValidationError>;
|
|
3318
3318
|
/** @internal */
|
|
3319
|
-
export declare const
|
|
3319
|
+
export declare const DeploymentGetConfigAndNin$inboundSchema: z.ZodType<DeploymentGetConfigAndNin, z.ZodTypeDef, unknown>;
|
|
3320
3320
|
/** @internal */
|
|
3321
|
-
export type
|
|
3321
|
+
export type DeploymentGetConfigAndNin$Outbound = string | number | boolean;
|
|
3322
3322
|
/** @internal */
|
|
3323
|
-
export declare const
|
|
3323
|
+
export declare const DeploymentGetConfigAndNin$outboundSchema: z.ZodType<DeploymentGetConfigAndNin$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNin>;
|
|
3324
3324
|
/**
|
|
3325
3325
|
* @internal
|
|
3326
3326
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3327
3327
|
*/
|
|
3328
|
-
export declare namespace
|
|
3329
|
-
/** @deprecated use `
|
|
3330
|
-
const inboundSchema: z.ZodType<
|
|
3331
|
-
/** @deprecated use `
|
|
3332
|
-
const outboundSchema: z.ZodType<
|
|
3333
|
-
/** @deprecated use `
|
|
3334
|
-
type Outbound =
|
|
3328
|
+
export declare namespace DeploymentGetConfigAndNin$ {
|
|
3329
|
+
/** @deprecated use `DeploymentGetConfigAndNin$inboundSchema` instead. */
|
|
3330
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigAndNin, z.ZodTypeDef, unknown>;
|
|
3331
|
+
/** @deprecated use `DeploymentGetConfigAndNin$outboundSchema` instead. */
|
|
3332
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigAndNin$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNin>;
|
|
3333
|
+
/** @deprecated use `DeploymentGetConfigAndNin$Outbound` instead. */
|
|
3334
|
+
type Outbound = DeploymentGetConfigAndNin$Outbound;
|
|
3335
3335
|
}
|
|
3336
|
-
export declare function
|
|
3337
|
-
export declare function
|
|
3336
|
+
export declare function deploymentGetConfigAndNinToJSON(deploymentGetConfigAndNin: DeploymentGetConfigAndNin): string;
|
|
3337
|
+
export declare function deploymentGetConfigAndNinFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndNin, SDKValidationError>;
|
|
3338
3338
|
/** @internal */
|
|
3339
|
-
export declare const
|
|
3339
|
+
export declare const AndNin$inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown>;
|
|
3340
3340
|
/** @internal */
|
|
3341
|
-
export type
|
|
3342
|
-
|
|
3341
|
+
export type AndNin$Outbound = {
|
|
3342
|
+
nin: Array<string | number | boolean>;
|
|
3343
3343
|
};
|
|
3344
3344
|
/** @internal */
|
|
3345
|
-
export declare const
|
|
3345
|
+
export declare const AndNin$outboundSchema: z.ZodType<AndNin$Outbound, z.ZodTypeDef, AndNin>;
|
|
3346
3346
|
/**
|
|
3347
3347
|
* @internal
|
|
3348
3348
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3349
3349
|
*/
|
|
3350
|
-
export declare namespace
|
|
3351
|
-
/** @deprecated use `
|
|
3352
|
-
const inboundSchema: z.ZodType<
|
|
3353
|
-
/** @deprecated use `
|
|
3354
|
-
const outboundSchema: z.ZodType<
|
|
3355
|
-
/** @deprecated use `
|
|
3356
|
-
type Outbound =
|
|
3350
|
+
export declare namespace AndNin$ {
|
|
3351
|
+
/** @deprecated use `AndNin$inboundSchema` instead. */
|
|
3352
|
+
const inboundSchema: z.ZodType<AndNin, z.ZodTypeDef, unknown>;
|
|
3353
|
+
/** @deprecated use `AndNin$outboundSchema` instead. */
|
|
3354
|
+
const outboundSchema: z.ZodType<AndNin$Outbound, z.ZodTypeDef, AndNin>;
|
|
3355
|
+
/** @deprecated use `AndNin$Outbound` instead. */
|
|
3356
|
+
type Outbound = AndNin$Outbound;
|
|
3357
3357
|
}
|
|
3358
|
-
export declare function
|
|
3359
|
-
export declare function
|
|
3358
|
+
export declare function andNinToJSON(andNin: AndNin): string;
|
|
3359
|
+
export declare function andNinFromJSON(jsonString: string): SafeParseResult<AndNin, SDKValidationError>;
|
|
3360
3360
|
/** @internal */
|
|
3361
|
-
export declare const
|
|
3361
|
+
export declare const DeploymentGetConfigAndIn$inboundSchema: z.ZodType<DeploymentGetConfigAndIn, z.ZodTypeDef, unknown>;
|
|
3362
3362
|
/** @internal */
|
|
3363
|
-
export type
|
|
3363
|
+
export type DeploymentGetConfigAndIn$Outbound = string | number | boolean;
|
|
3364
3364
|
/** @internal */
|
|
3365
|
-
export declare const
|
|
3365
|
+
export declare const DeploymentGetConfigAndIn$outboundSchema: z.ZodType<DeploymentGetConfigAndIn$Outbound, z.ZodTypeDef, DeploymentGetConfigAndIn>;
|
|
3366
3366
|
/**
|
|
3367
3367
|
* @internal
|
|
3368
3368
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3369
3369
|
*/
|
|
3370
|
-
export declare namespace
|
|
3371
|
-
/** @deprecated use `
|
|
3372
|
-
const inboundSchema: z.ZodType<
|
|
3373
|
-
/** @deprecated use `
|
|
3374
|
-
const outboundSchema: z.ZodType<
|
|
3375
|
-
/** @deprecated use `
|
|
3376
|
-
type Outbound =
|
|
3370
|
+
export declare namespace DeploymentGetConfigAndIn$ {
|
|
3371
|
+
/** @deprecated use `DeploymentGetConfigAndIn$inboundSchema` instead. */
|
|
3372
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigAndIn, z.ZodTypeDef, unknown>;
|
|
3373
|
+
/** @deprecated use `DeploymentGetConfigAndIn$outboundSchema` instead. */
|
|
3374
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigAndIn$Outbound, z.ZodTypeDef, DeploymentGetConfigAndIn>;
|
|
3375
|
+
/** @deprecated use `DeploymentGetConfigAndIn$Outbound` instead. */
|
|
3376
|
+
type Outbound = DeploymentGetConfigAndIn$Outbound;
|
|
3377
3377
|
}
|
|
3378
|
-
export declare function
|
|
3379
|
-
export declare function
|
|
3378
|
+
export declare function deploymentGetConfigAndInToJSON(deploymentGetConfigAndIn: DeploymentGetConfigAndIn): string;
|
|
3379
|
+
export declare function deploymentGetConfigAndInFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndIn, SDKValidationError>;
|
|
3380
3380
|
/** @internal */
|
|
3381
|
-
export declare const
|
|
3381
|
+
export declare const AndIn$inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown>;
|
|
3382
3382
|
/** @internal */
|
|
3383
|
-
export type
|
|
3384
|
-
|
|
3383
|
+
export type AndIn$Outbound = {
|
|
3384
|
+
in: Array<string | number | boolean>;
|
|
3385
3385
|
};
|
|
3386
3386
|
/** @internal */
|
|
3387
|
-
export declare const
|
|
3387
|
+
export declare const AndIn$outboundSchema: z.ZodType<AndIn$Outbound, z.ZodTypeDef, AndIn>;
|
|
3388
3388
|
/**
|
|
3389
3389
|
* @internal
|
|
3390
3390
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3391
3391
|
*/
|
|
3392
|
-
export declare namespace
|
|
3393
|
-
/** @deprecated use `
|
|
3394
|
-
const inboundSchema: z.ZodType<
|
|
3395
|
-
/** @deprecated use `
|
|
3396
|
-
const outboundSchema: z.ZodType<
|
|
3397
|
-
/** @deprecated use `
|
|
3398
|
-
type Outbound =
|
|
3392
|
+
export declare namespace AndIn$ {
|
|
3393
|
+
/** @deprecated use `AndIn$inboundSchema` instead. */
|
|
3394
|
+
const inboundSchema: z.ZodType<AndIn, z.ZodTypeDef, unknown>;
|
|
3395
|
+
/** @deprecated use `AndIn$outboundSchema` instead. */
|
|
3396
|
+
const outboundSchema: z.ZodType<AndIn$Outbound, z.ZodTypeDef, AndIn>;
|
|
3397
|
+
/** @deprecated use `AndIn$Outbound` instead. */
|
|
3398
|
+
type Outbound = AndIn$Outbound;
|
|
3399
3399
|
}
|
|
3400
|
-
export declare function
|
|
3401
|
-
export declare function
|
|
3400
|
+
export declare function andInToJSON(andIn: AndIn): string;
|
|
3401
|
+
export declare function andInFromJSON(jsonString: string): SafeParseResult<AndIn, SDKValidationError>;
|
|
3402
3402
|
/** @internal */
|
|
3403
|
-
export declare const
|
|
3403
|
+
export declare const AndLte$inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown>;
|
|
3404
3404
|
/** @internal */
|
|
3405
|
-
export type
|
|
3406
|
-
|
|
3405
|
+
export type AndLte$Outbound = {
|
|
3406
|
+
lte: number;
|
|
3407
3407
|
};
|
|
3408
3408
|
/** @internal */
|
|
3409
|
-
export declare const
|
|
3409
|
+
export declare const AndLte$outboundSchema: z.ZodType<AndLte$Outbound, z.ZodTypeDef, AndLte>;
|
|
3410
3410
|
/**
|
|
3411
3411
|
* @internal
|
|
3412
3412
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3413
3413
|
*/
|
|
3414
|
-
export declare namespace
|
|
3415
|
-
/** @deprecated use `
|
|
3416
|
-
const inboundSchema: z.ZodType<
|
|
3417
|
-
/** @deprecated use `
|
|
3418
|
-
const outboundSchema: z.ZodType<
|
|
3419
|
-
/** @deprecated use `
|
|
3420
|
-
type Outbound =
|
|
3414
|
+
export declare namespace AndLte$ {
|
|
3415
|
+
/** @deprecated use `AndLte$inboundSchema` instead. */
|
|
3416
|
+
const inboundSchema: z.ZodType<AndLte, z.ZodTypeDef, unknown>;
|
|
3417
|
+
/** @deprecated use `AndLte$outboundSchema` instead. */
|
|
3418
|
+
const outboundSchema: z.ZodType<AndLte$Outbound, z.ZodTypeDef, AndLte>;
|
|
3419
|
+
/** @deprecated use `AndLte$Outbound` instead. */
|
|
3420
|
+
type Outbound = AndLte$Outbound;
|
|
3421
3421
|
}
|
|
3422
|
-
export declare function
|
|
3423
|
-
export declare function
|
|
3422
|
+
export declare function andLteToJSON(andLte: AndLte): string;
|
|
3423
|
+
export declare function andLteFromJSON(jsonString: string): SafeParseResult<AndLte, SDKValidationError>;
|
|
3424
3424
|
/** @internal */
|
|
3425
|
-
export declare const
|
|
3425
|
+
export declare const AndLt$inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown>;
|
|
3426
3426
|
/** @internal */
|
|
3427
|
-
export type
|
|
3428
|
-
|
|
3427
|
+
export type AndLt$Outbound = {
|
|
3428
|
+
lt: number;
|
|
3429
3429
|
};
|
|
3430
3430
|
/** @internal */
|
|
3431
|
-
export declare const
|
|
3431
|
+
export declare const AndLt$outboundSchema: z.ZodType<AndLt$Outbound, z.ZodTypeDef, AndLt>;
|
|
3432
3432
|
/**
|
|
3433
3433
|
* @internal
|
|
3434
3434
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3435
3435
|
*/
|
|
3436
|
-
export declare namespace
|
|
3437
|
-
/** @deprecated use `
|
|
3438
|
-
const inboundSchema: z.ZodType<
|
|
3439
|
-
/** @deprecated use `
|
|
3440
|
-
const outboundSchema: z.ZodType<
|
|
3441
|
-
/** @deprecated use `
|
|
3442
|
-
type Outbound =
|
|
3436
|
+
export declare namespace AndLt$ {
|
|
3437
|
+
/** @deprecated use `AndLt$inboundSchema` instead. */
|
|
3438
|
+
const inboundSchema: z.ZodType<AndLt, z.ZodTypeDef, unknown>;
|
|
3439
|
+
/** @deprecated use `AndLt$outboundSchema` instead. */
|
|
3440
|
+
const outboundSchema: z.ZodType<AndLt$Outbound, z.ZodTypeDef, AndLt>;
|
|
3441
|
+
/** @deprecated use `AndLt$Outbound` instead. */
|
|
3442
|
+
type Outbound = AndLt$Outbound;
|
|
3443
3443
|
}
|
|
3444
|
-
export declare function
|
|
3445
|
-
export declare function
|
|
3444
|
+
export declare function andLtToJSON(andLt: AndLt): string;
|
|
3445
|
+
export declare function andLtFromJSON(jsonString: string): SafeParseResult<AndLt, SDKValidationError>;
|
|
3446
3446
|
/** @internal */
|
|
3447
|
-
export declare const
|
|
3447
|
+
export declare const AndGte$inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown>;
|
|
3448
3448
|
/** @internal */
|
|
3449
|
-
export type
|
|
3450
|
-
|
|
3449
|
+
export type AndGte$Outbound = {
|
|
3450
|
+
gte: number;
|
|
3451
3451
|
};
|
|
3452
3452
|
/** @internal */
|
|
3453
|
-
export declare const
|
|
3453
|
+
export declare const AndGte$outboundSchema: z.ZodType<AndGte$Outbound, z.ZodTypeDef, AndGte>;
|
|
3454
3454
|
/**
|
|
3455
3455
|
* @internal
|
|
3456
3456
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3457
3457
|
*/
|
|
3458
|
-
export declare namespace
|
|
3459
|
-
/** @deprecated use `
|
|
3460
|
-
const inboundSchema: z.ZodType<
|
|
3461
|
-
/** @deprecated use `
|
|
3462
|
-
const outboundSchema: z.ZodType<
|
|
3463
|
-
/** @deprecated use `
|
|
3464
|
-
type Outbound =
|
|
3458
|
+
export declare namespace AndGte$ {
|
|
3459
|
+
/** @deprecated use `AndGte$inboundSchema` instead. */
|
|
3460
|
+
const inboundSchema: z.ZodType<AndGte, z.ZodTypeDef, unknown>;
|
|
3461
|
+
/** @deprecated use `AndGte$outboundSchema` instead. */
|
|
3462
|
+
const outboundSchema: z.ZodType<AndGte$Outbound, z.ZodTypeDef, AndGte>;
|
|
3463
|
+
/** @deprecated use `AndGte$Outbound` instead. */
|
|
3464
|
+
type Outbound = AndGte$Outbound;
|
|
3465
3465
|
}
|
|
3466
|
-
export declare function
|
|
3467
|
-
export declare function
|
|
3466
|
+
export declare function andGteToJSON(andGte: AndGte): string;
|
|
3467
|
+
export declare function andGteFromJSON(jsonString: string): SafeParseResult<AndGte, SDKValidationError>;
|
|
3468
3468
|
/** @internal */
|
|
3469
|
-
export declare const
|
|
3469
|
+
export declare const And3$inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown>;
|
|
3470
3470
|
/** @internal */
|
|
3471
|
-
export type
|
|
3472
|
-
|
|
3471
|
+
export type And3$Outbound = {
|
|
3472
|
+
gt: number;
|
|
3473
3473
|
};
|
|
3474
3474
|
/** @internal */
|
|
3475
|
-
export declare const
|
|
3475
|
+
export declare const And3$outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3>;
|
|
3476
3476
|
/**
|
|
3477
3477
|
* @internal
|
|
3478
3478
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3479
3479
|
*/
|
|
3480
|
-
export declare namespace
|
|
3481
|
-
/** @deprecated use `
|
|
3482
|
-
const inboundSchema: z.ZodType<
|
|
3483
|
-
/** @deprecated use `
|
|
3484
|
-
const outboundSchema: z.ZodType<
|
|
3485
|
-
/** @deprecated use `
|
|
3486
|
-
type Outbound =
|
|
3480
|
+
export declare namespace And3$ {
|
|
3481
|
+
/** @deprecated use `And3$inboundSchema` instead. */
|
|
3482
|
+
const inboundSchema: z.ZodType<And3, z.ZodTypeDef, unknown>;
|
|
3483
|
+
/** @deprecated use `And3$outboundSchema` instead. */
|
|
3484
|
+
const outboundSchema: z.ZodType<And3$Outbound, z.ZodTypeDef, And3>;
|
|
3485
|
+
/** @deprecated use `And3$Outbound` instead. */
|
|
3486
|
+
type Outbound = And3$Outbound;
|
|
3487
3487
|
}
|
|
3488
|
-
export declare function
|
|
3489
|
-
export declare function
|
|
3488
|
+
export declare function and3ToJSON(and3: And3): string;
|
|
3489
|
+
export declare function and3FromJSON(jsonString: string): SafeParseResult<And3, SDKValidationError>;
|
|
3490
3490
|
/** @internal */
|
|
3491
|
-
export declare const
|
|
3491
|
+
export declare const DeploymentGetConfigAndNe$inboundSchema: z.ZodType<DeploymentGetConfigAndNe, z.ZodTypeDef, unknown>;
|
|
3492
3492
|
/** @internal */
|
|
3493
|
-
export type
|
|
3493
|
+
export type DeploymentGetConfigAndNe$Outbound = string | number | boolean;
|
|
3494
3494
|
/** @internal */
|
|
3495
|
-
export declare const
|
|
3495
|
+
export declare const DeploymentGetConfigAndNe$outboundSchema: z.ZodType<DeploymentGetConfigAndNe$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNe>;
|
|
3496
3496
|
/**
|
|
3497
3497
|
* @internal
|
|
3498
3498
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3499
3499
|
*/
|
|
3500
|
-
export declare namespace
|
|
3501
|
-
/** @deprecated use `
|
|
3502
|
-
const inboundSchema: z.ZodType<
|
|
3503
|
-
/** @deprecated use `
|
|
3504
|
-
const outboundSchema: z.ZodType<
|
|
3505
|
-
/** @deprecated use `
|
|
3506
|
-
type Outbound =
|
|
3500
|
+
export declare namespace DeploymentGetConfigAndNe$ {
|
|
3501
|
+
/** @deprecated use `DeploymentGetConfigAndNe$inboundSchema` instead. */
|
|
3502
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigAndNe, z.ZodTypeDef, unknown>;
|
|
3503
|
+
/** @deprecated use `DeploymentGetConfigAndNe$outboundSchema` instead. */
|
|
3504
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigAndNe$Outbound, z.ZodTypeDef, DeploymentGetConfigAndNe>;
|
|
3505
|
+
/** @deprecated use `DeploymentGetConfigAndNe$Outbound` instead. */
|
|
3506
|
+
type Outbound = DeploymentGetConfigAndNe$Outbound;
|
|
3507
3507
|
}
|
|
3508
|
-
export declare function
|
|
3509
|
-
export declare function
|
|
3508
|
+
export declare function deploymentGetConfigAndNeToJSON(deploymentGetConfigAndNe: DeploymentGetConfigAndNe): string;
|
|
3509
|
+
export declare function deploymentGetConfigAndNeFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndNe, SDKValidationError>;
|
|
3510
3510
|
/** @internal */
|
|
3511
|
-
export declare const
|
|
3511
|
+
export declare const AndNe$inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown>;
|
|
3512
3512
|
/** @internal */
|
|
3513
|
-
export type
|
|
3514
|
-
|
|
3513
|
+
export type AndNe$Outbound = {
|
|
3514
|
+
ne: string | number | boolean;
|
|
3515
3515
|
};
|
|
3516
3516
|
/** @internal */
|
|
3517
|
-
export declare const
|
|
3517
|
+
export declare const AndNe$outboundSchema: z.ZodType<AndNe$Outbound, z.ZodTypeDef, AndNe>;
|
|
3518
3518
|
/**
|
|
3519
3519
|
* @internal
|
|
3520
3520
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3521
3521
|
*/
|
|
3522
|
-
export declare namespace
|
|
3523
|
-
/** @deprecated use `
|
|
3524
|
-
const inboundSchema: z.ZodType<
|
|
3525
|
-
/** @deprecated use `
|
|
3526
|
-
const outboundSchema: z.ZodType<
|
|
3527
|
-
/** @deprecated use `
|
|
3528
|
-
type Outbound =
|
|
3522
|
+
export declare namespace AndNe$ {
|
|
3523
|
+
/** @deprecated use `AndNe$inboundSchema` instead. */
|
|
3524
|
+
const inboundSchema: z.ZodType<AndNe, z.ZodTypeDef, unknown>;
|
|
3525
|
+
/** @deprecated use `AndNe$outboundSchema` instead. */
|
|
3526
|
+
const outboundSchema: z.ZodType<AndNe$Outbound, z.ZodTypeDef, AndNe>;
|
|
3527
|
+
/** @deprecated use `AndNe$Outbound` instead. */
|
|
3528
|
+
type Outbound = AndNe$Outbound;
|
|
3529
3529
|
}
|
|
3530
|
-
export declare function
|
|
3531
|
-
export declare function
|
|
3530
|
+
export declare function andNeToJSON(andNe: AndNe): string;
|
|
3531
|
+
export declare function andNeFromJSON(jsonString: string): SafeParseResult<AndNe, SDKValidationError>;
|
|
3532
3532
|
/** @internal */
|
|
3533
|
-
export declare const
|
|
3533
|
+
export declare const DeploymentGetConfigAndEq$inboundSchema: z.ZodType<DeploymentGetConfigAndEq, z.ZodTypeDef, unknown>;
|
|
3534
3534
|
/** @internal */
|
|
3535
|
-
export type
|
|
3535
|
+
export type DeploymentGetConfigAndEq$Outbound = string | number | boolean;
|
|
3536
3536
|
/** @internal */
|
|
3537
|
-
export declare const
|
|
3537
|
+
export declare const DeploymentGetConfigAndEq$outboundSchema: z.ZodType<DeploymentGetConfigAndEq$Outbound, z.ZodTypeDef, DeploymentGetConfigAndEq>;
|
|
3538
3538
|
/**
|
|
3539
3539
|
* @internal
|
|
3540
3540
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3541
3541
|
*/
|
|
3542
|
-
export declare namespace
|
|
3543
|
-
/** @deprecated use `
|
|
3544
|
-
const inboundSchema: z.ZodType<
|
|
3545
|
-
/** @deprecated use `
|
|
3546
|
-
const outboundSchema: z.ZodType<
|
|
3547
|
-
/** @deprecated use `
|
|
3548
|
-
type Outbound =
|
|
3542
|
+
export declare namespace DeploymentGetConfigAndEq$ {
|
|
3543
|
+
/** @deprecated use `DeploymentGetConfigAndEq$inboundSchema` instead. */
|
|
3544
|
+
const inboundSchema: z.ZodType<DeploymentGetConfigAndEq, z.ZodTypeDef, unknown>;
|
|
3545
|
+
/** @deprecated use `DeploymentGetConfigAndEq$outboundSchema` instead. */
|
|
3546
|
+
const outboundSchema: z.ZodType<DeploymentGetConfigAndEq$Outbound, z.ZodTypeDef, DeploymentGetConfigAndEq>;
|
|
3547
|
+
/** @deprecated use `DeploymentGetConfigAndEq$Outbound` instead. */
|
|
3548
|
+
type Outbound = DeploymentGetConfigAndEq$Outbound;
|
|
3549
3549
|
}
|
|
3550
|
-
export declare function
|
|
3551
|
-
export declare function
|
|
3550
|
+
export declare function deploymentGetConfigAndEqToJSON(deploymentGetConfigAndEq: DeploymentGetConfigAndEq): string;
|
|
3551
|
+
export declare function deploymentGetConfigAndEqFromJSON(jsonString: string): SafeParseResult<DeploymentGetConfigAndEq, SDKValidationError>;
|
|
3552
3552
|
/** @internal */
|
|
3553
|
-
export declare const
|
|
3553
|
+
export declare const AndEq$inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown>;
|
|
3554
3554
|
/** @internal */
|
|
3555
|
-
export type
|
|
3556
|
-
|
|
3555
|
+
export type AndEq$Outbound = {
|
|
3556
|
+
eq: string | number | boolean;
|
|
3557
3557
|
};
|
|
3558
3558
|
/** @internal */
|
|
3559
|
-
export declare const
|
|
3559
|
+
export declare const AndEq$outboundSchema: z.ZodType<AndEq$Outbound, z.ZodTypeDef, AndEq>;
|
|
3560
3560
|
/**
|
|
3561
3561
|
* @internal
|
|
3562
3562
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3563
3563
|
*/
|
|
3564
|
-
export declare namespace
|
|
3565
|
-
/** @deprecated use `
|
|
3566
|
-
const inboundSchema: z.ZodType<
|
|
3567
|
-
/** @deprecated use `
|
|
3568
|
-
const outboundSchema: z.ZodType<
|
|
3569
|
-
/** @deprecated use `
|
|
3570
|
-
type Outbound =
|
|
3564
|
+
export declare namespace AndEq$ {
|
|
3565
|
+
/** @deprecated use `AndEq$inboundSchema` instead. */
|
|
3566
|
+
const inboundSchema: z.ZodType<AndEq, z.ZodTypeDef, unknown>;
|
|
3567
|
+
/** @deprecated use `AndEq$outboundSchema` instead. */
|
|
3568
|
+
const outboundSchema: z.ZodType<AndEq$Outbound, z.ZodTypeDef, AndEq>;
|
|
3569
|
+
/** @deprecated use `AndEq$Outbound` instead. */
|
|
3570
|
+
type Outbound = AndEq$Outbound;
|
|
3571
3571
|
}
|
|
3572
|
-
export declare function
|
|
3573
|
-
export declare function
|
|
3572
|
+
export declare function andEqToJSON(andEq: AndEq): string;
|
|
3573
|
+
export declare function andEqFromJSON(jsonString: string): SafeParseResult<AndEq, SDKValidationError>;
|
|
3574
3574
|
/** @internal */
|
|
3575
|
-
export declare const
|
|
3575
|
+
export declare const KnowledgeFilterAnd$inboundSchema: z.ZodType<KnowledgeFilterAnd, z.ZodTypeDef, unknown>;
|
|
3576
3576
|
/** @internal */
|
|
3577
|
-
export type
|
|
3577
|
+
export type KnowledgeFilterAnd$Outbound = AndEq$Outbound | AndNe$Outbound | And3$Outbound | AndGte$Outbound | AndLt$Outbound | AndLte$Outbound | AndIn$Outbound | AndNin$Outbound | AndExists$Outbound;
|
|
3578
3578
|
/** @internal */
|
|
3579
|
-
export declare const
|
|
3579
|
+
export declare const KnowledgeFilterAnd$outboundSchema: z.ZodType<KnowledgeFilterAnd$Outbound, z.ZodTypeDef, KnowledgeFilterAnd>;
|
|
3580
3580
|
/**
|
|
3581
3581
|
* @internal
|
|
3582
3582
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3583
3583
|
*/
|
|
3584
|
-
export declare namespace
|
|
3585
|
-
/** @deprecated use `
|
|
3586
|
-
const inboundSchema: z.ZodType<
|
|
3587
|
-
/** @deprecated use `
|
|
3588
|
-
const outboundSchema: z.ZodType<
|
|
3589
|
-
/** @deprecated use `
|
|
3590
|
-
type Outbound =
|
|
3584
|
+
export declare namespace KnowledgeFilterAnd$ {
|
|
3585
|
+
/** @deprecated use `KnowledgeFilterAnd$inboundSchema` instead. */
|
|
3586
|
+
const inboundSchema: z.ZodType<KnowledgeFilterAnd, z.ZodTypeDef, unknown>;
|
|
3587
|
+
/** @deprecated use `KnowledgeFilterAnd$outboundSchema` instead. */
|
|
3588
|
+
const outboundSchema: z.ZodType<KnowledgeFilterAnd$Outbound, z.ZodTypeDef, KnowledgeFilterAnd>;
|
|
3589
|
+
/** @deprecated use `KnowledgeFilterAnd$Outbound` instead. */
|
|
3590
|
+
type Outbound = KnowledgeFilterAnd$Outbound;
|
|
3591
3591
|
}
|
|
3592
|
-
export declare function
|
|
3593
|
-
export declare function
|
|
3592
|
+
export declare function knowledgeFilterAndToJSON(knowledgeFilterAnd: KnowledgeFilterAnd): string;
|
|
3593
|
+
export declare function knowledgeFilterAndFromJSON(jsonString: string): SafeParseResult<KnowledgeFilterAnd, SDKValidationError>;
|
|
3594
3594
|
/** @internal */
|
|
3595
|
-
export declare const
|
|
3595
|
+
export declare const And$inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown>;
|
|
3596
3596
|
/** @internal */
|
|
3597
|
-
export type
|
|
3598
|
-
|
|
3599
|
-
[k: string]:
|
|
3597
|
+
export type And$Outbound = {
|
|
3598
|
+
and: Array<{
|
|
3599
|
+
[k: string]: AndEq$Outbound | AndNe$Outbound | And3$Outbound | AndGte$Outbound | AndLt$Outbound | AndLte$Outbound | AndIn$Outbound | AndNin$Outbound | AndExists$Outbound;
|
|
3600
3600
|
}>;
|
|
3601
3601
|
};
|
|
3602
3602
|
/** @internal */
|
|
3603
|
-
export declare const
|
|
3603
|
+
export declare const And$outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And>;
|
|
3604
3604
|
/**
|
|
3605
3605
|
* @internal
|
|
3606
3606
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3607
3607
|
*/
|
|
3608
|
-
export declare namespace
|
|
3609
|
-
/** @deprecated use `
|
|
3610
|
-
const inboundSchema: z.ZodType<
|
|
3611
|
-
/** @deprecated use `
|
|
3612
|
-
const outboundSchema: z.ZodType<
|
|
3613
|
-
/** @deprecated use `
|
|
3614
|
-
type Outbound =
|
|
3608
|
+
export declare namespace And$ {
|
|
3609
|
+
/** @deprecated use `And$inboundSchema` instead. */
|
|
3610
|
+
const inboundSchema: z.ZodType<And, z.ZodTypeDef, unknown>;
|
|
3611
|
+
/** @deprecated use `And$outboundSchema` instead. */
|
|
3612
|
+
const outboundSchema: z.ZodType<And$Outbound, z.ZodTypeDef, And>;
|
|
3613
|
+
/** @deprecated use `And$Outbound` instead. */
|
|
3614
|
+
type Outbound = And$Outbound;
|
|
3615
3615
|
}
|
|
3616
|
-
export declare function
|
|
3617
|
-
export declare function
|
|
3616
|
+
export declare function andToJSON(and: And): string;
|
|
3617
|
+
export declare function andFromJSON(jsonString: string): SafeParseResult<And, SDKValidationError>;
|
|
3618
3618
|
/** @internal */
|
|
3619
|
-
export declare const
|
|
3619
|
+
export declare const Exists$inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown>;
|
|
3620
3620
|
/** @internal */
|
|
3621
|
-
export type
|
|
3622
|
-
|
|
3621
|
+
export type Exists$Outbound = {
|
|
3622
|
+
exists: boolean;
|
|
3623
3623
|
};
|
|
3624
3624
|
/** @internal */
|
|
3625
|
-
export declare const
|
|
3625
|
+
export declare const Exists$outboundSchema: z.ZodType<Exists$Outbound, z.ZodTypeDef, Exists>;
|
|
3626
3626
|
/**
|
|
3627
3627
|
* @internal
|
|
3628
3628
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3629
3629
|
*/
|
|
3630
|
-
export declare namespace
|
|
3631
|
-
/** @deprecated use `
|
|
3632
|
-
const inboundSchema: z.ZodType<
|
|
3633
|
-
/** @deprecated use `
|
|
3634
|
-
const outboundSchema: z.ZodType<
|
|
3635
|
-
/** @deprecated use `
|
|
3636
|
-
type Outbound =
|
|
3630
|
+
export declare namespace Exists$ {
|
|
3631
|
+
/** @deprecated use `Exists$inboundSchema` instead. */
|
|
3632
|
+
const inboundSchema: z.ZodType<Exists, z.ZodTypeDef, unknown>;
|
|
3633
|
+
/** @deprecated use `Exists$outboundSchema` instead. */
|
|
3634
|
+
const outboundSchema: z.ZodType<Exists$Outbound, z.ZodTypeDef, Exists>;
|
|
3635
|
+
/** @deprecated use `Exists$Outbound` instead. */
|
|
3636
|
+
type Outbound = Exists$Outbound;
|
|
3637
3637
|
}
|
|
3638
|
-
export declare function
|
|
3639
|
-
export declare function
|
|
3638
|
+
export declare function existsToJSON(exists: Exists): string;
|
|
3639
|
+
export declare function existsFromJSON(jsonString: string): SafeParseResult<Exists, SDKValidationError>;
|
|
3640
3640
|
/** @internal */
|
|
3641
|
-
export declare const
|
|
3641
|
+
export declare const OneNin$inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown>;
|
|
3642
3642
|
/** @internal */
|
|
3643
|
-
export type
|
|
3643
|
+
export type OneNin$Outbound = string | number | boolean;
|
|
3644
3644
|
/** @internal */
|
|
3645
|
-
export declare const
|
|
3645
|
+
export declare const OneNin$outboundSchema: z.ZodType<OneNin$Outbound, z.ZodTypeDef, OneNin>;
|
|
3646
3646
|
/**
|
|
3647
3647
|
* @internal
|
|
3648
3648
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3649
3649
|
*/
|
|
3650
|
-
export declare namespace
|
|
3651
|
-
/** @deprecated use `
|
|
3652
|
-
const inboundSchema: z.ZodType<
|
|
3653
|
-
/** @deprecated use `
|
|
3654
|
-
const outboundSchema: z.ZodType<
|
|
3655
|
-
/** @deprecated use `
|
|
3656
|
-
type Outbound =
|
|
3650
|
+
export declare namespace OneNin$ {
|
|
3651
|
+
/** @deprecated use `OneNin$inboundSchema` instead. */
|
|
3652
|
+
const inboundSchema: z.ZodType<OneNin, z.ZodTypeDef, unknown>;
|
|
3653
|
+
/** @deprecated use `OneNin$outboundSchema` instead. */
|
|
3654
|
+
const outboundSchema: z.ZodType<OneNin$Outbound, z.ZodTypeDef, OneNin>;
|
|
3655
|
+
/** @deprecated use `OneNin$Outbound` instead. */
|
|
3656
|
+
type Outbound = OneNin$Outbound;
|
|
3657
3657
|
}
|
|
3658
|
-
export declare function
|
|
3659
|
-
export declare function
|
|
3658
|
+
export declare function oneNinToJSON(oneNin: OneNin): string;
|
|
3659
|
+
export declare function oneNinFromJSON(jsonString: string): SafeParseResult<OneNin, SDKValidationError>;
|
|
3660
3660
|
/** @internal */
|
|
3661
|
-
export declare const
|
|
3661
|
+
export declare const Nin$inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown>;
|
|
3662
3662
|
/** @internal */
|
|
3663
|
-
export type
|
|
3664
|
-
|
|
3663
|
+
export type Nin$Outbound = {
|
|
3664
|
+
nin: Array<string | number | boolean>;
|
|
3665
3665
|
};
|
|
3666
3666
|
/** @internal */
|
|
3667
|
-
export declare const
|
|
3667
|
+
export declare const Nin$outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin>;
|
|
3668
3668
|
/**
|
|
3669
3669
|
* @internal
|
|
3670
3670
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3671
3671
|
*/
|
|
3672
|
-
export declare namespace
|
|
3673
|
-
/** @deprecated use `
|
|
3674
|
-
const inboundSchema: z.ZodType<
|
|
3675
|
-
/** @deprecated use `
|
|
3676
|
-
const outboundSchema: z.ZodType<
|
|
3677
|
-
/** @deprecated use `
|
|
3678
|
-
type Outbound =
|
|
3672
|
+
export declare namespace Nin$ {
|
|
3673
|
+
/** @deprecated use `Nin$inboundSchema` instead. */
|
|
3674
|
+
const inboundSchema: z.ZodType<Nin, z.ZodTypeDef, unknown>;
|
|
3675
|
+
/** @deprecated use `Nin$outboundSchema` instead. */
|
|
3676
|
+
const outboundSchema: z.ZodType<Nin$Outbound, z.ZodTypeDef, Nin>;
|
|
3677
|
+
/** @deprecated use `Nin$Outbound` instead. */
|
|
3678
|
+
type Outbound = Nin$Outbound;
|
|
3679
3679
|
}
|
|
3680
|
-
export declare function
|
|
3681
|
-
export declare function
|
|
3680
|
+
export declare function ninToJSON(nin: Nin): string;
|
|
3681
|
+
export declare function ninFromJSON(jsonString: string): SafeParseResult<Nin, SDKValidationError>;
|
|
3682
3682
|
/** @internal */
|
|
3683
|
-
export declare const
|
|
3683
|
+
export declare const OneIn$inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown>;
|
|
3684
3684
|
/** @internal */
|
|
3685
|
-
export type
|
|
3685
|
+
export type OneIn$Outbound = string | number | boolean;
|
|
3686
3686
|
/** @internal */
|
|
3687
|
-
export declare const
|
|
3687
|
+
export declare const OneIn$outboundSchema: z.ZodType<OneIn$Outbound, z.ZodTypeDef, OneIn>;
|
|
3688
3688
|
/**
|
|
3689
3689
|
* @internal
|
|
3690
3690
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3691
3691
|
*/
|
|
3692
|
-
export declare namespace
|
|
3693
|
-
/** @deprecated use `
|
|
3694
|
-
const inboundSchema: z.ZodType<
|
|
3695
|
-
/** @deprecated use `
|
|
3696
|
-
const outboundSchema: z.ZodType<
|
|
3697
|
-
/** @deprecated use `
|
|
3698
|
-
type Outbound =
|
|
3692
|
+
export declare namespace OneIn$ {
|
|
3693
|
+
/** @deprecated use `OneIn$inboundSchema` instead. */
|
|
3694
|
+
const inboundSchema: z.ZodType<OneIn, z.ZodTypeDef, unknown>;
|
|
3695
|
+
/** @deprecated use `OneIn$outboundSchema` instead. */
|
|
3696
|
+
const outboundSchema: z.ZodType<OneIn$Outbound, z.ZodTypeDef, OneIn>;
|
|
3697
|
+
/** @deprecated use `OneIn$Outbound` instead. */
|
|
3698
|
+
type Outbound = OneIn$Outbound;
|
|
3699
3699
|
}
|
|
3700
|
-
export declare function
|
|
3701
|
-
export declare function
|
|
3700
|
+
export declare function oneInToJSON(oneIn: OneIn): string;
|
|
3701
|
+
export declare function oneInFromJSON(jsonString: string): SafeParseResult<OneIn, SDKValidationError>;
|
|
3702
3702
|
/** @internal */
|
|
3703
|
-
export declare const
|
|
3703
|
+
export declare const In$inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown>;
|
|
3704
3704
|
/** @internal */
|
|
3705
|
-
export type
|
|
3706
|
-
|
|
3705
|
+
export type In$Outbound = {
|
|
3706
|
+
in: Array<string | number | boolean>;
|
|
3707
3707
|
};
|
|
3708
3708
|
/** @internal */
|
|
3709
|
-
export declare const
|
|
3709
|
+
export declare const In$outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In>;
|
|
3710
3710
|
/**
|
|
3711
3711
|
* @internal
|
|
3712
3712
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3713
3713
|
*/
|
|
3714
|
-
export declare namespace
|
|
3715
|
-
/** @deprecated use `
|
|
3716
|
-
const inboundSchema: z.ZodType<
|
|
3717
|
-
/** @deprecated use `
|
|
3718
|
-
const outboundSchema: z.ZodType<
|
|
3719
|
-
/** @deprecated use `
|
|
3720
|
-
type Outbound =
|
|
3714
|
+
export declare namespace In$ {
|
|
3715
|
+
/** @deprecated use `In$inboundSchema` instead. */
|
|
3716
|
+
const inboundSchema: z.ZodType<In, z.ZodTypeDef, unknown>;
|
|
3717
|
+
/** @deprecated use `In$outboundSchema` instead. */
|
|
3718
|
+
const outboundSchema: z.ZodType<In$Outbound, z.ZodTypeDef, In>;
|
|
3719
|
+
/** @deprecated use `In$Outbound` instead. */
|
|
3720
|
+
type Outbound = In$Outbound;
|
|
3721
3721
|
}
|
|
3722
|
-
export declare function
|
|
3723
|
-
export declare function
|
|
3722
|
+
export declare function inToJSON(value: In): string;
|
|
3723
|
+
export declare function inFromJSON(jsonString: string): SafeParseResult<In, SDKValidationError>;
|
|
3724
3724
|
/** @internal */
|
|
3725
|
-
export declare const
|
|
3725
|
+
export declare const Lte$inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown>;
|
|
3726
3726
|
/** @internal */
|
|
3727
|
-
export type
|
|
3728
|
-
|
|
3727
|
+
export type Lte$Outbound = {
|
|
3728
|
+
lte: number;
|
|
3729
3729
|
};
|
|
3730
3730
|
/** @internal */
|
|
3731
|
-
export declare const
|
|
3731
|
+
export declare const Lte$outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte>;
|
|
3732
3732
|
/**
|
|
3733
3733
|
* @internal
|
|
3734
3734
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3735
3735
|
*/
|
|
3736
|
-
export declare namespace
|
|
3737
|
-
/** @deprecated use `
|
|
3738
|
-
const inboundSchema: z.ZodType<
|
|
3739
|
-
/** @deprecated use `
|
|
3740
|
-
const outboundSchema: z.ZodType<
|
|
3741
|
-
/** @deprecated use `
|
|
3742
|
-
type Outbound =
|
|
3736
|
+
export declare namespace Lte$ {
|
|
3737
|
+
/** @deprecated use `Lte$inboundSchema` instead. */
|
|
3738
|
+
const inboundSchema: z.ZodType<Lte, z.ZodTypeDef, unknown>;
|
|
3739
|
+
/** @deprecated use `Lte$outboundSchema` instead. */
|
|
3740
|
+
const outboundSchema: z.ZodType<Lte$Outbound, z.ZodTypeDef, Lte>;
|
|
3741
|
+
/** @deprecated use `Lte$Outbound` instead. */
|
|
3742
|
+
type Outbound = Lte$Outbound;
|
|
3743
3743
|
}
|
|
3744
|
-
export declare function
|
|
3745
|
-
export declare function
|
|
3744
|
+
export declare function lteToJSON(lte: Lte): string;
|
|
3745
|
+
export declare function lteFromJSON(jsonString: string): SafeParseResult<Lte, SDKValidationError>;
|
|
3746
3746
|
/** @internal */
|
|
3747
|
-
export declare const
|
|
3747
|
+
export declare const Lt$inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown>;
|
|
3748
3748
|
/** @internal */
|
|
3749
|
-
export type
|
|
3750
|
-
|
|
3749
|
+
export type Lt$Outbound = {
|
|
3750
|
+
lt: number;
|
|
3751
3751
|
};
|
|
3752
3752
|
/** @internal */
|
|
3753
|
-
export declare const
|
|
3753
|
+
export declare const Lt$outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt>;
|
|
3754
3754
|
/**
|
|
3755
3755
|
* @internal
|
|
3756
3756
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3757
3757
|
*/
|
|
3758
|
-
export declare namespace
|
|
3759
|
-
/** @deprecated use `
|
|
3760
|
-
const inboundSchema: z.ZodType<
|
|
3761
|
-
/** @deprecated use `
|
|
3762
|
-
const outboundSchema: z.ZodType<
|
|
3763
|
-
/** @deprecated use `
|
|
3764
|
-
type Outbound =
|
|
3758
|
+
export declare namespace Lt$ {
|
|
3759
|
+
/** @deprecated use `Lt$inboundSchema` instead. */
|
|
3760
|
+
const inboundSchema: z.ZodType<Lt, z.ZodTypeDef, unknown>;
|
|
3761
|
+
/** @deprecated use `Lt$outboundSchema` instead. */
|
|
3762
|
+
const outboundSchema: z.ZodType<Lt$Outbound, z.ZodTypeDef, Lt>;
|
|
3763
|
+
/** @deprecated use `Lt$Outbound` instead. */
|
|
3764
|
+
type Outbound = Lt$Outbound;
|
|
3765
3765
|
}
|
|
3766
|
-
export declare function
|
|
3767
|
-
export declare function
|
|
3766
|
+
export declare function ltToJSON(lt: Lt): string;
|
|
3767
|
+
export declare function ltFromJSON(jsonString: string): SafeParseResult<Lt, SDKValidationError>;
|
|
3768
3768
|
/** @internal */
|
|
3769
|
-
export declare const
|
|
3769
|
+
export declare const Gte$inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown>;
|
|
3770
3770
|
/** @internal */
|
|
3771
|
-
export type
|
|
3772
|
-
|
|
3771
|
+
export type Gte$Outbound = {
|
|
3772
|
+
gte: number;
|
|
3773
3773
|
};
|
|
3774
3774
|
/** @internal */
|
|
3775
|
-
export declare const
|
|
3775
|
+
export declare const Gte$outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte>;
|
|
3776
3776
|
/**
|
|
3777
3777
|
* @internal
|
|
3778
3778
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3779
3779
|
*/
|
|
3780
|
-
export declare namespace
|
|
3781
|
-
/** @deprecated use `
|
|
3782
|
-
const inboundSchema: z.ZodType<
|
|
3783
|
-
/** @deprecated use `
|
|
3784
|
-
const outboundSchema: z.ZodType<
|
|
3785
|
-
/** @deprecated use `
|
|
3786
|
-
type Outbound =
|
|
3780
|
+
export declare namespace Gte$ {
|
|
3781
|
+
/** @deprecated use `Gte$inboundSchema` instead. */
|
|
3782
|
+
const inboundSchema: z.ZodType<Gte, z.ZodTypeDef, unknown>;
|
|
3783
|
+
/** @deprecated use `Gte$outboundSchema` instead. */
|
|
3784
|
+
const outboundSchema: z.ZodType<Gte$Outbound, z.ZodTypeDef, Gte>;
|
|
3785
|
+
/** @deprecated use `Gte$Outbound` instead. */
|
|
3786
|
+
type Outbound = Gte$Outbound;
|
|
3787
3787
|
}
|
|
3788
|
-
export declare function
|
|
3789
|
-
export declare function
|
|
3788
|
+
export declare function gteToJSON(gte: Gte): string;
|
|
3789
|
+
export declare function gteFromJSON(jsonString: string): SafeParseResult<Gte, SDKValidationError>;
|
|
3790
3790
|
/** @internal */
|
|
3791
3791
|
export declare const One3$inboundSchema: z.ZodType<One3, z.ZodTypeDef, unknown>;
|
|
3792
3792
|
/** @internal */
|
|
3793
3793
|
export type One3$Outbound = {
|
|
3794
|
-
|
|
3794
|
+
gt: number;
|
|
3795
3795
|
};
|
|
3796
3796
|
/** @internal */
|
|
3797
3797
|
export declare const One3$outboundSchema: z.ZodType<One3$Outbound, z.ZodTypeDef, One3>;
|
|
@@ -3810,93 +3810,93 @@ export declare namespace One3$ {
|
|
|
3810
3810
|
export declare function one3ToJSON(one3: One3): string;
|
|
3811
3811
|
export declare function one3FromJSON(jsonString: string): SafeParseResult<One3, SDKValidationError>;
|
|
3812
3812
|
/** @internal */
|
|
3813
|
-
export declare const
|
|
3813
|
+
export declare const OneNe$inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown>;
|
|
3814
3814
|
/** @internal */
|
|
3815
|
-
export type
|
|
3815
|
+
export type OneNe$Outbound = string | number | boolean;
|
|
3816
3816
|
/** @internal */
|
|
3817
|
-
export declare const
|
|
3817
|
+
export declare const OneNe$outboundSchema: z.ZodType<OneNe$Outbound, z.ZodTypeDef, OneNe>;
|
|
3818
3818
|
/**
|
|
3819
3819
|
* @internal
|
|
3820
3820
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3821
3821
|
*/
|
|
3822
|
-
export declare namespace
|
|
3823
|
-
/** @deprecated use `
|
|
3824
|
-
const inboundSchema: z.ZodType<
|
|
3825
|
-
/** @deprecated use `
|
|
3826
|
-
const outboundSchema: z.ZodType<
|
|
3827
|
-
/** @deprecated use `
|
|
3828
|
-
type Outbound =
|
|
3822
|
+
export declare namespace OneNe$ {
|
|
3823
|
+
/** @deprecated use `OneNe$inboundSchema` instead. */
|
|
3824
|
+
const inboundSchema: z.ZodType<OneNe, z.ZodTypeDef, unknown>;
|
|
3825
|
+
/** @deprecated use `OneNe$outboundSchema` instead. */
|
|
3826
|
+
const outboundSchema: z.ZodType<OneNe$Outbound, z.ZodTypeDef, OneNe>;
|
|
3827
|
+
/** @deprecated use `OneNe$Outbound` instead. */
|
|
3828
|
+
type Outbound = OneNe$Outbound;
|
|
3829
3829
|
}
|
|
3830
|
-
export declare function
|
|
3831
|
-
export declare function
|
|
3830
|
+
export declare function oneNeToJSON(oneNe: OneNe): string;
|
|
3831
|
+
export declare function oneNeFromJSON(jsonString: string): SafeParseResult<OneNe, SDKValidationError>;
|
|
3832
3832
|
/** @internal */
|
|
3833
|
-
export declare const
|
|
3833
|
+
export declare const Ne$inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown>;
|
|
3834
3834
|
/** @internal */
|
|
3835
|
-
export type
|
|
3836
|
-
|
|
3835
|
+
export type Ne$Outbound = {
|
|
3836
|
+
ne: string | number | boolean;
|
|
3837
3837
|
};
|
|
3838
3838
|
/** @internal */
|
|
3839
|
-
export declare const
|
|
3839
|
+
export declare const Ne$outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne>;
|
|
3840
3840
|
/**
|
|
3841
3841
|
* @internal
|
|
3842
3842
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3843
3843
|
*/
|
|
3844
|
-
export declare namespace
|
|
3845
|
-
/** @deprecated use `
|
|
3846
|
-
const inboundSchema: z.ZodType<
|
|
3847
|
-
/** @deprecated use `
|
|
3848
|
-
const outboundSchema: z.ZodType<
|
|
3849
|
-
/** @deprecated use `
|
|
3850
|
-
type Outbound =
|
|
3844
|
+
export declare namespace Ne$ {
|
|
3845
|
+
/** @deprecated use `Ne$inboundSchema` instead. */
|
|
3846
|
+
const inboundSchema: z.ZodType<Ne, z.ZodTypeDef, unknown>;
|
|
3847
|
+
/** @deprecated use `Ne$outboundSchema` instead. */
|
|
3848
|
+
const outboundSchema: z.ZodType<Ne$Outbound, z.ZodTypeDef, Ne>;
|
|
3849
|
+
/** @deprecated use `Ne$Outbound` instead. */
|
|
3850
|
+
type Outbound = Ne$Outbound;
|
|
3851
3851
|
}
|
|
3852
|
-
export declare function
|
|
3853
|
-
export declare function
|
|
3852
|
+
export declare function neToJSON(ne: Ne): string;
|
|
3853
|
+
export declare function neFromJSON(jsonString: string): SafeParseResult<Ne, SDKValidationError>;
|
|
3854
3854
|
/** @internal */
|
|
3855
|
-
export declare const
|
|
3855
|
+
export declare const OneEq$inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown>;
|
|
3856
3856
|
/** @internal */
|
|
3857
|
-
export type
|
|
3857
|
+
export type OneEq$Outbound = string | number | boolean;
|
|
3858
3858
|
/** @internal */
|
|
3859
|
-
export declare const
|
|
3859
|
+
export declare const OneEq$outboundSchema: z.ZodType<OneEq$Outbound, z.ZodTypeDef, OneEq>;
|
|
3860
3860
|
/**
|
|
3861
3861
|
* @internal
|
|
3862
3862
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3863
3863
|
*/
|
|
3864
|
-
export declare namespace
|
|
3865
|
-
/** @deprecated use `
|
|
3866
|
-
const inboundSchema: z.ZodType<
|
|
3867
|
-
/** @deprecated use `
|
|
3868
|
-
const outboundSchema: z.ZodType<
|
|
3869
|
-
/** @deprecated use `
|
|
3870
|
-
type Outbound =
|
|
3864
|
+
export declare namespace OneEq$ {
|
|
3865
|
+
/** @deprecated use `OneEq$inboundSchema` instead. */
|
|
3866
|
+
const inboundSchema: z.ZodType<OneEq, z.ZodTypeDef, unknown>;
|
|
3867
|
+
/** @deprecated use `OneEq$outboundSchema` instead. */
|
|
3868
|
+
const outboundSchema: z.ZodType<OneEq$Outbound, z.ZodTypeDef, OneEq>;
|
|
3869
|
+
/** @deprecated use `OneEq$Outbound` instead. */
|
|
3870
|
+
type Outbound = OneEq$Outbound;
|
|
3871
3871
|
}
|
|
3872
|
-
export declare function
|
|
3873
|
-
export declare function
|
|
3872
|
+
export declare function oneEqToJSON(oneEq: OneEq): string;
|
|
3873
|
+
export declare function oneEqFromJSON(jsonString: string): SafeParseResult<OneEq, SDKValidationError>;
|
|
3874
3874
|
/** @internal */
|
|
3875
|
-
export declare const
|
|
3875
|
+
export declare const Eq$inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
|
|
3876
3876
|
/** @internal */
|
|
3877
|
-
export type
|
|
3878
|
-
|
|
3877
|
+
export type Eq$Outbound = {
|
|
3878
|
+
eq: string | number | boolean;
|
|
3879
3879
|
};
|
|
3880
3880
|
/** @internal */
|
|
3881
|
-
export declare const
|
|
3881
|
+
export declare const Eq$outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
|
|
3882
3882
|
/**
|
|
3883
3883
|
* @internal
|
|
3884
3884
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3885
3885
|
*/
|
|
3886
|
-
export declare namespace
|
|
3887
|
-
/** @deprecated use `
|
|
3888
|
-
const inboundSchema: z.ZodType<
|
|
3889
|
-
/** @deprecated use `
|
|
3890
|
-
const outboundSchema: z.ZodType<
|
|
3891
|
-
/** @deprecated use `
|
|
3892
|
-
type Outbound =
|
|
3886
|
+
export declare namespace Eq$ {
|
|
3887
|
+
/** @deprecated use `Eq$inboundSchema` instead. */
|
|
3888
|
+
const inboundSchema: z.ZodType<Eq, z.ZodTypeDef, unknown>;
|
|
3889
|
+
/** @deprecated use `Eq$outboundSchema` instead. */
|
|
3890
|
+
const outboundSchema: z.ZodType<Eq$Outbound, z.ZodTypeDef, Eq>;
|
|
3891
|
+
/** @deprecated use `Eq$Outbound` instead. */
|
|
3892
|
+
type Outbound = Eq$Outbound;
|
|
3893
3893
|
}
|
|
3894
|
-
export declare function
|
|
3895
|
-
export declare function
|
|
3894
|
+
export declare function eqToJSON(eq: Eq): string;
|
|
3895
|
+
export declare function eqFromJSON(jsonString: string): SafeParseResult<Eq, SDKValidationError>;
|
|
3896
3896
|
/** @internal */
|
|
3897
3897
|
export declare const KnowledgeFilter1$inboundSchema: z.ZodType<KnowledgeFilter1, z.ZodTypeDef, unknown>;
|
|
3898
3898
|
/** @internal */
|
|
3899
|
-
export type KnowledgeFilter1$Outbound =
|
|
3899
|
+
export type KnowledgeFilter1$Outbound = Eq$Outbound | Ne$Outbound | One3$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | In$Outbound | Nin$Outbound | Exists$Outbound;
|
|
3900
3900
|
/** @internal */
|
|
3901
3901
|
export declare const KnowledgeFilter1$outboundSchema: z.ZodType<KnowledgeFilter1$Outbound, z.ZodTypeDef, KnowledgeFilter1>;
|
|
3902
3902
|
/**
|
|
@@ -3916,8 +3916,8 @@ export declare function knowledgeFilter1FromJSON(jsonString: string): SafeParseR
|
|
|
3916
3916
|
/** @internal */
|
|
3917
3917
|
export declare const KnowledgeFilter$inboundSchema: z.ZodType<KnowledgeFilter, z.ZodTypeDef, unknown>;
|
|
3918
3918
|
/** @internal */
|
|
3919
|
-
export type KnowledgeFilter$Outbound =
|
|
3920
|
-
[k: string]:
|
|
3919
|
+
export type KnowledgeFilter$Outbound = And$Outbound | Or$Outbound | {
|
|
3920
|
+
[k: string]: Eq$Outbound | Ne$Outbound | One3$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | In$Outbound | Nin$Outbound | Exists$Outbound;
|
|
3921
3921
|
};
|
|
3922
3922
|
/** @internal */
|
|
3923
3923
|
export declare const KnowledgeFilter$outboundSchema: z.ZodType<KnowledgeFilter$Outbound, z.ZodTypeDef, KnowledgeFilter>;
|
|
@@ -3958,8 +3958,8 @@ export type DeploymentGetConfigRequestBody$Outbound = {
|
|
|
3958
3958
|
documents?: Array<Documents$Outbound> | undefined;
|
|
3959
3959
|
invoke_options?: InvokeOptions$Outbound | undefined;
|
|
3960
3960
|
thread?: Thread$Outbound | undefined;
|
|
3961
|
-
knowledge_filter?:
|
|
3962
|
-
[k: string]:
|
|
3961
|
+
knowledge_filter?: And$Outbound | Or$Outbound | {
|
|
3962
|
+
[k: string]: Eq$Outbound | Ne$Outbound | One3$Outbound | Gte$Outbound | Lt$Outbound | Lte$Outbound | In$Outbound | Nin$Outbound | Exists$Outbound;
|
|
3963
3963
|
} | undefined;
|
|
3964
3964
|
};
|
|
3965
3965
|
/** @internal */
|