@dmptool/types 1.2.5 → 1.2.6
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/questions/index.d.ts +1507 -2166
- package/dist/questions/tableQuestions.d.ts +1602 -2261
- package/dist/questions/tableQuestions.js +16 -1
- package/dist/schemas/anyQuestion.schema.json +884 -166
- package/package.json +2 -2
|
@@ -7621,11 +7621,22 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7621
7621
|
}>>;
|
|
7622
7622
|
} & {
|
|
7623
7623
|
type: z.ZodLiteral<"researchOutputTable">;
|
|
7624
|
-
columns: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7625
|
-
heading: z.ZodDefault<z.ZodString>;
|
|
7626
|
-
required: z.ZodDefault<z.ZodBoolean>;
|
|
7624
|
+
columns: z.ZodDefault<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
7627
7625
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7628
|
-
|
|
7626
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
7627
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7628
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7629
|
+
}, "strip", z.ZodTypeAny, {
|
|
7630
|
+
schemaVersion: string;
|
|
7631
|
+
labelTranslationKey?: string | undefined;
|
|
7632
|
+
}, {
|
|
7633
|
+
schemaVersion?: string | undefined;
|
|
7634
|
+
labelTranslationKey?: string | undefined;
|
|
7635
|
+
}>>;
|
|
7636
|
+
} & {
|
|
7637
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
7638
|
+
required: z.ZodLiteral<true>;
|
|
7639
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
7629
7640
|
meta: z.ZodDefault<z.ZodObject<{
|
|
7630
7641
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7631
7642
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -7639,132 +7650,32 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7639
7650
|
title?: string | undefined;
|
|
7640
7651
|
usageDescription?: string | undefined;
|
|
7641
7652
|
}>>;
|
|
7653
|
+
type: z.ZodLiteral<"text">;
|
|
7642
7654
|
} & {
|
|
7643
|
-
type: z.ZodLiteral<"affiliationSearch">;
|
|
7644
7655
|
attributes: z.ZodDefault<z.ZodObject<{
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7656
|
+
help: z.ZodDefault<z.ZodString>;
|
|
7657
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
7648
7658
|
}, "strip", z.ZodTypeAny, {
|
|
7649
|
-
|
|
7650
|
-
|
|
7651
|
-
labelTranslationKey?: string | undefined;
|
|
7659
|
+
help: string;
|
|
7660
|
+
labelTranslationKey: string;
|
|
7652
7661
|
}, {
|
|
7653
|
-
label?: string | undefined;
|
|
7654
7662
|
help?: string | undefined;
|
|
7655
7663
|
labelTranslationKey?: string | undefined;
|
|
7656
7664
|
}>>;
|
|
7657
|
-
graphQL: z.ZodDefault<z.ZodObject<{
|
|
7658
|
-
localQueryId: z.ZodOptional<z.ZodString>;
|
|
7659
|
-
} & {
|
|
7660
|
-
query: z.ZodDefault<z.ZodLiteral<string>>;
|
|
7661
|
-
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
7662
|
-
variables: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7663
|
-
name: z.ZodDefault<z.ZodLiteral<"name">>;
|
|
7664
|
-
type: z.ZodDefault<z.ZodString>;
|
|
7665
|
-
label: z.ZodDefault<z.ZodString>;
|
|
7666
|
-
minLength: z.ZodDefault<z.ZodLiteral<3>>;
|
|
7667
|
-
labelTranslationKey: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
7668
|
-
}, "strip", z.ZodTypeAny, {
|
|
7669
|
-
type: string;
|
|
7670
|
-
label: string;
|
|
7671
|
-
minLength: 3;
|
|
7672
|
-
name: "name";
|
|
7673
|
-
labelTranslationKey?: string | undefined;
|
|
7674
|
-
}, {
|
|
7675
|
-
type?: string | undefined;
|
|
7676
|
-
label?: string | undefined;
|
|
7677
|
-
labelTranslationKey?: string | undefined;
|
|
7678
|
-
minLength?: 3 | undefined;
|
|
7679
|
-
name?: "name" | undefined;
|
|
7680
|
-
}>, "many">>;
|
|
7681
|
-
answerField: z.ZodDefault<z.ZodLiteral<"uri">>;
|
|
7682
|
-
displayFields: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7683
|
-
propertyName: z.ZodDefault<z.ZodLiteral<"displayName">>;
|
|
7684
|
-
label: z.ZodDefault<z.ZodString>;
|
|
7685
|
-
labelTranslationKey: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
7686
|
-
}, "strip", z.ZodTypeAny, {
|
|
7687
|
-
label: string;
|
|
7688
|
-
propertyName: "displayName";
|
|
7689
|
-
labelTranslationKey?: string | undefined;
|
|
7690
|
-
}, {
|
|
7691
|
-
label?: string | undefined;
|
|
7692
|
-
labelTranslationKey?: string | undefined;
|
|
7693
|
-
propertyName?: "displayName" | undefined;
|
|
7694
|
-
}>, "many">>;
|
|
7695
|
-
responseField: z.ZodDefault<z.ZodLiteral<"affiliations.items">>;
|
|
7696
|
-
}, "strip", z.ZodTypeAny, {
|
|
7697
|
-
displayFields: {
|
|
7698
|
-
label: string;
|
|
7699
|
-
propertyName: "displayName";
|
|
7700
|
-
labelTranslationKey?: string | undefined;
|
|
7701
|
-
}[];
|
|
7702
|
-
query: string;
|
|
7703
|
-
responseField: "affiliations.items";
|
|
7704
|
-
variables: {
|
|
7705
|
-
type: string;
|
|
7706
|
-
label: string;
|
|
7707
|
-
minLength: 3;
|
|
7708
|
-
name: "name";
|
|
7709
|
-
labelTranslationKey?: string | undefined;
|
|
7710
|
-
}[];
|
|
7711
|
-
answerField: "uri";
|
|
7712
|
-
localQueryId?: string | undefined;
|
|
7713
|
-
queryId?: string | undefined;
|
|
7714
|
-
}, {
|
|
7715
|
-
displayFields?: {
|
|
7716
|
-
label?: string | undefined;
|
|
7717
|
-
labelTranslationKey?: string | undefined;
|
|
7718
|
-
propertyName?: "displayName" | undefined;
|
|
7719
|
-
}[] | undefined;
|
|
7720
|
-
localQueryId?: string | undefined;
|
|
7721
|
-
query?: string | undefined;
|
|
7722
|
-
responseField?: "affiliations.items" | undefined;
|
|
7723
|
-
variables?: {
|
|
7724
|
-
type?: string | undefined;
|
|
7725
|
-
label?: string | undefined;
|
|
7726
|
-
labelTranslationKey?: string | undefined;
|
|
7727
|
-
minLength?: 3 | undefined;
|
|
7728
|
-
name?: "name" | undefined;
|
|
7729
|
-
}[] | undefined;
|
|
7730
|
-
queryId?: string | undefined;
|
|
7731
|
-
answerField?: "uri" | undefined;
|
|
7732
|
-
}>>;
|
|
7733
7665
|
}, "strip", z.ZodTypeAny, {
|
|
7734
|
-
type: "
|
|
7666
|
+
type: "text";
|
|
7735
7667
|
attributes: {
|
|
7736
|
-
|
|
7737
|
-
|
|
7738
|
-
labelTranslationKey?: string | undefined;
|
|
7668
|
+
help: string;
|
|
7669
|
+
labelTranslationKey: string;
|
|
7739
7670
|
};
|
|
7740
7671
|
meta: {
|
|
7741
7672
|
schemaVersion: string;
|
|
7742
7673
|
title?: string | undefined;
|
|
7743
7674
|
usageDescription?: string | undefined;
|
|
7744
7675
|
};
|
|
7745
|
-
graphQL: {
|
|
7746
|
-
displayFields: {
|
|
7747
|
-
label: string;
|
|
7748
|
-
propertyName: "displayName";
|
|
7749
|
-
labelTranslationKey?: string | undefined;
|
|
7750
|
-
}[];
|
|
7751
|
-
query: string;
|
|
7752
|
-
responseField: "affiliations.items";
|
|
7753
|
-
variables: {
|
|
7754
|
-
type: string;
|
|
7755
|
-
label: string;
|
|
7756
|
-
minLength: 3;
|
|
7757
|
-
name: "name";
|
|
7758
|
-
labelTranslationKey?: string | undefined;
|
|
7759
|
-
}[];
|
|
7760
|
-
answerField: "uri";
|
|
7761
|
-
localQueryId?: string | undefined;
|
|
7762
|
-
queryId?: string | undefined;
|
|
7763
|
-
};
|
|
7764
7676
|
}, {
|
|
7765
|
-
type: "
|
|
7677
|
+
type: "text";
|
|
7766
7678
|
attributes?: {
|
|
7767
|
-
label?: string | undefined;
|
|
7768
7679
|
help?: string | undefined;
|
|
7769
7680
|
labelTranslationKey?: string | undefined;
|
|
7770
7681
|
} | undefined;
|
|
@@ -7773,26 +7684,63 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7773
7684
|
title?: string | undefined;
|
|
7774
7685
|
usageDescription?: string | undefined;
|
|
7775
7686
|
} | undefined;
|
|
7776
|
-
|
|
7777
|
-
|
|
7778
|
-
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
|
|
7785
|
-
|
|
7786
|
-
|
|
7787
|
-
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
7793
|
-
|
|
7687
|
+
}>>;
|
|
7688
|
+
}, "strip", z.ZodTypeAny, {
|
|
7689
|
+
meta: {
|
|
7690
|
+
schemaVersion: string;
|
|
7691
|
+
labelTranslationKey?: string | undefined;
|
|
7692
|
+
};
|
|
7693
|
+
heading: string;
|
|
7694
|
+
required: true;
|
|
7695
|
+
enabled: boolean;
|
|
7696
|
+
content: {
|
|
7697
|
+
type: "text";
|
|
7698
|
+
attributes: {
|
|
7699
|
+
help: string;
|
|
7700
|
+
labelTranslationKey: string;
|
|
7701
|
+
};
|
|
7702
|
+
meta: {
|
|
7703
|
+
schemaVersion: string;
|
|
7704
|
+
title?: string | undefined;
|
|
7705
|
+
usageDescription?: string | undefined;
|
|
7706
|
+
};
|
|
7707
|
+
};
|
|
7708
|
+
}, {
|
|
7709
|
+
required: true;
|
|
7710
|
+
meta?: {
|
|
7711
|
+
schemaVersion?: string | undefined;
|
|
7712
|
+
labelTranslationKey?: string | undefined;
|
|
7713
|
+
} | undefined;
|
|
7714
|
+
heading?: string | undefined;
|
|
7715
|
+
enabled?: boolean | undefined;
|
|
7716
|
+
content?: {
|
|
7717
|
+
type: "text";
|
|
7718
|
+
attributes?: {
|
|
7719
|
+
help?: string | undefined;
|
|
7720
|
+
labelTranslationKey?: string | undefined;
|
|
7794
7721
|
} | undefined;
|
|
7795
|
-
|
|
7722
|
+
meta?: {
|
|
7723
|
+
schemaVersion?: string | undefined;
|
|
7724
|
+
title?: string | undefined;
|
|
7725
|
+
usageDescription?: string | undefined;
|
|
7726
|
+
} | undefined;
|
|
7727
|
+
} | undefined;
|
|
7728
|
+
}>, z.ZodObject<{
|
|
7729
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
7730
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7731
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
7732
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7733
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7734
|
+
}, "strip", z.ZodTypeAny, {
|
|
7735
|
+
schemaVersion: string;
|
|
7736
|
+
labelTranslationKey?: string | undefined;
|
|
7737
|
+
}, {
|
|
7738
|
+
schemaVersion?: string | undefined;
|
|
7739
|
+
labelTranslationKey?: string | undefined;
|
|
7740
|
+
}>>;
|
|
7741
|
+
} & {
|
|
7742
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
7743
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
7796
7744
|
meta: z.ZodDefault<z.ZodObject<{
|
|
7797
7745
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7798
7746
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -7806,32 +7754,23 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7806
7754
|
title?: string | undefined;
|
|
7807
7755
|
usageDescription?: string | undefined;
|
|
7808
7756
|
}>>;
|
|
7757
|
+
type: z.ZodLiteral<"textArea">;
|
|
7809
7758
|
} & {
|
|
7810
|
-
type: z.ZodLiteral<"boolean">;
|
|
7811
7759
|
attributes: z.ZodDefault<z.ZodObject<{
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7815
|
-
} & {
|
|
7816
|
-
checked: z.ZodDefault<z.ZodBoolean>;
|
|
7760
|
+
help: z.ZodDefault<z.ZodString>;
|
|
7761
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
7817
7762
|
}, "strip", z.ZodTypeAny, {
|
|
7818
|
-
|
|
7819
|
-
|
|
7820
|
-
help?: string | undefined;
|
|
7821
|
-
labelTranslationKey?: string | undefined;
|
|
7763
|
+
help: string;
|
|
7764
|
+
labelTranslationKey: string;
|
|
7822
7765
|
}, {
|
|
7823
|
-
label?: string | undefined;
|
|
7824
7766
|
help?: string | undefined;
|
|
7825
7767
|
labelTranslationKey?: string | undefined;
|
|
7826
|
-
checked?: boolean | undefined;
|
|
7827
7768
|
}>>;
|
|
7828
7769
|
}, "strip", z.ZodTypeAny, {
|
|
7829
|
-
type: "
|
|
7770
|
+
type: "textArea";
|
|
7830
7771
|
attributes: {
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
help?: string | undefined;
|
|
7834
|
-
labelTranslationKey?: string | undefined;
|
|
7772
|
+
help: string;
|
|
7773
|
+
labelTranslationKey: string;
|
|
7835
7774
|
};
|
|
7836
7775
|
meta: {
|
|
7837
7776
|
schemaVersion: string;
|
|
@@ -7839,58 +7778,112 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7839
7778
|
usageDescription?: string | undefined;
|
|
7840
7779
|
};
|
|
7841
7780
|
}, {
|
|
7842
|
-
type: "
|
|
7781
|
+
type: "textArea";
|
|
7843
7782
|
attributes?: {
|
|
7844
|
-
label?: string | undefined;
|
|
7845
7783
|
help?: string | undefined;
|
|
7846
7784
|
labelTranslationKey?: string | undefined;
|
|
7847
|
-
checked?: boolean | undefined;
|
|
7848
7785
|
} | undefined;
|
|
7849
7786
|
meta?: {
|
|
7850
7787
|
schemaVersion?: string | undefined;
|
|
7851
7788
|
title?: string | undefined;
|
|
7852
7789
|
usageDescription?: string | undefined;
|
|
7853
7790
|
} | undefined;
|
|
7854
|
-
}
|
|
7855
|
-
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
|
|
7791
|
+
}>>;
|
|
7792
|
+
}, "strip", z.ZodTypeAny, {
|
|
7793
|
+
meta: {
|
|
7794
|
+
schemaVersion: string;
|
|
7795
|
+
labelTranslationKey?: string | undefined;
|
|
7796
|
+
};
|
|
7797
|
+
heading: string;
|
|
7798
|
+
required: boolean;
|
|
7799
|
+
enabled: boolean;
|
|
7800
|
+
content: {
|
|
7801
|
+
type: "textArea";
|
|
7802
|
+
attributes: {
|
|
7803
|
+
help: string;
|
|
7804
|
+
labelTranslationKey: string;
|
|
7805
|
+
};
|
|
7806
|
+
meta: {
|
|
7860
7807
|
schemaVersion: string;
|
|
7861
7808
|
title?: string | undefined;
|
|
7862
7809
|
usageDescription?: string | undefined;
|
|
7863
|
-
}
|
|
7864
|
-
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
|
|
7868
|
-
|
|
7869
|
-
|
|
7870
|
-
|
|
7871
|
-
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
|
|
7810
|
+
};
|
|
7811
|
+
};
|
|
7812
|
+
}, {
|
|
7813
|
+
meta?: {
|
|
7814
|
+
schemaVersion?: string | undefined;
|
|
7815
|
+
labelTranslationKey?: string | undefined;
|
|
7816
|
+
} | undefined;
|
|
7817
|
+
heading?: string | undefined;
|
|
7818
|
+
required?: boolean | undefined;
|
|
7819
|
+
enabled?: boolean | undefined;
|
|
7820
|
+
content?: {
|
|
7821
|
+
type: "textArea";
|
|
7822
|
+
attributes?: {
|
|
7823
|
+
help?: string | undefined;
|
|
7824
|
+
labelTranslationKey?: string | undefined;
|
|
7825
|
+
} | undefined;
|
|
7826
|
+
meta?: {
|
|
7827
|
+
schemaVersion?: string | undefined;
|
|
7828
|
+
title?: string | undefined;
|
|
7829
|
+
usageDescription?: string | undefined;
|
|
7830
|
+
} | undefined;
|
|
7831
|
+
} | undefined;
|
|
7832
|
+
}>, z.ZodObject<{
|
|
7833
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7834
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
7835
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7836
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7837
|
+
}, "strip", z.ZodTypeAny, {
|
|
7838
|
+
schemaVersion: string;
|
|
7839
|
+
labelTranslationKey?: string | undefined;
|
|
7840
|
+
}, {
|
|
7841
|
+
schemaVersion?: string | undefined;
|
|
7842
|
+
labelTranslationKey?: string | undefined;
|
|
7843
|
+
}>>;
|
|
7844
|
+
} & {
|
|
7845
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
7846
|
+
required: z.ZodLiteral<true>;
|
|
7847
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
7848
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
7849
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7850
|
+
title: z.ZodOptional<z.ZodString>;
|
|
7851
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
7852
|
+
}, "strip", z.ZodTypeAny, {
|
|
7853
|
+
schemaVersion: string;
|
|
7854
|
+
title?: string | undefined;
|
|
7855
|
+
usageDescription?: string | undefined;
|
|
7856
|
+
}, {
|
|
7857
|
+
schemaVersion?: string | undefined;
|
|
7858
|
+
title?: string | undefined;
|
|
7859
|
+
usageDescription?: string | undefined;
|
|
7860
|
+
}>>;
|
|
7861
|
+
type: z.ZodLiteral<"selectBox">;
|
|
7862
|
+
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
7863
|
+
label: z.ZodDefault<z.ZodString>;
|
|
7864
|
+
value: z.ZodDefault<z.ZodString>;
|
|
7865
|
+
} & {
|
|
7866
|
+
selected: z.ZodDefault<z.ZodBoolean>;
|
|
7867
|
+
}, "strip", z.ZodTypeAny, {
|
|
7868
|
+
value: string;
|
|
7869
|
+
label: string;
|
|
7870
|
+
selected: boolean;
|
|
7879
7871
|
}, {
|
|
7880
7872
|
value?: string | undefined;
|
|
7881
7873
|
label?: string | undefined;
|
|
7882
|
-
|
|
7874
|
+
selected?: boolean | undefined;
|
|
7883
7875
|
}>, "many">>;
|
|
7876
|
+
} & {
|
|
7884
7877
|
attributes: z.ZodDefault<z.ZodObject<{
|
|
7885
|
-
|
|
7886
|
-
help: z.
|
|
7887
|
-
labelTranslationKey: z.
|
|
7878
|
+
multiple: z.ZodLiteral<false>;
|
|
7879
|
+
help: z.ZodDefault<z.ZodString>;
|
|
7880
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
7888
7881
|
}, "strip", z.ZodTypeAny, {
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
7882
|
+
help: string;
|
|
7883
|
+
labelTranslationKey: string;
|
|
7884
|
+
multiple: false;
|
|
7892
7885
|
}, {
|
|
7893
|
-
|
|
7886
|
+
multiple: false;
|
|
7894
7887
|
help?: string | undefined;
|
|
7895
7888
|
labelTranslationKey?: string | undefined;
|
|
7896
7889
|
}>>;
|
|
@@ -7898,13 +7891,13 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7898
7891
|
options: {
|
|
7899
7892
|
value: string;
|
|
7900
7893
|
label: string;
|
|
7901
|
-
|
|
7894
|
+
selected: boolean;
|
|
7902
7895
|
}[];
|
|
7903
|
-
type: "
|
|
7896
|
+
type: "selectBox";
|
|
7904
7897
|
attributes: {
|
|
7905
|
-
|
|
7906
|
-
|
|
7907
|
-
|
|
7898
|
+
help: string;
|
|
7899
|
+
labelTranslationKey: string;
|
|
7900
|
+
multiple: false;
|
|
7908
7901
|
};
|
|
7909
7902
|
meta: {
|
|
7910
7903
|
schemaVersion: string;
|
|
@@ -7912,14 +7905,14 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7912
7905
|
usageDescription?: string | undefined;
|
|
7913
7906
|
};
|
|
7914
7907
|
}, {
|
|
7915
|
-
type: "
|
|
7908
|
+
type: "selectBox";
|
|
7916
7909
|
options?: {
|
|
7917
7910
|
value?: string | undefined;
|
|
7918
7911
|
label?: string | undefined;
|
|
7919
|
-
|
|
7912
|
+
selected?: boolean | undefined;
|
|
7920
7913
|
}[] | undefined;
|
|
7921
7914
|
attributes?: {
|
|
7922
|
-
|
|
7915
|
+
multiple: false;
|
|
7923
7916
|
help?: string | undefined;
|
|
7924
7917
|
labelTranslationKey?: string | undefined;
|
|
7925
7918
|
} | undefined;
|
|
@@ -7928,82 +7921,75 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
7928
7921
|
title?: string | undefined;
|
|
7929
7922
|
usageDescription?: string | undefined;
|
|
7930
7923
|
} | undefined;
|
|
7931
|
-
}
|
|
7932
|
-
|
|
7933
|
-
|
|
7934
|
-
|
|
7935
|
-
|
|
7936
|
-
|
|
7937
|
-
|
|
7938
|
-
|
|
7939
|
-
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
type:
|
|
7947
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
7948
|
-
label: z.ZodOptional<z.ZodString>;
|
|
7949
|
-
help: z.ZodOptional<z.ZodString>;
|
|
7950
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7951
|
-
} & {
|
|
7952
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
7953
|
-
min: z.ZodDefault<z.ZodNumber>;
|
|
7954
|
-
step: z.ZodDefault<z.ZodNumber>;
|
|
7955
|
-
} & {
|
|
7956
|
-
denomination: z.ZodDefault<z.ZodString>;
|
|
7957
|
-
}, "strip", z.ZodTypeAny, {
|
|
7958
|
-
min: number;
|
|
7959
|
-
step: number;
|
|
7960
|
-
denomination: string;
|
|
7961
|
-
label?: string | undefined;
|
|
7962
|
-
help?: string | undefined;
|
|
7963
|
-
labelTranslationKey?: string | undefined;
|
|
7964
|
-
max?: number | undefined;
|
|
7965
|
-
}, {
|
|
7966
|
-
label?: string | undefined;
|
|
7967
|
-
help?: string | undefined;
|
|
7968
|
-
labelTranslationKey?: string | undefined;
|
|
7969
|
-
max?: number | undefined;
|
|
7970
|
-
min?: number | undefined;
|
|
7971
|
-
step?: number | undefined;
|
|
7972
|
-
denomination?: string | undefined;
|
|
7973
|
-
}>>;
|
|
7974
|
-
}, "strip", z.ZodTypeAny, {
|
|
7975
|
-
type: "currency";
|
|
7924
|
+
}>>;
|
|
7925
|
+
}, "strip", z.ZodTypeAny, {
|
|
7926
|
+
meta: {
|
|
7927
|
+
schemaVersion: string;
|
|
7928
|
+
labelTranslationKey?: string | undefined;
|
|
7929
|
+
};
|
|
7930
|
+
heading: string;
|
|
7931
|
+
required: true;
|
|
7932
|
+
enabled: boolean;
|
|
7933
|
+
content: {
|
|
7934
|
+
options: {
|
|
7935
|
+
value: string;
|
|
7936
|
+
label: string;
|
|
7937
|
+
selected: boolean;
|
|
7938
|
+
}[];
|
|
7939
|
+
type: "selectBox";
|
|
7976
7940
|
attributes: {
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
label?: string | undefined;
|
|
7981
|
-
help?: string | undefined;
|
|
7982
|
-
labelTranslationKey?: string | undefined;
|
|
7983
|
-
max?: number | undefined;
|
|
7941
|
+
help: string;
|
|
7942
|
+
labelTranslationKey: string;
|
|
7943
|
+
multiple: false;
|
|
7984
7944
|
};
|
|
7985
7945
|
meta: {
|
|
7986
7946
|
schemaVersion: string;
|
|
7987
7947
|
title?: string | undefined;
|
|
7988
7948
|
usageDescription?: string | undefined;
|
|
7989
7949
|
};
|
|
7990
|
-
}
|
|
7991
|
-
|
|
7992
|
-
|
|
7950
|
+
};
|
|
7951
|
+
}, {
|
|
7952
|
+
required: true;
|
|
7953
|
+
meta?: {
|
|
7954
|
+
schemaVersion?: string | undefined;
|
|
7955
|
+
labelTranslationKey?: string | undefined;
|
|
7956
|
+
} | undefined;
|
|
7957
|
+
heading?: string | undefined;
|
|
7958
|
+
enabled?: boolean | undefined;
|
|
7959
|
+
content?: {
|
|
7960
|
+
type: "selectBox";
|
|
7961
|
+
options?: {
|
|
7962
|
+
value?: string | undefined;
|
|
7993
7963
|
label?: string | undefined;
|
|
7964
|
+
selected?: boolean | undefined;
|
|
7965
|
+
}[] | undefined;
|
|
7966
|
+
attributes?: {
|
|
7967
|
+
multiple: false;
|
|
7994
7968
|
help?: string | undefined;
|
|
7995
7969
|
labelTranslationKey?: string | undefined;
|
|
7996
|
-
max?: number | undefined;
|
|
7997
|
-
min?: number | undefined;
|
|
7998
|
-
step?: number | undefined;
|
|
7999
|
-
denomination?: string | undefined;
|
|
8000
7970
|
} | undefined;
|
|
8001
7971
|
meta?: {
|
|
8002
7972
|
schemaVersion?: string | undefined;
|
|
8003
7973
|
title?: string | undefined;
|
|
8004
7974
|
usageDescription?: string | undefined;
|
|
8005
7975
|
} | undefined;
|
|
8006
|
-
}
|
|
7976
|
+
} | undefined;
|
|
7977
|
+
}>, z.ZodObject<{
|
|
7978
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
7979
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
7980
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
7981
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
7982
|
+
}, "strip", z.ZodTypeAny, {
|
|
7983
|
+
schemaVersion: string;
|
|
7984
|
+
labelTranslationKey?: string | undefined;
|
|
7985
|
+
}, {
|
|
7986
|
+
schemaVersion?: string | undefined;
|
|
7987
|
+
labelTranslationKey?: string | undefined;
|
|
7988
|
+
}>>;
|
|
7989
|
+
} & {
|
|
7990
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
7991
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7992
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
8007
7993
|
meta: z.ZodDefault<z.ZodObject<{
|
|
8008
7994
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8009
7995
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -8017,40 +8003,37 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8017
8003
|
title?: string | undefined;
|
|
8018
8004
|
usageDescription?: string | undefined;
|
|
8019
8005
|
}>>;
|
|
8006
|
+
type: z.ZodLiteral<"checkBoxes">;
|
|
8020
8007
|
} & {
|
|
8021
|
-
type: z.ZodLiteral<"date">;
|
|
8022
8008
|
attributes: z.ZodDefault<z.ZodObject<{
|
|
8023
|
-
|
|
8024
|
-
|
|
8025
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8026
|
-
} & {
|
|
8027
|
-
max: z.ZodOptional<z.ZodString>;
|
|
8028
|
-
min: z.ZodOptional<z.ZodString>;
|
|
8029
|
-
step: z.ZodDefault<z.ZodNumber>;
|
|
8009
|
+
help: z.ZodDefault<z.ZodString>;
|
|
8010
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
8030
8011
|
}, "strip", z.ZodTypeAny, {
|
|
8031
|
-
|
|
8032
|
-
|
|
8033
|
-
help?: string | undefined;
|
|
8034
|
-
labelTranslationKey?: string | undefined;
|
|
8035
|
-
max?: string | undefined;
|
|
8036
|
-
min?: string | undefined;
|
|
8012
|
+
help: string;
|
|
8013
|
+
labelTranslationKey: string;
|
|
8037
8014
|
}, {
|
|
8038
|
-
label?: string | undefined;
|
|
8039
8015
|
help?: string | undefined;
|
|
8040
8016
|
labelTranslationKey?: string | undefined;
|
|
8041
|
-
max?: string | undefined;
|
|
8042
|
-
min?: string | undefined;
|
|
8043
|
-
step?: number | undefined;
|
|
8044
8017
|
}>>;
|
|
8018
|
+
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8019
|
+
label: z.ZodString;
|
|
8020
|
+
value: z.ZodString;
|
|
8021
|
+
}, "strip", z.ZodTypeAny, {
|
|
8022
|
+
value: string;
|
|
8023
|
+
label: string;
|
|
8024
|
+
}, {
|
|
8025
|
+
value: string;
|
|
8026
|
+
label: string;
|
|
8027
|
+
}>, "many">>;
|
|
8045
8028
|
}, "strip", z.ZodTypeAny, {
|
|
8046
|
-
|
|
8029
|
+
options: {
|
|
8030
|
+
value: string;
|
|
8031
|
+
label: string;
|
|
8032
|
+
}[];
|
|
8033
|
+
type: "checkBoxes";
|
|
8047
8034
|
attributes: {
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
help?: string | undefined;
|
|
8051
|
-
labelTranslationKey?: string | undefined;
|
|
8052
|
-
max?: string | undefined;
|
|
8053
|
-
min?: string | undefined;
|
|
8035
|
+
help: string;
|
|
8036
|
+
labelTranslationKey: string;
|
|
8054
8037
|
};
|
|
8055
8038
|
meta: {
|
|
8056
8039
|
schemaVersion: string;
|
|
@@ -8058,165 +8041,60 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8058
8041
|
usageDescription?: string | undefined;
|
|
8059
8042
|
};
|
|
8060
8043
|
}, {
|
|
8061
|
-
type: "
|
|
8044
|
+
type: "checkBoxes";
|
|
8045
|
+
options?: {
|
|
8046
|
+
value: string;
|
|
8047
|
+
label: string;
|
|
8048
|
+
}[] | undefined;
|
|
8062
8049
|
attributes?: {
|
|
8063
|
-
label?: string | undefined;
|
|
8064
8050
|
help?: string | undefined;
|
|
8065
8051
|
labelTranslationKey?: string | undefined;
|
|
8066
|
-
max?: string | undefined;
|
|
8067
|
-
min?: string | undefined;
|
|
8068
|
-
step?: number | undefined;
|
|
8069
8052
|
} | undefined;
|
|
8070
8053
|
meta?: {
|
|
8071
8054
|
schemaVersion?: string | undefined;
|
|
8072
8055
|
title?: string | undefined;
|
|
8073
8056
|
usageDescription?: string | undefined;
|
|
8074
8057
|
} | undefined;
|
|
8075
|
-
}
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8086
|
-
|
|
8087
|
-
|
|
8088
|
-
}
|
|
8089
|
-
|
|
8090
|
-
type: z.ZodLiteral<"dateRange">;
|
|
8091
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
8092
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8093
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8094
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8095
|
-
}, "strip", z.ZodTypeAny, {
|
|
8096
|
-
label?: string | undefined;
|
|
8097
|
-
help?: string | undefined;
|
|
8098
|
-
labelTranslationKey?: string | undefined;
|
|
8099
|
-
}, {
|
|
8100
|
-
label?: string | undefined;
|
|
8101
|
-
help?: string | undefined;
|
|
8102
|
-
labelTranslationKey?: string | undefined;
|
|
8103
|
-
}>>;
|
|
8104
|
-
columns: z.ZodDefault<z.ZodObject<{
|
|
8105
|
-
start: z.ZodDefault<z.ZodObject<{
|
|
8106
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8107
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8108
|
-
max: z.ZodOptional<z.ZodString>;
|
|
8109
|
-
min: z.ZodOptional<z.ZodString>;
|
|
8110
|
-
step: z.ZodDefault<z.ZodNumber>;
|
|
8111
|
-
} & {
|
|
8112
|
-
label: z.ZodDefault<z.ZodString>;
|
|
8113
|
-
}, "strip", z.ZodTypeAny, {
|
|
8114
|
-
label: string;
|
|
8115
|
-
step: number;
|
|
8116
|
-
help?: string | undefined;
|
|
8117
|
-
labelTranslationKey?: string | undefined;
|
|
8118
|
-
max?: string | undefined;
|
|
8119
|
-
min?: string | undefined;
|
|
8120
|
-
}, {
|
|
8121
|
-
label?: string | undefined;
|
|
8122
|
-
help?: string | undefined;
|
|
8123
|
-
labelTranslationKey?: string | undefined;
|
|
8124
|
-
max?: string | undefined;
|
|
8125
|
-
min?: string | undefined;
|
|
8126
|
-
step?: number | undefined;
|
|
8127
|
-
}>>;
|
|
8128
|
-
end: z.ZodDefault<z.ZodObject<{
|
|
8129
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8130
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8131
|
-
max: z.ZodOptional<z.ZodString>;
|
|
8132
|
-
min: z.ZodOptional<z.ZodString>;
|
|
8133
|
-
step: z.ZodDefault<z.ZodNumber>;
|
|
8134
|
-
} & {
|
|
8135
|
-
label: z.ZodDefault<z.ZodString>;
|
|
8136
|
-
}, "strip", z.ZodTypeAny, {
|
|
8137
|
-
label: string;
|
|
8138
|
-
step: number;
|
|
8139
|
-
help?: string | undefined;
|
|
8140
|
-
labelTranslationKey?: string | undefined;
|
|
8141
|
-
max?: string | undefined;
|
|
8142
|
-
min?: string | undefined;
|
|
8143
|
-
}, {
|
|
8144
|
-
label?: string | undefined;
|
|
8145
|
-
help?: string | undefined;
|
|
8146
|
-
labelTranslationKey?: string | undefined;
|
|
8147
|
-
max?: string | undefined;
|
|
8148
|
-
min?: string | undefined;
|
|
8149
|
-
step?: number | undefined;
|
|
8150
|
-
}>>;
|
|
8151
|
-
}, "strip", z.ZodTypeAny, {
|
|
8152
|
-
start: {
|
|
8153
|
-
label: string;
|
|
8154
|
-
step: number;
|
|
8155
|
-
help?: string | undefined;
|
|
8156
|
-
labelTranslationKey?: string | undefined;
|
|
8157
|
-
max?: string | undefined;
|
|
8158
|
-
min?: string | undefined;
|
|
8159
|
-
};
|
|
8160
|
-
end: {
|
|
8161
|
-
label: string;
|
|
8162
|
-
step: number;
|
|
8163
|
-
help?: string | undefined;
|
|
8164
|
-
labelTranslationKey?: string | undefined;
|
|
8165
|
-
max?: string | undefined;
|
|
8166
|
-
min?: string | undefined;
|
|
8167
|
-
};
|
|
8168
|
-
}, {
|
|
8169
|
-
start?: {
|
|
8170
|
-
label?: string | undefined;
|
|
8171
|
-
help?: string | undefined;
|
|
8172
|
-
labelTranslationKey?: string | undefined;
|
|
8173
|
-
max?: string | undefined;
|
|
8174
|
-
min?: string | undefined;
|
|
8175
|
-
step?: number | undefined;
|
|
8176
|
-
} | undefined;
|
|
8177
|
-
end?: {
|
|
8178
|
-
label?: string | undefined;
|
|
8179
|
-
help?: string | undefined;
|
|
8180
|
-
labelTranslationKey?: string | undefined;
|
|
8181
|
-
max?: string | undefined;
|
|
8182
|
-
min?: string | undefined;
|
|
8183
|
-
step?: number | undefined;
|
|
8184
|
-
} | undefined;
|
|
8185
|
-
}>>;
|
|
8186
|
-
}, "strip", z.ZodTypeAny, {
|
|
8187
|
-
type: "dateRange";
|
|
8058
|
+
}>>;
|
|
8059
|
+
}, "strip", z.ZodTypeAny, {
|
|
8060
|
+
meta: {
|
|
8061
|
+
schemaVersion: string;
|
|
8062
|
+
labelTranslationKey?: string | undefined;
|
|
8063
|
+
};
|
|
8064
|
+
heading: string;
|
|
8065
|
+
required: boolean;
|
|
8066
|
+
enabled: boolean;
|
|
8067
|
+
content: {
|
|
8068
|
+
options: {
|
|
8069
|
+
value: string;
|
|
8070
|
+
label: string;
|
|
8071
|
+
}[];
|
|
8072
|
+
type: "checkBoxes";
|
|
8188
8073
|
attributes: {
|
|
8189
|
-
|
|
8190
|
-
|
|
8191
|
-
labelTranslationKey?: string | undefined;
|
|
8074
|
+
help: string;
|
|
8075
|
+
labelTranslationKey: string;
|
|
8192
8076
|
};
|
|
8193
8077
|
meta: {
|
|
8194
8078
|
schemaVersion: string;
|
|
8195
8079
|
title?: string | undefined;
|
|
8196
8080
|
usageDescription?: string | undefined;
|
|
8197
8081
|
};
|
|
8198
|
-
|
|
8199
|
-
|
|
8200
|
-
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
8204
|
-
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8212
|
-
|
|
8213
|
-
min?: string | undefined;
|
|
8214
|
-
};
|
|
8215
|
-
};
|
|
8216
|
-
}, {
|
|
8217
|
-
type: "dateRange";
|
|
8082
|
+
};
|
|
8083
|
+
}, {
|
|
8084
|
+
meta?: {
|
|
8085
|
+
schemaVersion?: string | undefined;
|
|
8086
|
+
labelTranslationKey?: string | undefined;
|
|
8087
|
+
} | undefined;
|
|
8088
|
+
heading?: string | undefined;
|
|
8089
|
+
required?: boolean | undefined;
|
|
8090
|
+
enabled?: boolean | undefined;
|
|
8091
|
+
content?: {
|
|
8092
|
+
type: "checkBoxes";
|
|
8093
|
+
options?: {
|
|
8094
|
+
value: string;
|
|
8095
|
+
label: string;
|
|
8096
|
+
}[] | undefined;
|
|
8218
8097
|
attributes?: {
|
|
8219
|
-
label?: string | undefined;
|
|
8220
8098
|
help?: string | undefined;
|
|
8221
8099
|
labelTranslationKey?: string | undefined;
|
|
8222
8100
|
} | undefined;
|
|
@@ -8225,25 +8103,23 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8225
8103
|
title?: string | undefined;
|
|
8226
8104
|
usageDescription?: string | undefined;
|
|
8227
8105
|
} | undefined;
|
|
8228
|
-
|
|
8229
|
-
|
|
8230
|
-
|
|
8231
|
-
|
|
8232
|
-
|
|
8233
|
-
|
|
8234
|
-
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
} | undefined;
|
|
8246
|
-
}>, z.ZodObject<{
|
|
8106
|
+
} | undefined;
|
|
8107
|
+
}>, z.ZodObject<{
|
|
8108
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
8109
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8110
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8111
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8112
|
+
}, "strip", z.ZodTypeAny, {
|
|
8113
|
+
schemaVersion: string;
|
|
8114
|
+
labelTranslationKey?: string | undefined;
|
|
8115
|
+
}, {
|
|
8116
|
+
schemaVersion?: string | undefined;
|
|
8117
|
+
labelTranslationKey?: string | undefined;
|
|
8118
|
+
}>>;
|
|
8119
|
+
} & {
|
|
8120
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
8121
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8122
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
8247
8123
|
meta: z.ZodDefault<z.ZodObject<{
|
|
8248
8124
|
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8249
8125
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -8257,45 +8133,41 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8257
8133
|
title?: string | undefined;
|
|
8258
8134
|
usageDescription?: string | undefined;
|
|
8259
8135
|
}>>;
|
|
8136
|
+
type: z.ZodLiteral<"selectBox">;
|
|
8260
8137
|
} & {
|
|
8261
|
-
type: z.ZodLiteral<"email">;
|
|
8262
8138
|
attributes: z.ZodDefault<z.ZodObject<{
|
|
8263
|
-
|
|
8264
|
-
help: z.
|
|
8265
|
-
labelTranslationKey: z.
|
|
8266
|
-
} & {
|
|
8267
|
-
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
8268
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
8269
|
-
pattern: z.ZodOptional<z.ZodString>;
|
|
8270
|
-
} & {
|
|
8271
|
-
multiple: z.ZodDefault<z.ZodBoolean>;
|
|
8139
|
+
multiple: z.ZodLiteral<false>;
|
|
8140
|
+
help: z.ZodDefault<z.ZodString>;
|
|
8141
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
8272
8142
|
}, "strip", z.ZodTypeAny, {
|
|
8273
|
-
|
|
8274
|
-
|
|
8275
|
-
|
|
8276
|
-
help?: string | undefined;
|
|
8277
|
-
labelTranslationKey?: string | undefined;
|
|
8278
|
-
minLength?: number | undefined;
|
|
8279
|
-
pattern?: string | undefined;
|
|
8143
|
+
help: string;
|
|
8144
|
+
labelTranslationKey: string;
|
|
8145
|
+
multiple: false;
|
|
8280
8146
|
}, {
|
|
8281
|
-
|
|
8147
|
+
multiple: false;
|
|
8282
8148
|
help?: string | undefined;
|
|
8283
8149
|
labelTranslationKey?: string | undefined;
|
|
8284
|
-
maxLength?: number | undefined;
|
|
8285
|
-
minLength?: number | undefined;
|
|
8286
|
-
pattern?: string | undefined;
|
|
8287
|
-
multiple?: boolean | undefined;
|
|
8288
8150
|
}>>;
|
|
8151
|
+
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8152
|
+
label: z.ZodString;
|
|
8153
|
+
value: z.ZodString;
|
|
8154
|
+
}, "strip", z.ZodTypeAny, {
|
|
8155
|
+
value: string;
|
|
8156
|
+
label: string;
|
|
8157
|
+
}, {
|
|
8158
|
+
value: string;
|
|
8159
|
+
label: string;
|
|
8160
|
+
}>, "many">>;
|
|
8289
8161
|
}, "strip", z.ZodTypeAny, {
|
|
8290
|
-
|
|
8162
|
+
options: {
|
|
8163
|
+
value: string;
|
|
8164
|
+
label: string;
|
|
8165
|
+
}[];
|
|
8166
|
+
type: "selectBox";
|
|
8291
8167
|
attributes: {
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
|
|
8295
|
-
help?: string | undefined;
|
|
8296
|
-
labelTranslationKey?: string | undefined;
|
|
8297
|
-
minLength?: number | undefined;
|
|
8298
|
-
pattern?: string | undefined;
|
|
8168
|
+
help: string;
|
|
8169
|
+
labelTranslationKey: string;
|
|
8170
|
+
multiple: false;
|
|
8299
8171
|
};
|
|
8300
8172
|
meta: {
|
|
8301
8173
|
schemaVersion: string;
|
|
@@ -8303,27 +8175,93 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8303
8175
|
usageDescription?: string | undefined;
|
|
8304
8176
|
};
|
|
8305
8177
|
}, {
|
|
8306
|
-
type: "
|
|
8178
|
+
type: "selectBox";
|
|
8179
|
+
options?: {
|
|
8180
|
+
value: string;
|
|
8181
|
+
label: string;
|
|
8182
|
+
}[] | undefined;
|
|
8307
8183
|
attributes?: {
|
|
8308
|
-
|
|
8184
|
+
multiple: false;
|
|
8309
8185
|
help?: string | undefined;
|
|
8310
8186
|
labelTranslationKey?: string | undefined;
|
|
8311
|
-
maxLength?: number | undefined;
|
|
8312
|
-
minLength?: number | undefined;
|
|
8313
|
-
pattern?: string | undefined;
|
|
8314
|
-
multiple?: boolean | undefined;
|
|
8315
8187
|
} | undefined;
|
|
8316
8188
|
meta?: {
|
|
8317
8189
|
schemaVersion?: string | undefined;
|
|
8318
8190
|
title?: string | undefined;
|
|
8319
8191
|
usageDescription?: string | undefined;
|
|
8320
8192
|
} | undefined;
|
|
8321
|
-
}
|
|
8322
|
-
|
|
8323
|
-
|
|
8324
|
-
|
|
8325
|
-
|
|
8326
|
-
|
|
8193
|
+
}>>;
|
|
8194
|
+
}, "strip", z.ZodTypeAny, {
|
|
8195
|
+
meta: {
|
|
8196
|
+
schemaVersion: string;
|
|
8197
|
+
labelTranslationKey?: string | undefined;
|
|
8198
|
+
};
|
|
8199
|
+
heading: string;
|
|
8200
|
+
required: boolean;
|
|
8201
|
+
enabled: boolean;
|
|
8202
|
+
content: {
|
|
8203
|
+
options: {
|
|
8204
|
+
value: string;
|
|
8205
|
+
label: string;
|
|
8206
|
+
}[];
|
|
8207
|
+
type: "selectBox";
|
|
8208
|
+
attributes: {
|
|
8209
|
+
help: string;
|
|
8210
|
+
labelTranslationKey: string;
|
|
8211
|
+
multiple: false;
|
|
8212
|
+
};
|
|
8213
|
+
meta: {
|
|
8214
|
+
schemaVersion: string;
|
|
8215
|
+
title?: string | undefined;
|
|
8216
|
+
usageDescription?: string | undefined;
|
|
8217
|
+
};
|
|
8218
|
+
};
|
|
8219
|
+
}, {
|
|
8220
|
+
meta?: {
|
|
8221
|
+
schemaVersion?: string | undefined;
|
|
8222
|
+
labelTranslationKey?: string | undefined;
|
|
8223
|
+
} | undefined;
|
|
8224
|
+
heading?: string | undefined;
|
|
8225
|
+
required?: boolean | undefined;
|
|
8226
|
+
enabled?: boolean | undefined;
|
|
8227
|
+
content?: {
|
|
8228
|
+
type: "selectBox";
|
|
8229
|
+
options?: {
|
|
8230
|
+
value: string;
|
|
8231
|
+
label: string;
|
|
8232
|
+
}[] | undefined;
|
|
8233
|
+
attributes?: {
|
|
8234
|
+
multiple: false;
|
|
8235
|
+
help?: string | undefined;
|
|
8236
|
+
labelTranslationKey?: string | undefined;
|
|
8237
|
+
} | undefined;
|
|
8238
|
+
meta?: {
|
|
8239
|
+
schemaVersion?: string | undefined;
|
|
8240
|
+
title?: string | undefined;
|
|
8241
|
+
usageDescription?: string | undefined;
|
|
8242
|
+
} | undefined;
|
|
8243
|
+
} | undefined;
|
|
8244
|
+
}>, z.ZodObject<{
|
|
8245
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
8246
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8247
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8248
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8249
|
+
}, "strip", z.ZodTypeAny, {
|
|
8250
|
+
schemaVersion: string;
|
|
8251
|
+
labelTranslationKey?: string | undefined;
|
|
8252
|
+
}, {
|
|
8253
|
+
schemaVersion?: string | undefined;
|
|
8254
|
+
labelTranslationKey?: string | undefined;
|
|
8255
|
+
}>>;
|
|
8256
|
+
} & {
|
|
8257
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
8258
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8259
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
8260
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8261
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8262
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8263
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8264
|
+
}, "strip", z.ZodTypeAny, {
|
|
8327
8265
|
schemaVersion: string;
|
|
8328
8266
|
title?: string | undefined;
|
|
8329
8267
|
usageDescription?: string | undefined;
|
|
@@ -8332,138 +8270,32 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8332
8270
|
title?: string | undefined;
|
|
8333
8271
|
usageDescription?: string | undefined;
|
|
8334
8272
|
}>>;
|
|
8273
|
+
type: z.ZodLiteral<"date">;
|
|
8335
8274
|
} & {
|
|
8336
|
-
type: z.ZodLiteral<"licenseSearch">;
|
|
8337
8275
|
attributes: z.ZodDefault<z.ZodObject<{
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8276
|
+
help: z.ZodDefault<z.ZodString>;
|
|
8277
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
8341
8278
|
}, "strip", z.ZodTypeAny, {
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
|
-
labelTranslationKey?: string | undefined;
|
|
8279
|
+
help: string;
|
|
8280
|
+
labelTranslationKey: string;
|
|
8345
8281
|
}, {
|
|
8346
|
-
label?: string | undefined;
|
|
8347
8282
|
help?: string | undefined;
|
|
8348
8283
|
labelTranslationKey?: string | undefined;
|
|
8349
8284
|
}>>;
|
|
8350
|
-
graphQL: z.ZodDefault<z.ZodObject<{
|
|
8351
|
-
localQueryId: z.ZodOptional<z.ZodString>;
|
|
8352
|
-
} & {
|
|
8353
|
-
query: z.ZodDefault<z.ZodLiteral<string>>;
|
|
8354
|
-
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
8355
|
-
variables: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8356
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
8357
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8358
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8359
|
-
name: z.ZodDefault<z.ZodString>;
|
|
8360
|
-
type: z.ZodDefault<z.ZodString>;
|
|
8361
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8362
|
-
}, "strip", z.ZodTypeAny, {
|
|
8363
|
-
type: string;
|
|
8364
|
-
name: string;
|
|
8365
|
-
label?: string | undefined;
|
|
8366
|
-
labelTranslationKey?: string | undefined;
|
|
8367
|
-
minLength?: number | undefined;
|
|
8368
|
-
defaultValue?: string | undefined;
|
|
8369
|
-
}, {
|
|
8370
|
-
type?: string | undefined;
|
|
8371
|
-
label?: string | undefined;
|
|
8372
|
-
labelTranslationKey?: string | undefined;
|
|
8373
|
-
minLength?: number | undefined;
|
|
8374
|
-
name?: string | undefined;
|
|
8375
|
-
defaultValue?: string | undefined;
|
|
8376
|
-
}>, "many">>;
|
|
8377
|
-
answerField: z.ZodDefault<z.ZodLiteral<"uri">>;
|
|
8378
|
-
displayFields: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8379
|
-
propertyName: z.ZodDefault<z.ZodString>;
|
|
8380
|
-
label: z.ZodDefault<z.ZodString>;
|
|
8381
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8382
|
-
}, "strip", z.ZodTypeAny, {
|
|
8383
|
-
label: string;
|
|
8384
|
-
propertyName: string;
|
|
8385
|
-
labelTranslationKey?: string | undefined;
|
|
8386
|
-
}, {
|
|
8387
|
-
label?: string | undefined;
|
|
8388
|
-
labelTranslationKey?: string | undefined;
|
|
8389
|
-
propertyName?: string | undefined;
|
|
8390
|
-
}>, "many">>;
|
|
8391
|
-
responseField: z.ZodDefault<z.ZodLiteral<"licenses.items">>;
|
|
8392
|
-
}, "strip", z.ZodTypeAny, {
|
|
8393
|
-
displayFields: {
|
|
8394
|
-
label: string;
|
|
8395
|
-
propertyName: string;
|
|
8396
|
-
labelTranslationKey?: string | undefined;
|
|
8397
|
-
}[];
|
|
8398
|
-
query: string;
|
|
8399
|
-
responseField: "licenses.items";
|
|
8400
|
-
variables: {
|
|
8401
|
-
type: string;
|
|
8402
|
-
name: string;
|
|
8403
|
-
label?: string | undefined;
|
|
8404
|
-
labelTranslationKey?: string | undefined;
|
|
8405
|
-
minLength?: number | undefined;
|
|
8406
|
-
defaultValue?: string | undefined;
|
|
8407
|
-
}[];
|
|
8408
|
-
answerField: "uri";
|
|
8409
|
-
localQueryId?: string | undefined;
|
|
8410
|
-
queryId?: string | undefined;
|
|
8411
|
-
}, {
|
|
8412
|
-
displayFields?: {
|
|
8413
|
-
label?: string | undefined;
|
|
8414
|
-
labelTranslationKey?: string | undefined;
|
|
8415
|
-
propertyName?: string | undefined;
|
|
8416
|
-
}[] | undefined;
|
|
8417
|
-
localQueryId?: string | undefined;
|
|
8418
|
-
query?: string | undefined;
|
|
8419
|
-
responseField?: "licenses.items" | undefined;
|
|
8420
|
-
variables?: {
|
|
8421
|
-
type?: string | undefined;
|
|
8422
|
-
label?: string | undefined;
|
|
8423
|
-
labelTranslationKey?: string | undefined;
|
|
8424
|
-
minLength?: number | undefined;
|
|
8425
|
-
name?: string | undefined;
|
|
8426
|
-
defaultValue?: string | undefined;
|
|
8427
|
-
}[] | undefined;
|
|
8428
|
-
queryId?: string | undefined;
|
|
8429
|
-
answerField?: "uri" | undefined;
|
|
8430
|
-
}>>;
|
|
8431
8285
|
}, "strip", z.ZodTypeAny, {
|
|
8432
|
-
type: "
|
|
8286
|
+
type: "date";
|
|
8433
8287
|
attributes: {
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
labelTranslationKey?: string | undefined;
|
|
8288
|
+
help: string;
|
|
8289
|
+
labelTranslationKey: string;
|
|
8437
8290
|
};
|
|
8438
8291
|
meta: {
|
|
8439
8292
|
schemaVersion: string;
|
|
8440
8293
|
title?: string | undefined;
|
|
8441
8294
|
usageDescription?: string | undefined;
|
|
8442
8295
|
};
|
|
8443
|
-
graphQL: {
|
|
8444
|
-
displayFields: {
|
|
8445
|
-
label: string;
|
|
8446
|
-
propertyName: string;
|
|
8447
|
-
labelTranslationKey?: string | undefined;
|
|
8448
|
-
}[];
|
|
8449
|
-
query: string;
|
|
8450
|
-
responseField: "licenses.items";
|
|
8451
|
-
variables: {
|
|
8452
|
-
type: string;
|
|
8453
|
-
name: string;
|
|
8454
|
-
label?: string | undefined;
|
|
8455
|
-
labelTranslationKey?: string | undefined;
|
|
8456
|
-
minLength?: number | undefined;
|
|
8457
|
-
defaultValue?: string | undefined;
|
|
8458
|
-
}[];
|
|
8459
|
-
answerField: "uri";
|
|
8460
|
-
localQueryId?: string | undefined;
|
|
8461
|
-
queryId?: string | undefined;
|
|
8462
|
-
};
|
|
8463
8296
|
}, {
|
|
8464
|
-
type: "
|
|
8297
|
+
type: "date";
|
|
8465
8298
|
attributes?: {
|
|
8466
|
-
label?: string | undefined;
|
|
8467
8299
|
help?: string | undefined;
|
|
8468
8300
|
labelTranslationKey?: string | undefined;
|
|
8469
8301
|
} | undefined;
|
|
@@ -8472,50 +8304,231 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8472
8304
|
title?: string | undefined;
|
|
8473
8305
|
usageDescription?: string | undefined;
|
|
8474
8306
|
} | undefined;
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
}[] | undefined;
|
|
8492
|
-
queryId?: string | undefined;
|
|
8493
|
-
answerField?: "uri" | undefined;
|
|
8494
|
-
} | undefined;
|
|
8495
|
-
}>, z.ZodObject<{
|
|
8496
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
8497
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8498
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8499
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8500
|
-
}, "strip", z.ZodTypeAny, {
|
|
8307
|
+
}>>;
|
|
8308
|
+
}, "strip", z.ZodTypeAny, {
|
|
8309
|
+
meta: {
|
|
8310
|
+
schemaVersion: string;
|
|
8311
|
+
labelTranslationKey?: string | undefined;
|
|
8312
|
+
};
|
|
8313
|
+
heading: string;
|
|
8314
|
+
required: boolean;
|
|
8315
|
+
enabled: boolean;
|
|
8316
|
+
content: {
|
|
8317
|
+
type: "date";
|
|
8318
|
+
attributes: {
|
|
8319
|
+
help: string;
|
|
8320
|
+
labelTranslationKey: string;
|
|
8321
|
+
};
|
|
8322
|
+
meta: {
|
|
8501
8323
|
schemaVersion: string;
|
|
8502
8324
|
title?: string | undefined;
|
|
8503
8325
|
usageDescription?: string | undefined;
|
|
8504
|
-
}
|
|
8326
|
+
};
|
|
8327
|
+
};
|
|
8328
|
+
}, {
|
|
8329
|
+
meta?: {
|
|
8330
|
+
schemaVersion?: string | undefined;
|
|
8331
|
+
labelTranslationKey?: string | undefined;
|
|
8332
|
+
} | undefined;
|
|
8333
|
+
heading?: string | undefined;
|
|
8334
|
+
required?: boolean | undefined;
|
|
8335
|
+
enabled?: boolean | undefined;
|
|
8336
|
+
content?: {
|
|
8337
|
+
type: "date";
|
|
8338
|
+
attributes?: {
|
|
8339
|
+
help?: string | undefined;
|
|
8340
|
+
labelTranslationKey?: string | undefined;
|
|
8341
|
+
} | undefined;
|
|
8342
|
+
meta?: {
|
|
8505
8343
|
schemaVersion?: string | undefined;
|
|
8506
8344
|
title?: string | undefined;
|
|
8507
8345
|
usageDescription?: string | undefined;
|
|
8508
|
-
}
|
|
8509
|
-
}
|
|
8510
|
-
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8346
|
+
} | undefined;
|
|
8347
|
+
} | undefined;
|
|
8348
|
+
}>, z.ZodObject<{
|
|
8349
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
8350
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8351
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8352
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8353
|
+
}, "strip", z.ZodTypeAny, {
|
|
8354
|
+
schemaVersion: string;
|
|
8355
|
+
labelTranslationKey?: string | undefined;
|
|
8356
|
+
}, {
|
|
8357
|
+
schemaVersion?: string | undefined;
|
|
8358
|
+
labelTranslationKey?: string | undefined;
|
|
8359
|
+
}>>;
|
|
8360
|
+
} & {
|
|
8361
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
8362
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8363
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
8364
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8365
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8366
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8367
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8368
|
+
}, "strip", z.ZodTypeAny, {
|
|
8369
|
+
schemaVersion: string;
|
|
8370
|
+
title?: string | undefined;
|
|
8371
|
+
usageDescription?: string | undefined;
|
|
8372
|
+
}, {
|
|
8373
|
+
schemaVersion?: string | undefined;
|
|
8374
|
+
title?: string | undefined;
|
|
8375
|
+
usageDescription?: string | undefined;
|
|
8376
|
+
}>>;
|
|
8377
|
+
type: z.ZodLiteral<"numberWithContext">;
|
|
8378
|
+
} & {
|
|
8379
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
8380
|
+
min: z.ZodDefault<z.ZodNumber>;
|
|
8381
|
+
help: z.ZodDefault<z.ZodString>;
|
|
8382
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
8383
|
+
context: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8384
|
+
label: z.ZodDefault<z.ZodString>;
|
|
8385
|
+
value: z.ZodDefault<z.ZodString>;
|
|
8386
|
+
}, "strip", z.ZodTypeAny, {
|
|
8387
|
+
value: string;
|
|
8388
|
+
label: string;
|
|
8389
|
+
}, {
|
|
8390
|
+
value?: string | undefined;
|
|
8391
|
+
label?: string | undefined;
|
|
8392
|
+
}>, "many">>;
|
|
8393
|
+
}, "strip", z.ZodTypeAny, {
|
|
8394
|
+
help: string;
|
|
8395
|
+
labelTranslationKey: string;
|
|
8396
|
+
context: {
|
|
8397
|
+
value: string;
|
|
8398
|
+
label: string;
|
|
8399
|
+
}[];
|
|
8400
|
+
min: number;
|
|
8401
|
+
}, {
|
|
8402
|
+
help?: string | undefined;
|
|
8403
|
+
labelTranslationKey?: string | undefined;
|
|
8404
|
+
context?: {
|
|
8405
|
+
value?: string | undefined;
|
|
8406
|
+
label?: string | undefined;
|
|
8407
|
+
}[] | undefined;
|
|
8408
|
+
min?: number | undefined;
|
|
8409
|
+
}>>;
|
|
8410
|
+
}, "strip", z.ZodTypeAny, {
|
|
8411
|
+
type: "numberWithContext";
|
|
8412
|
+
attributes: {
|
|
8413
|
+
help: string;
|
|
8414
|
+
labelTranslationKey: string;
|
|
8415
|
+
context: {
|
|
8416
|
+
value: string;
|
|
8417
|
+
label: string;
|
|
8418
|
+
}[];
|
|
8419
|
+
min: number;
|
|
8420
|
+
};
|
|
8421
|
+
meta: {
|
|
8422
|
+
schemaVersion: string;
|
|
8423
|
+
title?: string | undefined;
|
|
8424
|
+
usageDescription?: string | undefined;
|
|
8425
|
+
};
|
|
8426
|
+
}, {
|
|
8427
|
+
type: "numberWithContext";
|
|
8428
|
+
attributes?: {
|
|
8429
|
+
help?: string | undefined;
|
|
8430
|
+
labelTranslationKey?: string | undefined;
|
|
8431
|
+
context?: {
|
|
8432
|
+
value?: string | undefined;
|
|
8433
|
+
label?: string | undefined;
|
|
8434
|
+
}[] | undefined;
|
|
8435
|
+
min?: number | undefined;
|
|
8436
|
+
} | undefined;
|
|
8437
|
+
meta?: {
|
|
8438
|
+
schemaVersion?: string | undefined;
|
|
8439
|
+
title?: string | undefined;
|
|
8440
|
+
usageDescription?: string | undefined;
|
|
8441
|
+
} | undefined;
|
|
8442
|
+
}>>;
|
|
8443
|
+
}, "strip", z.ZodTypeAny, {
|
|
8444
|
+
meta: {
|
|
8445
|
+
schemaVersion: string;
|
|
8446
|
+
labelTranslationKey?: string | undefined;
|
|
8447
|
+
};
|
|
8448
|
+
heading: string;
|
|
8449
|
+
required: boolean;
|
|
8450
|
+
enabled: boolean;
|
|
8451
|
+
content: {
|
|
8452
|
+
type: "numberWithContext";
|
|
8453
|
+
attributes: {
|
|
8454
|
+
help: string;
|
|
8455
|
+
labelTranslationKey: string;
|
|
8456
|
+
context: {
|
|
8457
|
+
value: string;
|
|
8458
|
+
label: string;
|
|
8459
|
+
}[];
|
|
8460
|
+
min: number;
|
|
8461
|
+
};
|
|
8462
|
+
meta: {
|
|
8463
|
+
schemaVersion: string;
|
|
8464
|
+
title?: string | undefined;
|
|
8465
|
+
usageDescription?: string | undefined;
|
|
8466
|
+
};
|
|
8467
|
+
};
|
|
8468
|
+
}, {
|
|
8469
|
+
meta?: {
|
|
8470
|
+
schemaVersion?: string | undefined;
|
|
8471
|
+
labelTranslationKey?: string | undefined;
|
|
8472
|
+
} | undefined;
|
|
8473
|
+
heading?: string | undefined;
|
|
8474
|
+
required?: boolean | undefined;
|
|
8475
|
+
enabled?: boolean | undefined;
|
|
8476
|
+
content?: {
|
|
8477
|
+
type: "numberWithContext";
|
|
8478
|
+
attributes?: {
|
|
8479
|
+
help?: string | undefined;
|
|
8480
|
+
labelTranslationKey?: string | undefined;
|
|
8481
|
+
context?: {
|
|
8482
|
+
value?: string | undefined;
|
|
8483
|
+
label?: string | undefined;
|
|
8484
|
+
}[] | undefined;
|
|
8485
|
+
min?: number | undefined;
|
|
8486
|
+
} | undefined;
|
|
8487
|
+
meta?: {
|
|
8488
|
+
schemaVersion?: string | undefined;
|
|
8489
|
+
title?: string | undefined;
|
|
8490
|
+
usageDescription?: string | undefined;
|
|
8491
|
+
} | undefined;
|
|
8492
|
+
} | undefined;
|
|
8493
|
+
}>, z.ZodObject<{
|
|
8494
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
8495
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8496
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8497
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8498
|
+
}, "strip", z.ZodTypeAny, {
|
|
8499
|
+
schemaVersion: string;
|
|
8500
|
+
labelTranslationKey?: string | undefined;
|
|
8501
|
+
}, {
|
|
8502
|
+
schemaVersion?: string | undefined;
|
|
8503
|
+
labelTranslationKey?: string | undefined;
|
|
8504
|
+
}>>;
|
|
8505
|
+
} & {
|
|
8506
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
8507
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8508
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
8509
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8510
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8511
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8512
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8513
|
+
}, "strip", z.ZodTypeAny, {
|
|
8514
|
+
schemaVersion: string;
|
|
8515
|
+
title?: string | undefined;
|
|
8516
|
+
usageDescription?: string | undefined;
|
|
8517
|
+
}, {
|
|
8518
|
+
schemaVersion?: string | undefined;
|
|
8519
|
+
title?: string | undefined;
|
|
8520
|
+
usageDescription?: string | undefined;
|
|
8521
|
+
}>>;
|
|
8522
|
+
} & {
|
|
8523
|
+
type: z.ZodLiteral<"repositorySearch">;
|
|
8524
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
8525
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8526
|
+
help: z.ZodOptional<z.ZodString>;
|
|
8527
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8528
|
+
}, "strip", z.ZodTypeAny, {
|
|
8529
|
+
label?: string | undefined;
|
|
8530
|
+
help?: string | undefined;
|
|
8531
|
+
labelTranslationKey?: string | undefined;
|
|
8519
8532
|
}, {
|
|
8520
8533
|
label?: string | undefined;
|
|
8521
8534
|
help?: string | undefined;
|
|
@@ -8562,7 +8575,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8562
8575
|
labelTranslationKey?: string | undefined;
|
|
8563
8576
|
propertyName?: string | undefined;
|
|
8564
8577
|
}>, "many">>;
|
|
8565
|
-
responseField: z.ZodDefault<z.ZodLiteral<"
|
|
8578
|
+
responseField: z.ZodDefault<z.ZodLiteral<"repositories.items">>;
|
|
8566
8579
|
}, "strip", z.ZodTypeAny, {
|
|
8567
8580
|
displayFields: {
|
|
8568
8581
|
label: string;
|
|
@@ -8570,7 +8583,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8570
8583
|
labelTranslationKey?: string | undefined;
|
|
8571
8584
|
}[];
|
|
8572
8585
|
query: string;
|
|
8573
|
-
responseField: "
|
|
8586
|
+
responseField: "repositories.items";
|
|
8574
8587
|
variables: {
|
|
8575
8588
|
type: string;
|
|
8576
8589
|
name: string;
|
|
@@ -8590,7 +8603,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8590
8603
|
}[] | undefined;
|
|
8591
8604
|
localQueryId?: string | undefined;
|
|
8592
8605
|
query?: string | undefined;
|
|
8593
|
-
responseField?: "
|
|
8606
|
+
responseField?: "repositories.items" | undefined;
|
|
8594
8607
|
variables?: {
|
|
8595
8608
|
type?: string | undefined;
|
|
8596
8609
|
label?: string | undefined;
|
|
@@ -8603,7 +8616,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8603
8616
|
answerField?: "uri" | undefined;
|
|
8604
8617
|
}>>;
|
|
8605
8618
|
}, "strip", z.ZodTypeAny, {
|
|
8606
|
-
type: "
|
|
8619
|
+
type: "repositorySearch";
|
|
8607
8620
|
attributes: {
|
|
8608
8621
|
label?: string | undefined;
|
|
8609
8622
|
help?: string | undefined;
|
|
@@ -8621,7 +8634,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8621
8634
|
labelTranslationKey?: string | undefined;
|
|
8622
8635
|
}[];
|
|
8623
8636
|
query: string;
|
|
8624
|
-
responseField: "
|
|
8637
|
+
responseField: "repositories.items";
|
|
8625
8638
|
variables: {
|
|
8626
8639
|
type: string;
|
|
8627
8640
|
name: string;
|
|
@@ -8635,7 +8648,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8635
8648
|
queryId?: string | undefined;
|
|
8636
8649
|
};
|
|
8637
8650
|
}, {
|
|
8638
|
-
type: "
|
|
8651
|
+
type: "repositorySearch";
|
|
8639
8652
|
attributes?: {
|
|
8640
8653
|
label?: string | undefined;
|
|
8641
8654
|
help?: string | undefined;
|
|
@@ -8654,7 +8667,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8654
8667
|
}[] | undefined;
|
|
8655
8668
|
localQueryId?: string | undefined;
|
|
8656
8669
|
query?: string | undefined;
|
|
8657
|
-
responseField?: "
|
|
8670
|
+
responseField?: "repositories.items" | undefined;
|
|
8658
8671
|
variables?: {
|
|
8659
8672
|
type?: string | undefined;
|
|
8660
8673
|
label?: string | undefined;
|
|
@@ -8666,974 +8679,41 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
8666
8679
|
queryId?: string | undefined;
|
|
8667
8680
|
answerField?: "uri" | undefined;
|
|
8668
8681
|
} | undefined;
|
|
8669
|
-
}>, z.ZodObject<{
|
|
8670
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
8671
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8672
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8673
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8674
|
-
}, "strip", z.ZodTypeAny, {
|
|
8675
|
-
schemaVersion: string;
|
|
8676
|
-
title?: string | undefined;
|
|
8677
|
-
usageDescription?: string | undefined;
|
|
8678
|
-
}, {
|
|
8679
|
-
schemaVersion?: string | undefined;
|
|
8680
|
-
title?: string | undefined;
|
|
8681
|
-
usageDescription?: string | undefined;
|
|
8682
|
-
}>>;
|
|
8683
|
-
} & {
|
|
8684
|
-
type: z.ZodLiteral<"number">;
|
|
8685
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
8686
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8687
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8688
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8689
|
-
} & {
|
|
8690
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
8691
|
-
min: z.ZodDefault<z.ZodNumber>;
|
|
8692
|
-
step: z.ZodDefault<z.ZodNumber>;
|
|
8693
|
-
}, "strip", z.ZodTypeAny, {
|
|
8694
|
-
min: number;
|
|
8695
|
-
step: number;
|
|
8696
|
-
label?: string | undefined;
|
|
8697
|
-
help?: string | undefined;
|
|
8698
|
-
labelTranslationKey?: string | undefined;
|
|
8699
|
-
max?: number | undefined;
|
|
8700
|
-
}, {
|
|
8701
|
-
label?: string | undefined;
|
|
8702
|
-
help?: string | undefined;
|
|
8703
|
-
labelTranslationKey?: string | undefined;
|
|
8704
|
-
max?: number | undefined;
|
|
8705
|
-
min?: number | undefined;
|
|
8706
|
-
step?: number | undefined;
|
|
8707
|
-
}>>;
|
|
8708
|
-
}, "strip", z.ZodTypeAny, {
|
|
8709
|
-
type: "number";
|
|
8710
|
-
attributes: {
|
|
8711
|
-
min: number;
|
|
8712
|
-
step: number;
|
|
8713
|
-
label?: string | undefined;
|
|
8714
|
-
help?: string | undefined;
|
|
8715
|
-
labelTranslationKey?: string | undefined;
|
|
8716
|
-
max?: number | undefined;
|
|
8717
|
-
};
|
|
8718
|
-
meta: {
|
|
8719
|
-
schemaVersion: string;
|
|
8720
|
-
title?: string | undefined;
|
|
8721
|
-
usageDescription?: string | undefined;
|
|
8722
|
-
};
|
|
8723
|
-
}, {
|
|
8724
|
-
type: "number";
|
|
8725
|
-
attributes?: {
|
|
8726
|
-
label?: string | undefined;
|
|
8727
|
-
help?: string | undefined;
|
|
8728
|
-
labelTranslationKey?: string | undefined;
|
|
8729
|
-
max?: number | undefined;
|
|
8730
|
-
min?: number | undefined;
|
|
8731
|
-
step?: number | undefined;
|
|
8732
|
-
} | undefined;
|
|
8733
|
-
meta?: {
|
|
8734
|
-
schemaVersion?: string | undefined;
|
|
8735
|
-
title?: string | undefined;
|
|
8736
|
-
usageDescription?: string | undefined;
|
|
8737
|
-
} | undefined;
|
|
8738
|
-
}>, z.ZodObject<{
|
|
8739
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
8740
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8741
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8742
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8743
|
-
}, "strip", z.ZodTypeAny, {
|
|
8744
|
-
schemaVersion: string;
|
|
8745
|
-
title?: string | undefined;
|
|
8746
|
-
usageDescription?: string | undefined;
|
|
8747
|
-
}, {
|
|
8748
|
-
schemaVersion?: string | undefined;
|
|
8749
|
-
title?: string | undefined;
|
|
8750
|
-
usageDescription?: string | undefined;
|
|
8751
|
-
}>>;
|
|
8752
|
-
} & {
|
|
8753
|
-
type: z.ZodLiteral<"numberWithContext">;
|
|
8754
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
8755
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8756
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8757
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8758
|
-
} & {
|
|
8759
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
8760
|
-
min: z.ZodDefault<z.ZodNumber>;
|
|
8761
|
-
step: z.ZodDefault<z.ZodNumber>;
|
|
8762
|
-
} & {
|
|
8763
|
-
context: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8764
|
-
label: z.ZodDefault<z.ZodString>;
|
|
8765
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8766
|
-
value: z.ZodDefault<z.ZodString>;
|
|
8767
|
-
}, "strip", z.ZodTypeAny, {
|
|
8768
|
-
value: string;
|
|
8769
|
-
label: string;
|
|
8770
|
-
labelTranslationKey?: string | undefined;
|
|
8771
|
-
}, {
|
|
8772
|
-
value?: string | undefined;
|
|
8773
|
-
label?: string | undefined;
|
|
8774
|
-
labelTranslationKey?: string | undefined;
|
|
8775
|
-
}>, "many">>;
|
|
8776
|
-
}, "strip", z.ZodTypeAny, {
|
|
8777
|
-
context: {
|
|
8778
|
-
value: string;
|
|
8779
|
-
label: string;
|
|
8780
|
-
labelTranslationKey?: string | undefined;
|
|
8781
|
-
}[];
|
|
8782
|
-
min: number;
|
|
8783
|
-
step: number;
|
|
8784
|
-
label?: string | undefined;
|
|
8785
|
-
help?: string | undefined;
|
|
8786
|
-
labelTranslationKey?: string | undefined;
|
|
8787
|
-
max?: number | undefined;
|
|
8788
|
-
}, {
|
|
8789
|
-
label?: string | undefined;
|
|
8790
|
-
help?: string | undefined;
|
|
8791
|
-
labelTranslationKey?: string | undefined;
|
|
8792
|
-
context?: {
|
|
8793
|
-
value?: string | undefined;
|
|
8794
|
-
label?: string | undefined;
|
|
8795
|
-
labelTranslationKey?: string | undefined;
|
|
8796
|
-
}[] | undefined;
|
|
8797
|
-
max?: number | undefined;
|
|
8798
|
-
min?: number | undefined;
|
|
8799
|
-
step?: number | undefined;
|
|
8800
|
-
}>>;
|
|
8801
|
-
}, "strip", z.ZodTypeAny, {
|
|
8802
|
-
type: "numberWithContext";
|
|
8803
|
-
attributes: {
|
|
8804
|
-
context: {
|
|
8805
|
-
value: string;
|
|
8806
|
-
label: string;
|
|
8807
|
-
labelTranslationKey?: string | undefined;
|
|
8808
|
-
}[];
|
|
8809
|
-
min: number;
|
|
8810
|
-
step: number;
|
|
8811
|
-
label?: string | undefined;
|
|
8812
|
-
help?: string | undefined;
|
|
8813
|
-
labelTranslationKey?: string | undefined;
|
|
8814
|
-
max?: number | undefined;
|
|
8815
|
-
};
|
|
8816
|
-
meta: {
|
|
8817
|
-
schemaVersion: string;
|
|
8818
|
-
title?: string | undefined;
|
|
8819
|
-
usageDescription?: string | undefined;
|
|
8820
|
-
};
|
|
8821
|
-
}, {
|
|
8822
|
-
type: "numberWithContext";
|
|
8823
|
-
attributes?: {
|
|
8824
|
-
label?: string | undefined;
|
|
8825
|
-
help?: string | undefined;
|
|
8826
|
-
labelTranslationKey?: string | undefined;
|
|
8827
|
-
context?: {
|
|
8828
|
-
value?: string | undefined;
|
|
8829
|
-
label?: string | undefined;
|
|
8830
|
-
labelTranslationKey?: string | undefined;
|
|
8831
|
-
}[] | undefined;
|
|
8832
|
-
max?: number | undefined;
|
|
8833
|
-
min?: number | undefined;
|
|
8834
|
-
step?: number | undefined;
|
|
8835
|
-
} | undefined;
|
|
8836
|
-
meta?: {
|
|
8837
|
-
schemaVersion?: string | undefined;
|
|
8838
|
-
title?: string | undefined;
|
|
8839
|
-
usageDescription?: string | undefined;
|
|
8840
|
-
} | undefined;
|
|
8841
|
-
}>, z.ZodObject<{
|
|
8842
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
8843
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8844
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8845
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8846
|
-
}, "strip", z.ZodTypeAny, {
|
|
8847
|
-
schemaVersion: string;
|
|
8848
|
-
title?: string | undefined;
|
|
8849
|
-
usageDescription?: string | undefined;
|
|
8850
|
-
}, {
|
|
8851
|
-
schemaVersion?: string | undefined;
|
|
8852
|
-
title?: string | undefined;
|
|
8853
|
-
usageDescription?: string | undefined;
|
|
8854
|
-
}>>;
|
|
8855
|
-
} & {
|
|
8856
|
-
type: z.ZodLiteral<"radioButtons">;
|
|
8857
|
-
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8858
|
-
label: z.ZodDefault<z.ZodString>;
|
|
8859
|
-
value: z.ZodDefault<z.ZodString>;
|
|
8860
|
-
} & {
|
|
8861
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
8862
|
-
}, "strip", z.ZodTypeAny, {
|
|
8863
|
-
value: string;
|
|
8864
|
-
label: string;
|
|
8865
|
-
selected: boolean;
|
|
8866
|
-
}, {
|
|
8867
|
-
value?: string | undefined;
|
|
8868
|
-
label?: string | undefined;
|
|
8869
|
-
selected?: boolean | undefined;
|
|
8870
|
-
}>, "many">>;
|
|
8871
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
8872
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8873
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8874
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8875
|
-
}, "strip", z.ZodTypeAny, {
|
|
8876
|
-
label?: string | undefined;
|
|
8877
|
-
help?: string | undefined;
|
|
8878
|
-
labelTranslationKey?: string | undefined;
|
|
8879
|
-
}, {
|
|
8880
|
-
label?: string | undefined;
|
|
8881
|
-
help?: string | undefined;
|
|
8882
|
-
labelTranslationKey?: string | undefined;
|
|
8883
|
-
}>>;
|
|
8884
|
-
}, "strip", z.ZodTypeAny, {
|
|
8885
|
-
options: {
|
|
8886
|
-
value: string;
|
|
8887
|
-
label: string;
|
|
8888
|
-
selected: boolean;
|
|
8889
|
-
}[];
|
|
8890
|
-
type: "radioButtons";
|
|
8891
|
-
attributes: {
|
|
8892
|
-
label?: string | undefined;
|
|
8893
|
-
help?: string | undefined;
|
|
8894
|
-
labelTranslationKey?: string | undefined;
|
|
8895
|
-
};
|
|
8896
|
-
meta: {
|
|
8897
|
-
schemaVersion: string;
|
|
8898
|
-
title?: string | undefined;
|
|
8899
|
-
usageDescription?: string | undefined;
|
|
8900
|
-
};
|
|
8901
|
-
}, {
|
|
8902
|
-
type: "radioButtons";
|
|
8903
|
-
options?: {
|
|
8904
|
-
value?: string | undefined;
|
|
8905
|
-
label?: string | undefined;
|
|
8906
|
-
selected?: boolean | undefined;
|
|
8907
|
-
}[] | undefined;
|
|
8908
|
-
attributes?: {
|
|
8909
|
-
label?: string | undefined;
|
|
8910
|
-
help?: string | undefined;
|
|
8911
|
-
labelTranslationKey?: string | undefined;
|
|
8912
|
-
} | undefined;
|
|
8913
|
-
meta?: {
|
|
8914
|
-
schemaVersion?: string | undefined;
|
|
8915
|
-
title?: string | undefined;
|
|
8916
|
-
usageDescription?: string | undefined;
|
|
8917
|
-
} | undefined;
|
|
8918
|
-
}>, z.ZodObject<{
|
|
8919
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
8920
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8921
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8922
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8923
|
-
}, "strip", z.ZodTypeAny, {
|
|
8924
|
-
schemaVersion: string;
|
|
8925
|
-
title?: string | undefined;
|
|
8926
|
-
usageDescription?: string | undefined;
|
|
8927
|
-
}, {
|
|
8928
|
-
schemaVersion?: string | undefined;
|
|
8929
|
-
title?: string | undefined;
|
|
8930
|
-
usageDescription?: string | undefined;
|
|
8931
|
-
}>>;
|
|
8932
|
-
} & {
|
|
8933
|
-
type: z.ZodLiteral<"repositorySearch">;
|
|
8934
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
8935
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8936
|
-
help: z.ZodOptional<z.ZodString>;
|
|
8937
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8938
|
-
}, "strip", z.ZodTypeAny, {
|
|
8939
|
-
label?: string | undefined;
|
|
8940
|
-
help?: string | undefined;
|
|
8941
|
-
labelTranslationKey?: string | undefined;
|
|
8942
|
-
}, {
|
|
8943
|
-
label?: string | undefined;
|
|
8944
|
-
help?: string | undefined;
|
|
8945
|
-
labelTranslationKey?: string | undefined;
|
|
8946
|
-
}>>;
|
|
8947
|
-
graphQL: z.ZodDefault<z.ZodObject<{
|
|
8948
|
-
localQueryId: z.ZodOptional<z.ZodString>;
|
|
8949
|
-
} & {
|
|
8950
|
-
query: z.ZodDefault<z.ZodLiteral<string>>;
|
|
8951
|
-
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
8952
|
-
variables: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8953
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
8954
|
-
label: z.ZodOptional<z.ZodString>;
|
|
8955
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8956
|
-
name: z.ZodDefault<z.ZodString>;
|
|
8957
|
-
type: z.ZodDefault<z.ZodString>;
|
|
8958
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8959
|
-
}, "strip", z.ZodTypeAny, {
|
|
8960
|
-
type: string;
|
|
8961
|
-
name: string;
|
|
8962
|
-
label?: string | undefined;
|
|
8963
|
-
labelTranslationKey?: string | undefined;
|
|
8964
|
-
minLength?: number | undefined;
|
|
8965
|
-
defaultValue?: string | undefined;
|
|
8966
|
-
}, {
|
|
8967
|
-
type?: string | undefined;
|
|
8968
|
-
label?: string | undefined;
|
|
8969
|
-
labelTranslationKey?: string | undefined;
|
|
8970
|
-
minLength?: number | undefined;
|
|
8971
|
-
name?: string | undefined;
|
|
8972
|
-
defaultValue?: string | undefined;
|
|
8973
|
-
}>, "many">>;
|
|
8974
|
-
answerField: z.ZodDefault<z.ZodLiteral<"uri">>;
|
|
8975
|
-
displayFields: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8976
|
-
propertyName: z.ZodDefault<z.ZodString>;
|
|
8977
|
-
label: z.ZodDefault<z.ZodString>;
|
|
8978
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8979
|
-
}, "strip", z.ZodTypeAny, {
|
|
8980
|
-
label: string;
|
|
8981
|
-
propertyName: string;
|
|
8982
|
-
labelTranslationKey?: string | undefined;
|
|
8983
|
-
}, {
|
|
8984
|
-
label?: string | undefined;
|
|
8985
|
-
labelTranslationKey?: string | undefined;
|
|
8986
|
-
propertyName?: string | undefined;
|
|
8987
|
-
}>, "many">>;
|
|
8988
|
-
responseField: z.ZodDefault<z.ZodLiteral<"repositories.items">>;
|
|
8989
|
-
}, "strip", z.ZodTypeAny, {
|
|
8990
|
-
displayFields: {
|
|
8991
|
-
label: string;
|
|
8992
|
-
propertyName: string;
|
|
8993
|
-
labelTranslationKey?: string | undefined;
|
|
8994
|
-
}[];
|
|
8995
|
-
query: string;
|
|
8996
|
-
responseField: "repositories.items";
|
|
8997
|
-
variables: {
|
|
8998
|
-
type: string;
|
|
8999
|
-
name: string;
|
|
9000
|
-
label?: string | undefined;
|
|
9001
|
-
labelTranslationKey?: string | undefined;
|
|
9002
|
-
minLength?: number | undefined;
|
|
9003
|
-
defaultValue?: string | undefined;
|
|
9004
|
-
}[];
|
|
9005
|
-
answerField: "uri";
|
|
9006
|
-
localQueryId?: string | undefined;
|
|
9007
|
-
queryId?: string | undefined;
|
|
9008
|
-
}, {
|
|
9009
|
-
displayFields?: {
|
|
9010
|
-
label?: string | undefined;
|
|
9011
|
-
labelTranslationKey?: string | undefined;
|
|
9012
|
-
propertyName?: string | undefined;
|
|
9013
|
-
}[] | undefined;
|
|
9014
|
-
localQueryId?: string | undefined;
|
|
9015
|
-
query?: string | undefined;
|
|
9016
|
-
responseField?: "repositories.items" | undefined;
|
|
9017
|
-
variables?: {
|
|
9018
|
-
type?: string | undefined;
|
|
9019
|
-
label?: string | undefined;
|
|
9020
|
-
labelTranslationKey?: string | undefined;
|
|
9021
|
-
minLength?: number | undefined;
|
|
9022
|
-
name?: string | undefined;
|
|
9023
|
-
defaultValue?: string | undefined;
|
|
9024
|
-
}[] | undefined;
|
|
9025
|
-
queryId?: string | undefined;
|
|
9026
|
-
answerField?: "uri" | undefined;
|
|
9027
|
-
}>>;
|
|
9028
|
-
}, "strip", z.ZodTypeAny, {
|
|
9029
|
-
type: "repositorySearch";
|
|
9030
|
-
attributes: {
|
|
9031
|
-
label?: string | undefined;
|
|
9032
|
-
help?: string | undefined;
|
|
9033
|
-
labelTranslationKey?: string | undefined;
|
|
9034
|
-
};
|
|
9035
|
-
meta: {
|
|
9036
|
-
schemaVersion: string;
|
|
9037
|
-
title?: string | undefined;
|
|
9038
|
-
usageDescription?: string | undefined;
|
|
9039
|
-
};
|
|
9040
|
-
graphQL: {
|
|
9041
|
-
displayFields: {
|
|
9042
|
-
label: string;
|
|
9043
|
-
propertyName: string;
|
|
9044
|
-
labelTranslationKey?: string | undefined;
|
|
9045
|
-
}[];
|
|
9046
|
-
query: string;
|
|
9047
|
-
responseField: "repositories.items";
|
|
9048
|
-
variables: {
|
|
9049
|
-
type: string;
|
|
9050
|
-
name: string;
|
|
9051
|
-
label?: string | undefined;
|
|
9052
|
-
labelTranslationKey?: string | undefined;
|
|
9053
|
-
minLength?: number | undefined;
|
|
9054
|
-
defaultValue?: string | undefined;
|
|
9055
|
-
}[];
|
|
9056
|
-
answerField: "uri";
|
|
9057
|
-
localQueryId?: string | undefined;
|
|
9058
|
-
queryId?: string | undefined;
|
|
9059
|
-
};
|
|
9060
|
-
}, {
|
|
9061
|
-
type: "repositorySearch";
|
|
9062
|
-
attributes?: {
|
|
9063
|
-
label?: string | undefined;
|
|
9064
|
-
help?: string | undefined;
|
|
9065
|
-
labelTranslationKey?: string | undefined;
|
|
9066
|
-
} | undefined;
|
|
9067
|
-
meta?: {
|
|
9068
|
-
schemaVersion?: string | undefined;
|
|
9069
|
-
title?: string | undefined;
|
|
9070
|
-
usageDescription?: string | undefined;
|
|
9071
|
-
} | undefined;
|
|
9072
|
-
graphQL?: {
|
|
9073
|
-
displayFields?: {
|
|
9074
|
-
label?: string | undefined;
|
|
9075
|
-
labelTranslationKey?: string | undefined;
|
|
9076
|
-
propertyName?: string | undefined;
|
|
9077
|
-
}[] | undefined;
|
|
9078
|
-
localQueryId?: string | undefined;
|
|
9079
|
-
query?: string | undefined;
|
|
9080
|
-
responseField?: "repositories.items" | undefined;
|
|
9081
|
-
variables?: {
|
|
9082
|
-
type?: string | undefined;
|
|
9083
|
-
label?: string | undefined;
|
|
9084
|
-
labelTranslationKey?: string | undefined;
|
|
9085
|
-
minLength?: number | undefined;
|
|
9086
|
-
name?: string | undefined;
|
|
9087
|
-
defaultValue?: string | undefined;
|
|
9088
|
-
}[] | undefined;
|
|
9089
|
-
queryId?: string | undefined;
|
|
9090
|
-
answerField?: "uri" | undefined;
|
|
9091
|
-
} | undefined;
|
|
9092
|
-
}>, z.ZodObject<{
|
|
9093
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
9094
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9095
|
-
title: z.ZodOptional<z.ZodString>;
|
|
9096
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
9097
|
-
}, "strip", z.ZodTypeAny, {
|
|
9098
|
-
schemaVersion: string;
|
|
9099
|
-
title?: string | undefined;
|
|
9100
|
-
usageDescription?: string | undefined;
|
|
9101
|
-
}, {
|
|
9102
|
-
schemaVersion?: string | undefined;
|
|
9103
|
-
title?: string | undefined;
|
|
9104
|
-
usageDescription?: string | undefined;
|
|
9105
|
-
}>>;
|
|
9106
|
-
} & {
|
|
9107
|
-
type: z.ZodLiteral<"selectBox">;
|
|
9108
|
-
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9109
|
-
label: z.ZodDefault<z.ZodString>;
|
|
9110
|
-
value: z.ZodDefault<z.ZodString>;
|
|
9111
|
-
} & {
|
|
9112
|
-
selected: z.ZodDefault<z.ZodBoolean>;
|
|
9113
|
-
}, "strip", z.ZodTypeAny, {
|
|
9114
|
-
value: string;
|
|
9115
|
-
label: string;
|
|
9116
|
-
selected: boolean;
|
|
9117
|
-
}, {
|
|
9118
|
-
value?: string | undefined;
|
|
9119
|
-
label?: string | undefined;
|
|
9120
|
-
selected?: boolean | undefined;
|
|
9121
|
-
}>, "many">>;
|
|
9122
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
9123
|
-
label: z.ZodOptional<z.ZodString>;
|
|
9124
|
-
help: z.ZodOptional<z.ZodString>;
|
|
9125
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9126
|
-
} & {
|
|
9127
|
-
multiple: z.ZodLiteral<false>;
|
|
9128
|
-
}, "strip", z.ZodTypeAny, {
|
|
9129
|
-
multiple: false;
|
|
9130
|
-
label?: string | undefined;
|
|
9131
|
-
help?: string | undefined;
|
|
9132
|
-
labelTranslationKey?: string | undefined;
|
|
9133
|
-
}, {
|
|
9134
|
-
multiple: false;
|
|
9135
|
-
label?: string | undefined;
|
|
9136
|
-
help?: string | undefined;
|
|
9137
|
-
labelTranslationKey?: string | undefined;
|
|
9138
|
-
}>>;
|
|
9139
|
-
}, "strip", z.ZodTypeAny, {
|
|
9140
|
-
options: {
|
|
9141
|
-
value: string;
|
|
9142
|
-
label: string;
|
|
9143
|
-
selected: boolean;
|
|
9144
|
-
}[];
|
|
9145
|
-
type: "selectBox";
|
|
9146
|
-
attributes: {
|
|
9147
|
-
multiple: false;
|
|
9148
|
-
label?: string | undefined;
|
|
9149
|
-
help?: string | undefined;
|
|
9150
|
-
labelTranslationKey?: string | undefined;
|
|
9151
|
-
};
|
|
9152
|
-
meta: {
|
|
9153
|
-
schemaVersion: string;
|
|
9154
|
-
title?: string | undefined;
|
|
9155
|
-
usageDescription?: string | undefined;
|
|
9156
|
-
};
|
|
9157
|
-
}, {
|
|
9158
|
-
type: "selectBox";
|
|
9159
|
-
options?: {
|
|
9160
|
-
value?: string | undefined;
|
|
9161
|
-
label?: string | undefined;
|
|
9162
|
-
selected?: boolean | undefined;
|
|
9163
|
-
}[] | undefined;
|
|
9164
|
-
attributes?: {
|
|
9165
|
-
multiple: false;
|
|
9166
|
-
label?: string | undefined;
|
|
9167
|
-
help?: string | undefined;
|
|
9168
|
-
labelTranslationKey?: string | undefined;
|
|
9169
|
-
} | undefined;
|
|
9170
|
-
meta?: {
|
|
9171
|
-
schemaVersion?: string | undefined;
|
|
9172
|
-
title?: string | undefined;
|
|
9173
|
-
usageDescription?: string | undefined;
|
|
9174
|
-
} | undefined;
|
|
9175
|
-
}>, z.ZodObject<{
|
|
9176
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
9177
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9178
|
-
title: z.ZodOptional<z.ZodString>;
|
|
9179
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
9180
|
-
}, "strip", z.ZodTypeAny, {
|
|
9181
|
-
schemaVersion: string;
|
|
9182
|
-
title?: string | undefined;
|
|
9183
|
-
usageDescription?: string | undefined;
|
|
9184
|
-
}, {
|
|
9185
|
-
schemaVersion?: string | undefined;
|
|
9186
|
-
title?: string | undefined;
|
|
9187
|
-
usageDescription?: string | undefined;
|
|
9188
|
-
}>>;
|
|
9189
|
-
} & {
|
|
9190
|
-
type: z.ZodLiteral<"textArea">;
|
|
9191
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
9192
|
-
label: z.ZodOptional<z.ZodString>;
|
|
9193
|
-
help: z.ZodOptional<z.ZodString>;
|
|
9194
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9195
|
-
} & {
|
|
9196
|
-
cols: z.ZodDefault<z.ZodNumber>;
|
|
9197
|
-
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
9198
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
9199
|
-
rows: z.ZodDefault<z.ZodNumber>;
|
|
9200
|
-
asRichText: z.ZodDefault<z.ZodBoolean>;
|
|
9201
|
-
}, "strip", z.ZodTypeAny, {
|
|
9202
|
-
cols: number;
|
|
9203
|
-
rows: number;
|
|
9204
|
-
asRichText: boolean;
|
|
9205
|
-
label?: string | undefined;
|
|
9206
|
-
help?: string | undefined;
|
|
9207
|
-
labelTranslationKey?: string | undefined;
|
|
9208
|
-
maxLength?: number | undefined;
|
|
9209
|
-
minLength?: number | undefined;
|
|
9210
|
-
}, {
|
|
9211
|
-
label?: string | undefined;
|
|
9212
|
-
help?: string | undefined;
|
|
9213
|
-
labelTranslationKey?: string | undefined;
|
|
9214
|
-
maxLength?: number | undefined;
|
|
9215
|
-
minLength?: number | undefined;
|
|
9216
|
-
cols?: number | undefined;
|
|
9217
|
-
rows?: number | undefined;
|
|
9218
|
-
asRichText?: boolean | undefined;
|
|
9219
|
-
}>>;
|
|
9220
|
-
}, "strip", z.ZodTypeAny, {
|
|
9221
|
-
type: "textArea";
|
|
9222
|
-
attributes: {
|
|
9223
|
-
cols: number;
|
|
9224
|
-
rows: number;
|
|
9225
|
-
asRichText: boolean;
|
|
9226
|
-
label?: string | undefined;
|
|
9227
|
-
help?: string | undefined;
|
|
9228
|
-
labelTranslationKey?: string | undefined;
|
|
9229
|
-
maxLength?: number | undefined;
|
|
9230
|
-
minLength?: number | undefined;
|
|
9231
|
-
};
|
|
9232
|
-
meta: {
|
|
9233
|
-
schemaVersion: string;
|
|
9234
|
-
title?: string | undefined;
|
|
9235
|
-
usageDescription?: string | undefined;
|
|
9236
|
-
};
|
|
9237
|
-
}, {
|
|
9238
|
-
type: "textArea";
|
|
9239
|
-
attributes?: {
|
|
9240
|
-
label?: string | undefined;
|
|
9241
|
-
help?: string | undefined;
|
|
9242
|
-
labelTranslationKey?: string | undefined;
|
|
9243
|
-
maxLength?: number | undefined;
|
|
9244
|
-
minLength?: number | undefined;
|
|
9245
|
-
cols?: number | undefined;
|
|
9246
|
-
rows?: number | undefined;
|
|
9247
|
-
asRichText?: boolean | undefined;
|
|
9248
|
-
} | undefined;
|
|
9249
|
-
meta?: {
|
|
9250
|
-
schemaVersion?: string | undefined;
|
|
9251
|
-
title?: string | undefined;
|
|
9252
|
-
usageDescription?: string | undefined;
|
|
9253
|
-
} | undefined;
|
|
9254
|
-
}>, z.ZodObject<{
|
|
9255
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
9256
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9257
|
-
title: z.ZodOptional<z.ZodString>;
|
|
9258
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
9259
|
-
}, "strip", z.ZodTypeAny, {
|
|
9260
|
-
schemaVersion: string;
|
|
9261
|
-
title?: string | undefined;
|
|
9262
|
-
usageDescription?: string | undefined;
|
|
9263
|
-
}, {
|
|
9264
|
-
schemaVersion?: string | undefined;
|
|
9265
|
-
title?: string | undefined;
|
|
9266
|
-
usageDescription?: string | undefined;
|
|
9267
|
-
}>>;
|
|
9268
|
-
} & {
|
|
9269
|
-
type: z.ZodLiteral<"text">;
|
|
9270
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
9271
|
-
label: z.ZodOptional<z.ZodString>;
|
|
9272
|
-
help: z.ZodOptional<z.ZodString>;
|
|
9273
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9274
|
-
} & {
|
|
9275
|
-
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
9276
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
9277
|
-
pattern: z.ZodOptional<z.ZodString>;
|
|
9278
|
-
}, "strip", z.ZodTypeAny, {
|
|
9279
|
-
maxLength: number;
|
|
9280
|
-
label?: string | undefined;
|
|
9281
|
-
help?: string | undefined;
|
|
9282
|
-
labelTranslationKey?: string | undefined;
|
|
9283
|
-
minLength?: number | undefined;
|
|
9284
|
-
pattern?: string | undefined;
|
|
9285
|
-
}, {
|
|
9286
|
-
label?: string | undefined;
|
|
9287
|
-
help?: string | undefined;
|
|
9288
|
-
labelTranslationKey?: string | undefined;
|
|
9289
|
-
maxLength?: number | undefined;
|
|
9290
|
-
minLength?: number | undefined;
|
|
9291
|
-
pattern?: string | undefined;
|
|
9292
|
-
}>>;
|
|
9293
|
-
}, "strip", z.ZodTypeAny, {
|
|
9294
|
-
type: "text";
|
|
9295
|
-
attributes: {
|
|
9296
|
-
maxLength: number;
|
|
9297
|
-
label?: string | undefined;
|
|
9298
|
-
help?: string | undefined;
|
|
9299
|
-
labelTranslationKey?: string | undefined;
|
|
9300
|
-
minLength?: number | undefined;
|
|
9301
|
-
pattern?: string | undefined;
|
|
9302
|
-
};
|
|
9303
|
-
meta: {
|
|
9304
|
-
schemaVersion: string;
|
|
9305
|
-
title?: string | undefined;
|
|
9306
|
-
usageDescription?: string | undefined;
|
|
9307
|
-
};
|
|
9308
|
-
}, {
|
|
9309
|
-
type: "text";
|
|
9310
|
-
attributes?: {
|
|
9311
|
-
label?: string | undefined;
|
|
9312
|
-
help?: string | undefined;
|
|
9313
|
-
labelTranslationKey?: string | undefined;
|
|
9314
|
-
maxLength?: number | undefined;
|
|
9315
|
-
minLength?: number | undefined;
|
|
9316
|
-
pattern?: string | undefined;
|
|
9317
|
-
} | undefined;
|
|
9318
|
-
meta?: {
|
|
9319
|
-
schemaVersion?: string | undefined;
|
|
9320
|
-
title?: string | undefined;
|
|
9321
|
-
usageDescription?: string | undefined;
|
|
9322
|
-
} | undefined;
|
|
9323
|
-
}>, z.ZodObject<{
|
|
9324
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
9325
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9326
|
-
title: z.ZodOptional<z.ZodString>;
|
|
9327
|
-
usageDescription: z.ZodOptional<z.ZodString>;
|
|
9328
|
-
}, "strip", z.ZodTypeAny, {
|
|
9329
|
-
schemaVersion: string;
|
|
9330
|
-
title?: string | undefined;
|
|
9331
|
-
usageDescription?: string | undefined;
|
|
9332
|
-
}, {
|
|
9333
|
-
schemaVersion?: string | undefined;
|
|
9334
|
-
title?: string | undefined;
|
|
9335
|
-
usageDescription?: string | undefined;
|
|
9336
|
-
}>>;
|
|
9337
|
-
} & {
|
|
9338
|
-
type: z.ZodLiteral<"url">;
|
|
9339
|
-
attributes: z.ZodDefault<z.ZodObject<{
|
|
9340
|
-
label: z.ZodOptional<z.ZodString>;
|
|
9341
|
-
help: z.ZodOptional<z.ZodString>;
|
|
9342
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9343
|
-
} & {
|
|
9344
|
-
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
9345
|
-
minLength: z.ZodOptional<z.ZodNumber>;
|
|
9346
|
-
pattern: z.ZodOptional<z.ZodString>;
|
|
9347
|
-
}, "strip", z.ZodTypeAny, {
|
|
9348
|
-
maxLength: number;
|
|
9349
|
-
label?: string | undefined;
|
|
9350
|
-
help?: string | undefined;
|
|
9351
|
-
labelTranslationKey?: string | undefined;
|
|
9352
|
-
minLength?: number | undefined;
|
|
9353
|
-
pattern?: string | undefined;
|
|
9354
|
-
}, {
|
|
9355
|
-
label?: string | undefined;
|
|
9356
|
-
help?: string | undefined;
|
|
9357
|
-
labelTranslationKey?: string | undefined;
|
|
9358
|
-
maxLength?: number | undefined;
|
|
9359
|
-
minLength?: number | undefined;
|
|
9360
|
-
pattern?: string | undefined;
|
|
9361
|
-
}>>;
|
|
9362
|
-
}, "strip", z.ZodTypeAny, {
|
|
9363
|
-
type: "url";
|
|
9364
|
-
attributes: {
|
|
9365
|
-
maxLength: number;
|
|
9366
|
-
label?: string | undefined;
|
|
9367
|
-
help?: string | undefined;
|
|
9368
|
-
labelTranslationKey?: string | undefined;
|
|
9369
|
-
minLength?: number | undefined;
|
|
9370
|
-
pattern?: string | undefined;
|
|
9371
|
-
};
|
|
9372
|
-
meta: {
|
|
9373
|
-
schemaVersion: string;
|
|
9374
|
-
title?: string | undefined;
|
|
9375
|
-
usageDescription?: string | undefined;
|
|
9376
|
-
};
|
|
9377
|
-
}, {
|
|
9378
|
-
type: "url";
|
|
9379
|
-
attributes?: {
|
|
9380
|
-
label?: string | undefined;
|
|
9381
|
-
help?: string | undefined;
|
|
9382
|
-
labelTranslationKey?: string | undefined;
|
|
9383
|
-
maxLength?: number | undefined;
|
|
9384
|
-
minLength?: number | undefined;
|
|
9385
|
-
pattern?: string | undefined;
|
|
9386
|
-
} | undefined;
|
|
9387
|
-
meta?: {
|
|
9388
|
-
schemaVersion?: string | undefined;
|
|
9389
|
-
title?: string | undefined;
|
|
9390
|
-
usageDescription?: string | undefined;
|
|
9391
|
-
} | undefined;
|
|
9392
|
-
}>]>>;
|
|
9393
|
-
meta: z.ZodDefault<z.ZodObject<{
|
|
9394
|
-
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9395
|
-
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9396
|
-
}, "strip", z.ZodTypeAny, {
|
|
9397
|
-
schemaVersion: string;
|
|
9398
|
-
labelTranslationKey?: string | undefined;
|
|
9399
|
-
}, {
|
|
9400
|
-
schemaVersion?: string | undefined;
|
|
9401
|
-
labelTranslationKey?: string | undefined;
|
|
9402
8682
|
}>>;
|
|
9403
|
-
|
|
9404
|
-
|
|
9405
|
-
|
|
9406
|
-
|
|
9407
|
-
|
|
9408
|
-
|
|
9409
|
-
|
|
9410
|
-
|
|
9411
|
-
|
|
9412
|
-
|
|
9413
|
-
|
|
9414
|
-
|
|
9415
|
-
|
|
9416
|
-
|
|
9417
|
-
|
|
9418
|
-
|
|
9419
|
-
|
|
9420
|
-
|
|
9421
|
-
|
|
9422
|
-
|
|
9423
|
-
|
|
9424
|
-
|
|
9425
|
-
|
|
9426
|
-
|
|
9427
|
-
}
|
|
9428
|
-
|
|
9429
|
-
|
|
9430
|
-
|
|
9431
|
-
|
|
9432
|
-
|
|
9433
|
-
|
|
9434
|
-
|
|
9435
|
-
|
|
9436
|
-
|
|
9437
|
-
meta: {
|
|
9438
|
-
schemaVersion: string;
|
|
9439
|
-
title?: string | undefined;
|
|
9440
|
-
usageDescription?: string | undefined;
|
|
9441
|
-
};
|
|
9442
|
-
} | {
|
|
9443
|
-
type: "numberWithContext";
|
|
9444
|
-
attributes: {
|
|
9445
|
-
context: {
|
|
9446
|
-
value: string;
|
|
9447
|
-
label: string;
|
|
9448
|
-
labelTranslationKey?: string | undefined;
|
|
9449
|
-
}[];
|
|
9450
|
-
min: number;
|
|
9451
|
-
step: number;
|
|
9452
|
-
label?: string | undefined;
|
|
9453
|
-
help?: string | undefined;
|
|
9454
|
-
labelTranslationKey?: string | undefined;
|
|
9455
|
-
max?: number | undefined;
|
|
9456
|
-
};
|
|
9457
|
-
meta: {
|
|
9458
|
-
schemaVersion: string;
|
|
9459
|
-
title?: string | undefined;
|
|
9460
|
-
usageDescription?: string | undefined;
|
|
9461
|
-
};
|
|
9462
|
-
} | {
|
|
9463
|
-
type: "email";
|
|
9464
|
-
attributes: {
|
|
9465
|
-
maxLength: number;
|
|
9466
|
-
multiple: boolean;
|
|
9467
|
-
label?: string | undefined;
|
|
9468
|
-
help?: string | undefined;
|
|
9469
|
-
labelTranslationKey?: string | undefined;
|
|
9470
|
-
minLength?: number | undefined;
|
|
9471
|
-
pattern?: string | undefined;
|
|
9472
|
-
};
|
|
9473
|
-
meta: {
|
|
9474
|
-
schemaVersion: string;
|
|
9475
|
-
title?: string | undefined;
|
|
9476
|
-
usageDescription?: string | undefined;
|
|
9477
|
-
};
|
|
9478
|
-
} | {
|
|
9479
|
-
type: "textArea";
|
|
9480
|
-
attributes: {
|
|
9481
|
-
cols: number;
|
|
9482
|
-
rows: number;
|
|
9483
|
-
asRichText: boolean;
|
|
9484
|
-
label?: string | undefined;
|
|
9485
|
-
help?: string | undefined;
|
|
9486
|
-
labelTranslationKey?: string | undefined;
|
|
9487
|
-
maxLength?: number | undefined;
|
|
9488
|
-
minLength?: number | undefined;
|
|
9489
|
-
};
|
|
9490
|
-
meta: {
|
|
9491
|
-
schemaVersion: string;
|
|
9492
|
-
title?: string | undefined;
|
|
9493
|
-
usageDescription?: string | undefined;
|
|
9494
|
-
};
|
|
9495
|
-
} | {
|
|
9496
|
-
type: "text";
|
|
9497
|
-
attributes: {
|
|
9498
|
-
maxLength: number;
|
|
9499
|
-
label?: string | undefined;
|
|
9500
|
-
help?: string | undefined;
|
|
9501
|
-
labelTranslationKey?: string | undefined;
|
|
9502
|
-
minLength?: number | undefined;
|
|
9503
|
-
pattern?: string | undefined;
|
|
9504
|
-
};
|
|
9505
|
-
meta: {
|
|
9506
|
-
schemaVersion: string;
|
|
9507
|
-
title?: string | undefined;
|
|
9508
|
-
usageDescription?: string | undefined;
|
|
9509
|
-
};
|
|
9510
|
-
} | {
|
|
9511
|
-
type: "url";
|
|
9512
|
-
attributes: {
|
|
9513
|
-
maxLength: number;
|
|
9514
|
-
label?: string | undefined;
|
|
9515
|
-
help?: string | undefined;
|
|
9516
|
-
labelTranslationKey?: string | undefined;
|
|
9517
|
-
minLength?: number | undefined;
|
|
9518
|
-
pattern?: string | undefined;
|
|
9519
|
-
};
|
|
9520
|
-
meta: {
|
|
9521
|
-
schemaVersion: string;
|
|
9522
|
-
title?: string | undefined;
|
|
9523
|
-
usageDescription?: string | undefined;
|
|
9524
|
-
};
|
|
9525
|
-
} | {
|
|
9526
|
-
type: "date";
|
|
9527
|
-
attributes: {
|
|
9528
|
-
step: number;
|
|
9529
|
-
label?: string | undefined;
|
|
9530
|
-
help?: string | undefined;
|
|
9531
|
-
labelTranslationKey?: string | undefined;
|
|
9532
|
-
max?: string | undefined;
|
|
9533
|
-
min?: string | undefined;
|
|
9534
|
-
};
|
|
9535
|
-
meta: {
|
|
9536
|
-
schemaVersion: string;
|
|
9537
|
-
title?: string | undefined;
|
|
9538
|
-
usageDescription?: string | undefined;
|
|
9539
|
-
};
|
|
9540
|
-
} | {
|
|
9541
|
-
type: "dateRange";
|
|
9542
|
-
attributes: {
|
|
9543
|
-
label?: string | undefined;
|
|
9544
|
-
help?: string | undefined;
|
|
9545
|
-
labelTranslationKey?: string | undefined;
|
|
9546
|
-
};
|
|
9547
|
-
meta: {
|
|
9548
|
-
schemaVersion: string;
|
|
9549
|
-
title?: string | undefined;
|
|
9550
|
-
usageDescription?: string | undefined;
|
|
9551
|
-
};
|
|
9552
|
-
columns: {
|
|
9553
|
-
start: {
|
|
9554
|
-
label: string;
|
|
9555
|
-
step: number;
|
|
9556
|
-
help?: string | undefined;
|
|
9557
|
-
labelTranslationKey?: string | undefined;
|
|
9558
|
-
max?: string | undefined;
|
|
9559
|
-
min?: string | undefined;
|
|
9560
|
-
};
|
|
9561
|
-
end: {
|
|
9562
|
-
label: string;
|
|
9563
|
-
step: number;
|
|
9564
|
-
help?: string | undefined;
|
|
9565
|
-
labelTranslationKey?: string | undefined;
|
|
9566
|
-
max?: string | undefined;
|
|
9567
|
-
min?: string | undefined;
|
|
9568
|
-
};
|
|
9569
|
-
};
|
|
9570
|
-
} | {
|
|
9571
|
-
type: "boolean";
|
|
9572
|
-
attributes: {
|
|
9573
|
-
checked: boolean;
|
|
9574
|
-
label?: string | undefined;
|
|
9575
|
-
help?: string | undefined;
|
|
9576
|
-
labelTranslationKey?: string | undefined;
|
|
9577
|
-
};
|
|
9578
|
-
meta: {
|
|
9579
|
-
schemaVersion: string;
|
|
9580
|
-
title?: string | undefined;
|
|
9581
|
-
usageDescription?: string | undefined;
|
|
9582
|
-
};
|
|
9583
|
-
} | {
|
|
9584
|
-
options: {
|
|
9585
|
-
value: string;
|
|
9586
|
-
label: string;
|
|
9587
|
-
checked: boolean;
|
|
9588
|
-
}[];
|
|
9589
|
-
type: "checkBoxes";
|
|
9590
|
-
attributes: {
|
|
9591
|
-
label?: string | undefined;
|
|
9592
|
-
help?: string | undefined;
|
|
9593
|
-
labelTranslationKey?: string | undefined;
|
|
9594
|
-
};
|
|
9595
|
-
meta: {
|
|
9596
|
-
schemaVersion: string;
|
|
9597
|
-
title?: string | undefined;
|
|
9598
|
-
usageDescription?: string | undefined;
|
|
9599
|
-
};
|
|
9600
|
-
} | {
|
|
9601
|
-
options: {
|
|
9602
|
-
value: string;
|
|
9603
|
-
label: string;
|
|
9604
|
-
selected: boolean;
|
|
9605
|
-
}[];
|
|
9606
|
-
type: "radioButtons";
|
|
9607
|
-
attributes: {
|
|
9608
|
-
label?: string | undefined;
|
|
9609
|
-
help?: string | undefined;
|
|
9610
|
-
labelTranslationKey?: string | undefined;
|
|
9611
|
-
};
|
|
9612
|
-
meta: {
|
|
9613
|
-
schemaVersion: string;
|
|
9614
|
-
title?: string | undefined;
|
|
9615
|
-
usageDescription?: string | undefined;
|
|
9616
|
-
};
|
|
9617
|
-
} | {
|
|
9618
|
-
options: {
|
|
9619
|
-
value: string;
|
|
9620
|
-
label: string;
|
|
9621
|
-
selected: boolean;
|
|
9622
|
-
}[];
|
|
9623
|
-
type: "selectBox";
|
|
9624
|
-
attributes: {
|
|
9625
|
-
multiple: false;
|
|
9626
|
-
label?: string | undefined;
|
|
9627
|
-
help?: string | undefined;
|
|
9628
|
-
labelTranslationKey?: string | undefined;
|
|
9629
|
-
};
|
|
9630
|
-
meta: {
|
|
9631
|
-
schemaVersion: string;
|
|
9632
|
-
title?: string | undefined;
|
|
9633
|
-
usageDescription?: string | undefined;
|
|
9634
|
-
};
|
|
9635
|
-
} | {
|
|
9636
|
-
type: "affiliationSearch";
|
|
8683
|
+
preferences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8684
|
+
label: z.ZodDefault<z.ZodString>;
|
|
8685
|
+
value: z.ZodDefault<z.ZodString>;
|
|
8686
|
+
}, "strip", z.ZodTypeAny, {
|
|
8687
|
+
value: string;
|
|
8688
|
+
label: string;
|
|
8689
|
+
}, {
|
|
8690
|
+
value?: string | undefined;
|
|
8691
|
+
label?: string | undefined;
|
|
8692
|
+
}>, "many">>;
|
|
8693
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
8694
|
+
help: z.ZodDefault<z.ZodString>;
|
|
8695
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
8696
|
+
}, "strip", z.ZodTypeAny, {
|
|
8697
|
+
help: string;
|
|
8698
|
+
labelTranslationKey: string;
|
|
8699
|
+
}, {
|
|
8700
|
+
help?: string | undefined;
|
|
8701
|
+
labelTranslationKey?: string | undefined;
|
|
8702
|
+
}>>;
|
|
8703
|
+
}, "strip", z.ZodTypeAny, {
|
|
8704
|
+
attributes: {
|
|
8705
|
+
help: string;
|
|
8706
|
+
labelTranslationKey: string;
|
|
8707
|
+
};
|
|
8708
|
+
meta: {
|
|
8709
|
+
schemaVersion: string;
|
|
8710
|
+
labelTranslationKey?: string | undefined;
|
|
8711
|
+
};
|
|
8712
|
+
heading: string;
|
|
8713
|
+
required: boolean;
|
|
8714
|
+
enabled: boolean;
|
|
8715
|
+
content: {
|
|
8716
|
+
type: "repositorySearch";
|
|
9637
8717
|
attributes: {
|
|
9638
8718
|
label?: string | undefined;
|
|
9639
8719
|
help?: string | undefined;
|
|
@@ -9647,42 +8727,171 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
9647
8727
|
graphQL: {
|
|
9648
8728
|
displayFields: {
|
|
9649
8729
|
label: string;
|
|
9650
|
-
propertyName:
|
|
8730
|
+
propertyName: string;
|
|
9651
8731
|
labelTranslationKey?: string | undefined;
|
|
9652
8732
|
}[];
|
|
9653
8733
|
query: string;
|
|
9654
|
-
responseField: "
|
|
8734
|
+
responseField: "repositories.items";
|
|
9655
8735
|
variables: {
|
|
9656
8736
|
type: string;
|
|
9657
|
-
|
|
9658
|
-
|
|
9659
|
-
name: "name";
|
|
8737
|
+
name: string;
|
|
8738
|
+
label?: string | undefined;
|
|
9660
8739
|
labelTranslationKey?: string | undefined;
|
|
8740
|
+
minLength?: number | undefined;
|
|
8741
|
+
defaultValue?: string | undefined;
|
|
9661
8742
|
}[];
|
|
9662
8743
|
answerField: "uri";
|
|
9663
8744
|
localQueryId?: string | undefined;
|
|
9664
8745
|
queryId?: string | undefined;
|
|
9665
8746
|
};
|
|
9666
|
-
}
|
|
8747
|
+
};
|
|
8748
|
+
preferences: {
|
|
8749
|
+
value: string;
|
|
8750
|
+
label: string;
|
|
8751
|
+
}[];
|
|
8752
|
+
}, {
|
|
8753
|
+
attributes?: {
|
|
8754
|
+
help?: string | undefined;
|
|
8755
|
+
labelTranslationKey?: string | undefined;
|
|
8756
|
+
} | undefined;
|
|
8757
|
+
meta?: {
|
|
8758
|
+
schemaVersion?: string | undefined;
|
|
8759
|
+
labelTranslationKey?: string | undefined;
|
|
8760
|
+
} | undefined;
|
|
8761
|
+
heading?: string | undefined;
|
|
8762
|
+
required?: boolean | undefined;
|
|
8763
|
+
enabled?: boolean | undefined;
|
|
8764
|
+
content?: {
|
|
9667
8765
|
type: "repositorySearch";
|
|
9668
|
-
attributes
|
|
8766
|
+
attributes?: {
|
|
9669
8767
|
label?: string | undefined;
|
|
9670
8768
|
help?: string | undefined;
|
|
9671
8769
|
labelTranslationKey?: string | undefined;
|
|
9672
|
-
};
|
|
9673
|
-
meta
|
|
8770
|
+
} | undefined;
|
|
8771
|
+
meta?: {
|
|
8772
|
+
schemaVersion?: string | undefined;
|
|
8773
|
+
title?: string | undefined;
|
|
8774
|
+
usageDescription?: string | undefined;
|
|
8775
|
+
} | undefined;
|
|
8776
|
+
graphQL?: {
|
|
8777
|
+
displayFields?: {
|
|
8778
|
+
label?: string | undefined;
|
|
8779
|
+
labelTranslationKey?: string | undefined;
|
|
8780
|
+
propertyName?: string | undefined;
|
|
8781
|
+
}[] | undefined;
|
|
8782
|
+
localQueryId?: string | undefined;
|
|
8783
|
+
query?: string | undefined;
|
|
8784
|
+
responseField?: "repositories.items" | undefined;
|
|
8785
|
+
variables?: {
|
|
8786
|
+
type?: string | undefined;
|
|
8787
|
+
label?: string | undefined;
|
|
8788
|
+
labelTranslationKey?: string | undefined;
|
|
8789
|
+
minLength?: number | undefined;
|
|
8790
|
+
name?: string | undefined;
|
|
8791
|
+
defaultValue?: string | undefined;
|
|
8792
|
+
}[] | undefined;
|
|
8793
|
+
queryId?: string | undefined;
|
|
8794
|
+
answerField?: "uri" | undefined;
|
|
8795
|
+
} | undefined;
|
|
8796
|
+
} | undefined;
|
|
8797
|
+
preferences?: {
|
|
8798
|
+
value?: string | undefined;
|
|
8799
|
+
label?: string | undefined;
|
|
8800
|
+
}[] | undefined;
|
|
8801
|
+
}>, z.ZodObject<{
|
|
8802
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
8803
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8804
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8805
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8806
|
+
}, "strip", z.ZodTypeAny, {
|
|
8807
|
+
schemaVersion: string;
|
|
8808
|
+
labelTranslationKey?: string | undefined;
|
|
8809
|
+
}, {
|
|
8810
|
+
schemaVersion?: string | undefined;
|
|
8811
|
+
labelTranslationKey?: string | undefined;
|
|
8812
|
+
}>>;
|
|
8813
|
+
} & {
|
|
8814
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
8815
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
8816
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
8817
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
8818
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
8819
|
+
title: z.ZodOptional<z.ZodString>;
|
|
8820
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
8821
|
+
}, "strip", z.ZodTypeAny, {
|
|
9674
8822
|
schemaVersion: string;
|
|
9675
8823
|
title?: string | undefined;
|
|
9676
8824
|
usageDescription?: string | undefined;
|
|
9677
|
-
}
|
|
9678
|
-
|
|
8825
|
+
}, {
|
|
8826
|
+
schemaVersion?: string | undefined;
|
|
8827
|
+
title?: string | undefined;
|
|
8828
|
+
usageDescription?: string | undefined;
|
|
8829
|
+
}>>;
|
|
8830
|
+
} & {
|
|
8831
|
+
type: z.ZodLiteral<"metadataStandardSearch">;
|
|
8832
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
8833
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8834
|
+
help: z.ZodOptional<z.ZodString>;
|
|
8835
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8836
|
+
}, "strip", z.ZodTypeAny, {
|
|
8837
|
+
label?: string | undefined;
|
|
8838
|
+
help?: string | undefined;
|
|
8839
|
+
labelTranslationKey?: string | undefined;
|
|
8840
|
+
}, {
|
|
8841
|
+
label?: string | undefined;
|
|
8842
|
+
help?: string | undefined;
|
|
8843
|
+
labelTranslationKey?: string | undefined;
|
|
8844
|
+
}>>;
|
|
8845
|
+
graphQL: z.ZodDefault<z.ZodObject<{
|
|
8846
|
+
localQueryId: z.ZodOptional<z.ZodString>;
|
|
8847
|
+
} & {
|
|
8848
|
+
query: z.ZodDefault<z.ZodLiteral<string>>;
|
|
8849
|
+
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
8850
|
+
variables: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8851
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
8852
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8853
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8854
|
+
name: z.ZodDefault<z.ZodString>;
|
|
8855
|
+
type: z.ZodDefault<z.ZodString>;
|
|
8856
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8857
|
+
}, "strip", z.ZodTypeAny, {
|
|
8858
|
+
type: string;
|
|
8859
|
+
name: string;
|
|
8860
|
+
label?: string | undefined;
|
|
8861
|
+
labelTranslationKey?: string | undefined;
|
|
8862
|
+
minLength?: number | undefined;
|
|
8863
|
+
defaultValue?: string | undefined;
|
|
8864
|
+
}, {
|
|
8865
|
+
type?: string | undefined;
|
|
8866
|
+
label?: string | undefined;
|
|
8867
|
+
labelTranslationKey?: string | undefined;
|
|
8868
|
+
minLength?: number | undefined;
|
|
8869
|
+
name?: string | undefined;
|
|
8870
|
+
defaultValue?: string | undefined;
|
|
8871
|
+
}>, "many">>;
|
|
8872
|
+
answerField: z.ZodDefault<z.ZodLiteral<"uri">>;
|
|
8873
|
+
displayFields: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8874
|
+
propertyName: z.ZodDefault<z.ZodString>;
|
|
8875
|
+
label: z.ZodDefault<z.ZodString>;
|
|
8876
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
8877
|
+
}, "strip", z.ZodTypeAny, {
|
|
8878
|
+
label: string;
|
|
8879
|
+
propertyName: string;
|
|
8880
|
+
labelTranslationKey?: string | undefined;
|
|
8881
|
+
}, {
|
|
8882
|
+
label?: string | undefined;
|
|
8883
|
+
labelTranslationKey?: string | undefined;
|
|
8884
|
+
propertyName?: string | undefined;
|
|
8885
|
+
}>, "many">>;
|
|
8886
|
+
responseField: z.ZodDefault<z.ZodLiteral<"metadataStandards.items">>;
|
|
8887
|
+
}, "strip", z.ZodTypeAny, {
|
|
9679
8888
|
displayFields: {
|
|
9680
8889
|
label: string;
|
|
9681
8890
|
propertyName: string;
|
|
9682
8891
|
labelTranslationKey?: string | undefined;
|
|
9683
8892
|
}[];
|
|
9684
8893
|
query: string;
|
|
9685
|
-
responseField: "
|
|
8894
|
+
responseField: "metadataStandards.items";
|
|
9686
8895
|
variables: {
|
|
9687
8896
|
type: string;
|
|
9688
8897
|
name: string;
|
|
@@ -9694,8 +8903,27 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
9694
8903
|
answerField: "uri";
|
|
9695
8904
|
localQueryId?: string | undefined;
|
|
9696
8905
|
queryId?: string | undefined;
|
|
9697
|
-
}
|
|
9698
|
-
|
|
8906
|
+
}, {
|
|
8907
|
+
displayFields?: {
|
|
8908
|
+
label?: string | undefined;
|
|
8909
|
+
labelTranslationKey?: string | undefined;
|
|
8910
|
+
propertyName?: string | undefined;
|
|
8911
|
+
}[] | undefined;
|
|
8912
|
+
localQueryId?: string | undefined;
|
|
8913
|
+
query?: string | undefined;
|
|
8914
|
+
responseField?: "metadataStandards.items" | undefined;
|
|
8915
|
+
variables?: {
|
|
8916
|
+
type?: string | undefined;
|
|
8917
|
+
label?: string | undefined;
|
|
8918
|
+
labelTranslationKey?: string | undefined;
|
|
8919
|
+
minLength?: number | undefined;
|
|
8920
|
+
name?: string | undefined;
|
|
8921
|
+
defaultValue?: string | undefined;
|
|
8922
|
+
}[] | undefined;
|
|
8923
|
+
queryId?: string | undefined;
|
|
8924
|
+
answerField?: "uri" | undefined;
|
|
8925
|
+
}>>;
|
|
8926
|
+
}, "strip", z.ZodTypeAny, {
|
|
9699
8927
|
type: "metadataStandardSearch";
|
|
9700
8928
|
attributes: {
|
|
9701
8929
|
label?: string | undefined;
|
|
@@ -9727,8 +8955,73 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
9727
8955
|
localQueryId?: string | undefined;
|
|
9728
8956
|
queryId?: string | undefined;
|
|
9729
8957
|
};
|
|
9730
|
-
}
|
|
9731
|
-
type: "
|
|
8958
|
+
}, {
|
|
8959
|
+
type: "metadataStandardSearch";
|
|
8960
|
+
attributes?: {
|
|
8961
|
+
label?: string | undefined;
|
|
8962
|
+
help?: string | undefined;
|
|
8963
|
+
labelTranslationKey?: string | undefined;
|
|
8964
|
+
} | undefined;
|
|
8965
|
+
meta?: {
|
|
8966
|
+
schemaVersion?: string | undefined;
|
|
8967
|
+
title?: string | undefined;
|
|
8968
|
+
usageDescription?: string | undefined;
|
|
8969
|
+
} | undefined;
|
|
8970
|
+
graphQL?: {
|
|
8971
|
+
displayFields?: {
|
|
8972
|
+
label?: string | undefined;
|
|
8973
|
+
labelTranslationKey?: string | undefined;
|
|
8974
|
+
propertyName?: string | undefined;
|
|
8975
|
+
}[] | undefined;
|
|
8976
|
+
localQueryId?: string | undefined;
|
|
8977
|
+
query?: string | undefined;
|
|
8978
|
+
responseField?: "metadataStandards.items" | undefined;
|
|
8979
|
+
variables?: {
|
|
8980
|
+
type?: string | undefined;
|
|
8981
|
+
label?: string | undefined;
|
|
8982
|
+
labelTranslationKey?: string | undefined;
|
|
8983
|
+
minLength?: number | undefined;
|
|
8984
|
+
name?: string | undefined;
|
|
8985
|
+
defaultValue?: string | undefined;
|
|
8986
|
+
}[] | undefined;
|
|
8987
|
+
queryId?: string | undefined;
|
|
8988
|
+
answerField?: "uri" | undefined;
|
|
8989
|
+
} | undefined;
|
|
8990
|
+
}>>;
|
|
8991
|
+
preferences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
8992
|
+
label: z.ZodDefault<z.ZodString>;
|
|
8993
|
+
value: z.ZodDefault<z.ZodString>;
|
|
8994
|
+
}, "strip", z.ZodTypeAny, {
|
|
8995
|
+
value: string;
|
|
8996
|
+
label: string;
|
|
8997
|
+
}, {
|
|
8998
|
+
value?: string | undefined;
|
|
8999
|
+
label?: string | undefined;
|
|
9000
|
+
}>, "many">>;
|
|
9001
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
9002
|
+
help: z.ZodDefault<z.ZodString>;
|
|
9003
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
9004
|
+
}, "strip", z.ZodTypeAny, {
|
|
9005
|
+
help: string;
|
|
9006
|
+
labelTranslationKey: string;
|
|
9007
|
+
}, {
|
|
9008
|
+
help?: string | undefined;
|
|
9009
|
+
labelTranslationKey?: string | undefined;
|
|
9010
|
+
}>>;
|
|
9011
|
+
}, "strip", z.ZodTypeAny, {
|
|
9012
|
+
attributes: {
|
|
9013
|
+
help: string;
|
|
9014
|
+
labelTranslationKey: string;
|
|
9015
|
+
};
|
|
9016
|
+
meta: {
|
|
9017
|
+
schemaVersion: string;
|
|
9018
|
+
labelTranslationKey?: string | undefined;
|
|
9019
|
+
};
|
|
9020
|
+
heading: string;
|
|
9021
|
+
required: boolean;
|
|
9022
|
+
enabled: boolean;
|
|
9023
|
+
content: {
|
|
9024
|
+
type: "metadataStandardSearch";
|
|
9732
9025
|
attributes: {
|
|
9733
9026
|
label?: string | undefined;
|
|
9734
9027
|
help?: string | undefined;
|
|
@@ -9746,7 +9039,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
9746
9039
|
labelTranslationKey?: string | undefined;
|
|
9747
9040
|
}[];
|
|
9748
9041
|
query: string;
|
|
9749
|
-
responseField: "
|
|
9042
|
+
responseField: "metadataStandards.items";
|
|
9750
9043
|
variables: {
|
|
9751
9044
|
type: string;
|
|
9752
9045
|
name: string;
|
|
@@ -9760,7 +9053,15 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
9760
9053
|
queryId?: string | undefined;
|
|
9761
9054
|
};
|
|
9762
9055
|
};
|
|
9056
|
+
preferences: {
|
|
9057
|
+
value: string;
|
|
9058
|
+
label: string;
|
|
9059
|
+
}[];
|
|
9763
9060
|
}, {
|
|
9061
|
+
attributes?: {
|
|
9062
|
+
help?: string | undefined;
|
|
9063
|
+
labelTranslationKey?: string | undefined;
|
|
9064
|
+
} | undefined;
|
|
9764
9065
|
meta?: {
|
|
9765
9066
|
schemaVersion?: string | undefined;
|
|
9766
9067
|
labelTranslationKey?: string | undefined;
|
|
@@ -9769,231 +9070,201 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
9769
9070
|
required?: boolean | undefined;
|
|
9770
9071
|
enabled?: boolean | undefined;
|
|
9771
9072
|
content?: {
|
|
9772
|
-
type: "
|
|
9773
|
-
attributes?: {
|
|
9774
|
-
label?: string | undefined;
|
|
9775
|
-
help?: string | undefined;
|
|
9776
|
-
labelTranslationKey?: string | undefined;
|
|
9777
|
-
max?: number | undefined;
|
|
9778
|
-
min?: number | undefined;
|
|
9779
|
-
step?: number | undefined;
|
|
9780
|
-
denomination?: string | undefined;
|
|
9781
|
-
} | undefined;
|
|
9782
|
-
meta?: {
|
|
9783
|
-
schemaVersion?: string | undefined;
|
|
9784
|
-
title?: string | undefined;
|
|
9785
|
-
usageDescription?: string | undefined;
|
|
9786
|
-
} | undefined;
|
|
9787
|
-
} | {
|
|
9788
|
-
type: "number";
|
|
9073
|
+
type: "metadataStandardSearch";
|
|
9789
9074
|
attributes?: {
|
|
9790
9075
|
label?: string | undefined;
|
|
9791
9076
|
help?: string | undefined;
|
|
9792
9077
|
labelTranslationKey?: string | undefined;
|
|
9793
|
-
max?: number | undefined;
|
|
9794
|
-
min?: number | undefined;
|
|
9795
|
-
step?: number | undefined;
|
|
9796
9078
|
} | undefined;
|
|
9797
9079
|
meta?: {
|
|
9798
9080
|
schemaVersion?: string | undefined;
|
|
9799
9081
|
title?: string | undefined;
|
|
9800
9082
|
usageDescription?: string | undefined;
|
|
9801
9083
|
} | undefined;
|
|
9802
|
-
|
|
9803
|
-
|
|
9804
|
-
attributes?: {
|
|
9805
|
-
label?: string | undefined;
|
|
9806
|
-
help?: string | undefined;
|
|
9807
|
-
labelTranslationKey?: string | undefined;
|
|
9808
|
-
context?: {
|
|
9809
|
-
value?: string | undefined;
|
|
9084
|
+
graphQL?: {
|
|
9085
|
+
displayFields?: {
|
|
9810
9086
|
label?: string | undefined;
|
|
9811
9087
|
labelTranslationKey?: string | undefined;
|
|
9088
|
+
propertyName?: string | undefined;
|
|
9812
9089
|
}[] | undefined;
|
|
9813
|
-
|
|
9814
|
-
|
|
9815
|
-
|
|
9816
|
-
|
|
9817
|
-
|
|
9818
|
-
|
|
9819
|
-
|
|
9820
|
-
|
|
9821
|
-
|
|
9822
|
-
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9826
|
-
help?: string | undefined;
|
|
9827
|
-
labelTranslationKey?: string | undefined;
|
|
9828
|
-
maxLength?: number | undefined;
|
|
9829
|
-
minLength?: number | undefined;
|
|
9830
|
-
pattern?: string | undefined;
|
|
9831
|
-
multiple?: boolean | undefined;
|
|
9832
|
-
} | undefined;
|
|
9833
|
-
meta?: {
|
|
9834
|
-
schemaVersion?: string | undefined;
|
|
9835
|
-
title?: string | undefined;
|
|
9836
|
-
usageDescription?: string | undefined;
|
|
9837
|
-
} | undefined;
|
|
9838
|
-
} | {
|
|
9839
|
-
type: "textArea";
|
|
9840
|
-
attributes?: {
|
|
9841
|
-
label?: string | undefined;
|
|
9842
|
-
help?: string | undefined;
|
|
9843
|
-
labelTranslationKey?: string | undefined;
|
|
9844
|
-
maxLength?: number | undefined;
|
|
9845
|
-
minLength?: number | undefined;
|
|
9846
|
-
cols?: number | undefined;
|
|
9847
|
-
rows?: number | undefined;
|
|
9848
|
-
asRichText?: boolean | undefined;
|
|
9090
|
+
localQueryId?: string | undefined;
|
|
9091
|
+
query?: string | undefined;
|
|
9092
|
+
responseField?: "metadataStandards.items" | undefined;
|
|
9093
|
+
variables?: {
|
|
9094
|
+
type?: string | undefined;
|
|
9095
|
+
label?: string | undefined;
|
|
9096
|
+
labelTranslationKey?: string | undefined;
|
|
9097
|
+
minLength?: number | undefined;
|
|
9098
|
+
name?: string | undefined;
|
|
9099
|
+
defaultValue?: string | undefined;
|
|
9100
|
+
}[] | undefined;
|
|
9101
|
+
queryId?: string | undefined;
|
|
9102
|
+
answerField?: "uri" | undefined;
|
|
9849
9103
|
} | undefined;
|
|
9850
|
-
|
|
9851
|
-
|
|
9104
|
+
} | undefined;
|
|
9105
|
+
preferences?: {
|
|
9106
|
+
value?: string | undefined;
|
|
9107
|
+
label?: string | undefined;
|
|
9108
|
+
}[] | undefined;
|
|
9109
|
+
}>, z.ZodObject<{
|
|
9110
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
9111
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
9112
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9113
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9114
|
+
}, "strip", z.ZodTypeAny, {
|
|
9115
|
+
schemaVersion: string;
|
|
9116
|
+
labelTranslationKey?: string | undefined;
|
|
9117
|
+
}, {
|
|
9118
|
+
schemaVersion?: string | undefined;
|
|
9119
|
+
labelTranslationKey?: string | undefined;
|
|
9120
|
+
}>>;
|
|
9121
|
+
} & {
|
|
9122
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
9123
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9124
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
9125
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
9126
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9127
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9128
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
9129
|
+
}, "strip", z.ZodTypeAny, {
|
|
9130
|
+
schemaVersion: string;
|
|
9852
9131
|
title?: string | undefined;
|
|
9853
9132
|
usageDescription?: string | undefined;
|
|
9854
|
-
}
|
|
9855
|
-
} | {
|
|
9856
|
-
type: "text";
|
|
9857
|
-
attributes?: {
|
|
9858
|
-
label?: string | undefined;
|
|
9859
|
-
help?: string | undefined;
|
|
9860
|
-
labelTranslationKey?: string | undefined;
|
|
9861
|
-
maxLength?: number | undefined;
|
|
9862
|
-
minLength?: number | undefined;
|
|
9863
|
-
pattern?: string | undefined;
|
|
9864
|
-
} | undefined;
|
|
9865
|
-
meta?: {
|
|
9133
|
+
}, {
|
|
9866
9134
|
schemaVersion?: string | undefined;
|
|
9867
9135
|
title?: string | undefined;
|
|
9868
9136
|
usageDescription?: string | undefined;
|
|
9869
|
-
}
|
|
9870
|
-
}
|
|
9871
|
-
type: "
|
|
9872
|
-
attributes
|
|
9137
|
+
}>>;
|
|
9138
|
+
} & {
|
|
9139
|
+
type: z.ZodLiteral<"licenseSearch">;
|
|
9140
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
9141
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9142
|
+
help: z.ZodOptional<z.ZodString>;
|
|
9143
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9144
|
+
}, "strip", z.ZodTypeAny, {
|
|
9873
9145
|
label?: string | undefined;
|
|
9874
9146
|
help?: string | undefined;
|
|
9875
9147
|
labelTranslationKey?: string | undefined;
|
|
9876
|
-
|
|
9877
|
-
minLength?: number | undefined;
|
|
9878
|
-
pattern?: string | undefined;
|
|
9879
|
-
} | undefined;
|
|
9880
|
-
meta?: {
|
|
9881
|
-
schemaVersion?: string | undefined;
|
|
9882
|
-
title?: string | undefined;
|
|
9883
|
-
usageDescription?: string | undefined;
|
|
9884
|
-
} | undefined;
|
|
9885
|
-
} | {
|
|
9886
|
-
type: "date";
|
|
9887
|
-
attributes?: {
|
|
9148
|
+
}, {
|
|
9888
9149
|
label?: string | undefined;
|
|
9889
9150
|
help?: string | undefined;
|
|
9890
9151
|
labelTranslationKey?: string | undefined;
|
|
9891
|
-
|
|
9892
|
-
|
|
9893
|
-
|
|
9894
|
-
}
|
|
9895
|
-
|
|
9896
|
-
|
|
9897
|
-
|
|
9898
|
-
|
|
9899
|
-
|
|
9900
|
-
|
|
9901
|
-
|
|
9902
|
-
|
|
9152
|
+
}>>;
|
|
9153
|
+
graphQL: z.ZodDefault<z.ZodObject<{
|
|
9154
|
+
localQueryId: z.ZodOptional<z.ZodString>;
|
|
9155
|
+
} & {
|
|
9156
|
+
query: z.ZodDefault<z.ZodLiteral<string>>;
|
|
9157
|
+
queryId: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
9158
|
+
variables: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9159
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
9160
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9161
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9162
|
+
name: z.ZodDefault<z.ZodString>;
|
|
9163
|
+
type: z.ZodDefault<z.ZodString>;
|
|
9164
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
9165
|
+
}, "strip", z.ZodTypeAny, {
|
|
9166
|
+
type: string;
|
|
9167
|
+
name: string;
|
|
9168
|
+
label?: string | undefined;
|
|
9169
|
+
labelTranslationKey?: string | undefined;
|
|
9170
|
+
minLength?: number | undefined;
|
|
9171
|
+
defaultValue?: string | undefined;
|
|
9172
|
+
}, {
|
|
9173
|
+
type?: string | undefined;
|
|
9174
|
+
label?: string | undefined;
|
|
9175
|
+
labelTranslationKey?: string | undefined;
|
|
9176
|
+
minLength?: number | undefined;
|
|
9177
|
+
name?: string | undefined;
|
|
9178
|
+
defaultValue?: string | undefined;
|
|
9179
|
+
}>, "many">>;
|
|
9180
|
+
answerField: z.ZodDefault<z.ZodLiteral<"uri">>;
|
|
9181
|
+
displayFields: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9182
|
+
propertyName: z.ZodDefault<z.ZodString>;
|
|
9183
|
+
label: z.ZodDefault<z.ZodString>;
|
|
9184
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9185
|
+
}, "strip", z.ZodTypeAny, {
|
|
9186
|
+
label: string;
|
|
9187
|
+
propertyName: string;
|
|
9188
|
+
labelTranslationKey?: string | undefined;
|
|
9189
|
+
}, {
|
|
9190
|
+
label?: string | undefined;
|
|
9191
|
+
labelTranslationKey?: string | undefined;
|
|
9192
|
+
propertyName?: string | undefined;
|
|
9193
|
+
}>, "many">>;
|
|
9194
|
+
responseField: z.ZodDefault<z.ZodLiteral<"licenses.items">>;
|
|
9195
|
+
}, "strip", z.ZodTypeAny, {
|
|
9196
|
+
displayFields: {
|
|
9197
|
+
label: string;
|
|
9198
|
+
propertyName: string;
|
|
9199
|
+
labelTranslationKey?: string | undefined;
|
|
9200
|
+
}[];
|
|
9201
|
+
query: string;
|
|
9202
|
+
responseField: "licenses.items";
|
|
9203
|
+
variables: {
|
|
9204
|
+
type: string;
|
|
9205
|
+
name: string;
|
|
9206
|
+
label?: string | undefined;
|
|
9207
|
+
labelTranslationKey?: string | undefined;
|
|
9208
|
+
minLength?: number | undefined;
|
|
9209
|
+
defaultValue?: string | undefined;
|
|
9210
|
+
}[];
|
|
9211
|
+
answerField: "uri";
|
|
9212
|
+
localQueryId?: string | undefined;
|
|
9213
|
+
queryId?: string | undefined;
|
|
9214
|
+
}, {
|
|
9215
|
+
displayFields?: {
|
|
9216
|
+
label?: string | undefined;
|
|
9217
|
+
labelTranslationKey?: string | undefined;
|
|
9218
|
+
propertyName?: string | undefined;
|
|
9219
|
+
}[] | undefined;
|
|
9220
|
+
localQueryId?: string | undefined;
|
|
9221
|
+
query?: string | undefined;
|
|
9222
|
+
responseField?: "licenses.items" | undefined;
|
|
9223
|
+
variables?: {
|
|
9224
|
+
type?: string | undefined;
|
|
9225
|
+
label?: string | undefined;
|
|
9226
|
+
labelTranslationKey?: string | undefined;
|
|
9227
|
+
minLength?: number | undefined;
|
|
9228
|
+
name?: string | undefined;
|
|
9229
|
+
defaultValue?: string | undefined;
|
|
9230
|
+
}[] | undefined;
|
|
9231
|
+
queryId?: string | undefined;
|
|
9232
|
+
answerField?: "uri" | undefined;
|
|
9233
|
+
}>>;
|
|
9234
|
+
}, "strip", z.ZodTypeAny, {
|
|
9235
|
+
type: "licenseSearch";
|
|
9236
|
+
attributes: {
|
|
9903
9237
|
label?: string | undefined;
|
|
9904
9238
|
help?: string | undefined;
|
|
9905
9239
|
labelTranslationKey?: string | undefined;
|
|
9906
|
-
}
|
|
9907
|
-
meta
|
|
9908
|
-
schemaVersion
|
|
9240
|
+
};
|
|
9241
|
+
meta: {
|
|
9242
|
+
schemaVersion: string;
|
|
9909
9243
|
title?: string | undefined;
|
|
9910
9244
|
usageDescription?: string | undefined;
|
|
9911
|
-
}
|
|
9912
|
-
|
|
9913
|
-
|
|
9914
|
-
label
|
|
9915
|
-
|
|
9245
|
+
};
|
|
9246
|
+
graphQL: {
|
|
9247
|
+
displayFields: {
|
|
9248
|
+
label: string;
|
|
9249
|
+
propertyName: string;
|
|
9916
9250
|
labelTranslationKey?: string | undefined;
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
|
|
9920
|
-
|
|
9921
|
-
|
|
9251
|
+
}[];
|
|
9252
|
+
query: string;
|
|
9253
|
+
responseField: "licenses.items";
|
|
9254
|
+
variables: {
|
|
9255
|
+
type: string;
|
|
9256
|
+
name: string;
|
|
9922
9257
|
label?: string | undefined;
|
|
9923
|
-
help?: string | undefined;
|
|
9924
9258
|
labelTranslationKey?: string | undefined;
|
|
9925
|
-
|
|
9926
|
-
|
|
9927
|
-
|
|
9928
|
-
|
|
9929
|
-
|
|
9930
|
-
|
|
9931
|
-
|
|
9932
|
-
|
|
9933
|
-
|
|
9934
|
-
help?: string | undefined;
|
|
9935
|
-
labelTranslationKey?: string | undefined;
|
|
9936
|
-
checked?: boolean | undefined;
|
|
9937
|
-
} | undefined;
|
|
9938
|
-
meta?: {
|
|
9939
|
-
schemaVersion?: string | undefined;
|
|
9940
|
-
title?: string | undefined;
|
|
9941
|
-
usageDescription?: string | undefined;
|
|
9942
|
-
} | undefined;
|
|
9943
|
-
} | {
|
|
9944
|
-
type: "checkBoxes";
|
|
9945
|
-
options?: {
|
|
9946
|
-
value?: string | undefined;
|
|
9947
|
-
label?: string | undefined;
|
|
9948
|
-
checked?: boolean | undefined;
|
|
9949
|
-
}[] | undefined;
|
|
9950
|
-
attributes?: {
|
|
9951
|
-
label?: string | undefined;
|
|
9952
|
-
help?: string | undefined;
|
|
9953
|
-
labelTranslationKey?: string | undefined;
|
|
9954
|
-
} | undefined;
|
|
9955
|
-
meta?: {
|
|
9956
|
-
schemaVersion?: string | undefined;
|
|
9957
|
-
title?: string | undefined;
|
|
9958
|
-
usageDescription?: string | undefined;
|
|
9959
|
-
} | undefined;
|
|
9960
|
-
} | {
|
|
9961
|
-
type: "radioButtons";
|
|
9962
|
-
options?: {
|
|
9963
|
-
value?: string | undefined;
|
|
9964
|
-
label?: string | undefined;
|
|
9965
|
-
selected?: boolean | undefined;
|
|
9966
|
-
}[] | undefined;
|
|
9967
|
-
attributes?: {
|
|
9968
|
-
label?: string | undefined;
|
|
9969
|
-
help?: string | undefined;
|
|
9970
|
-
labelTranslationKey?: string | undefined;
|
|
9971
|
-
} | undefined;
|
|
9972
|
-
meta?: {
|
|
9973
|
-
schemaVersion?: string | undefined;
|
|
9974
|
-
title?: string | undefined;
|
|
9975
|
-
usageDescription?: string | undefined;
|
|
9976
|
-
} | undefined;
|
|
9977
|
-
} | {
|
|
9978
|
-
type: "selectBox";
|
|
9979
|
-
options?: {
|
|
9980
|
-
value?: string | undefined;
|
|
9981
|
-
label?: string | undefined;
|
|
9982
|
-
selected?: boolean | undefined;
|
|
9983
|
-
}[] | undefined;
|
|
9984
|
-
attributes?: {
|
|
9985
|
-
multiple: false;
|
|
9986
|
-
label?: string | undefined;
|
|
9987
|
-
help?: string | undefined;
|
|
9988
|
-
labelTranslationKey?: string | undefined;
|
|
9989
|
-
} | undefined;
|
|
9990
|
-
meta?: {
|
|
9991
|
-
schemaVersion?: string | undefined;
|
|
9992
|
-
title?: string | undefined;
|
|
9993
|
-
usageDescription?: string | undefined;
|
|
9994
|
-
} | undefined;
|
|
9995
|
-
} | {
|
|
9996
|
-
type: "affiliationSearch";
|
|
9259
|
+
minLength?: number | undefined;
|
|
9260
|
+
defaultValue?: string | undefined;
|
|
9261
|
+
}[];
|
|
9262
|
+
answerField: "uri";
|
|
9263
|
+
localQueryId?: string | undefined;
|
|
9264
|
+
queryId?: string | undefined;
|
|
9265
|
+
};
|
|
9266
|
+
}, {
|
|
9267
|
+
type: "licenseSearch";
|
|
9997
9268
|
attributes?: {
|
|
9998
9269
|
label?: string | undefined;
|
|
9999
9270
|
help?: string | undefined;
|
|
@@ -10008,23 +9279,106 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10008
9279
|
displayFields?: {
|
|
10009
9280
|
label?: string | undefined;
|
|
10010
9281
|
labelTranslationKey?: string | undefined;
|
|
10011
|
-
propertyName?:
|
|
9282
|
+
propertyName?: string | undefined;
|
|
10012
9283
|
}[] | undefined;
|
|
10013
9284
|
localQueryId?: string | undefined;
|
|
10014
9285
|
query?: string | undefined;
|
|
10015
|
-
responseField?: "
|
|
9286
|
+
responseField?: "licenses.items" | undefined;
|
|
10016
9287
|
variables?: {
|
|
10017
9288
|
type?: string | undefined;
|
|
10018
9289
|
label?: string | undefined;
|
|
10019
9290
|
labelTranslationKey?: string | undefined;
|
|
10020
|
-
minLength?:
|
|
10021
|
-
name?:
|
|
9291
|
+
minLength?: number | undefined;
|
|
9292
|
+
name?: string | undefined;
|
|
9293
|
+
defaultValue?: string | undefined;
|
|
10022
9294
|
}[] | undefined;
|
|
10023
9295
|
queryId?: string | undefined;
|
|
10024
9296
|
answerField?: "uri" | undefined;
|
|
10025
9297
|
} | undefined;
|
|
10026
|
-
}
|
|
10027
|
-
|
|
9298
|
+
}>>;
|
|
9299
|
+
preferences: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9300
|
+
label: z.ZodDefault<z.ZodString>;
|
|
9301
|
+
value: z.ZodDefault<z.ZodString>;
|
|
9302
|
+
}, "strip", z.ZodTypeAny, {
|
|
9303
|
+
value: string;
|
|
9304
|
+
label: string;
|
|
9305
|
+
}, {
|
|
9306
|
+
value?: string | undefined;
|
|
9307
|
+
label?: string | undefined;
|
|
9308
|
+
}>, "many">>;
|
|
9309
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
9310
|
+
help: z.ZodDefault<z.ZodString>;
|
|
9311
|
+
labelTranslationKey: z.ZodDefault<z.ZodString>;
|
|
9312
|
+
}, "strip", z.ZodTypeAny, {
|
|
9313
|
+
help: string;
|
|
9314
|
+
labelTranslationKey: string;
|
|
9315
|
+
}, {
|
|
9316
|
+
help?: string | undefined;
|
|
9317
|
+
labelTranslationKey?: string | undefined;
|
|
9318
|
+
}>>;
|
|
9319
|
+
}, "strip", z.ZodTypeAny, {
|
|
9320
|
+
attributes: {
|
|
9321
|
+
help: string;
|
|
9322
|
+
labelTranslationKey: string;
|
|
9323
|
+
};
|
|
9324
|
+
meta: {
|
|
9325
|
+
schemaVersion: string;
|
|
9326
|
+
labelTranslationKey?: string | undefined;
|
|
9327
|
+
};
|
|
9328
|
+
heading: string;
|
|
9329
|
+
required: boolean;
|
|
9330
|
+
enabled: boolean;
|
|
9331
|
+
content: {
|
|
9332
|
+
type: "licenseSearch";
|
|
9333
|
+
attributes: {
|
|
9334
|
+
label?: string | undefined;
|
|
9335
|
+
help?: string | undefined;
|
|
9336
|
+
labelTranslationKey?: string | undefined;
|
|
9337
|
+
};
|
|
9338
|
+
meta: {
|
|
9339
|
+
schemaVersion: string;
|
|
9340
|
+
title?: string | undefined;
|
|
9341
|
+
usageDescription?: string | undefined;
|
|
9342
|
+
};
|
|
9343
|
+
graphQL: {
|
|
9344
|
+
displayFields: {
|
|
9345
|
+
label: string;
|
|
9346
|
+
propertyName: string;
|
|
9347
|
+
labelTranslationKey?: string | undefined;
|
|
9348
|
+
}[];
|
|
9349
|
+
query: string;
|
|
9350
|
+
responseField: "licenses.items";
|
|
9351
|
+
variables: {
|
|
9352
|
+
type: string;
|
|
9353
|
+
name: string;
|
|
9354
|
+
label?: string | undefined;
|
|
9355
|
+
labelTranslationKey?: string | undefined;
|
|
9356
|
+
minLength?: number | undefined;
|
|
9357
|
+
defaultValue?: string | undefined;
|
|
9358
|
+
}[];
|
|
9359
|
+
answerField: "uri";
|
|
9360
|
+
localQueryId?: string | undefined;
|
|
9361
|
+
queryId?: string | undefined;
|
|
9362
|
+
};
|
|
9363
|
+
};
|
|
9364
|
+
preferences: {
|
|
9365
|
+
value: string;
|
|
9366
|
+
label: string;
|
|
9367
|
+
}[];
|
|
9368
|
+
}, {
|
|
9369
|
+
attributes?: {
|
|
9370
|
+
help?: string | undefined;
|
|
9371
|
+
labelTranslationKey?: string | undefined;
|
|
9372
|
+
} | undefined;
|
|
9373
|
+
meta?: {
|
|
9374
|
+
schemaVersion?: string | undefined;
|
|
9375
|
+
labelTranslationKey?: string | undefined;
|
|
9376
|
+
} | undefined;
|
|
9377
|
+
heading?: string | undefined;
|
|
9378
|
+
required?: boolean | undefined;
|
|
9379
|
+
enabled?: boolean | undefined;
|
|
9380
|
+
content?: {
|
|
9381
|
+
type: "licenseSearch";
|
|
10028
9382
|
attributes?: {
|
|
10029
9383
|
label?: string | undefined;
|
|
10030
9384
|
help?: string | undefined;
|
|
@@ -10043,7 +9397,7 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10043
9397
|
}[] | undefined;
|
|
10044
9398
|
localQueryId?: string | undefined;
|
|
10045
9399
|
query?: string | undefined;
|
|
10046
|
-
responseField?: "
|
|
9400
|
+
responseField?: "licenses.items" | undefined;
|
|
10047
9401
|
variables?: {
|
|
10048
9402
|
type?: string | undefined;
|
|
10049
9403
|
label?: string | undefined;
|
|
@@ -10055,72 +9409,123 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10055
9409
|
queryId?: string | undefined;
|
|
10056
9410
|
answerField?: "uri" | undefined;
|
|
10057
9411
|
} | undefined;
|
|
10058
|
-
} |
|
|
10059
|
-
|
|
9412
|
+
} | undefined;
|
|
9413
|
+
preferences?: {
|
|
9414
|
+
value?: string | undefined;
|
|
9415
|
+
label?: string | undefined;
|
|
9416
|
+
}[] | undefined;
|
|
9417
|
+
}>, z.ZodObject<{
|
|
9418
|
+
required: z.ZodDefault<z.ZodBoolean>;
|
|
9419
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
9420
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9421
|
+
labelTranslationKey: z.ZodOptional<z.ZodString>;
|
|
9422
|
+
}, "strip", z.ZodTypeAny, {
|
|
9423
|
+
schemaVersion: string;
|
|
9424
|
+
labelTranslationKey?: string | undefined;
|
|
9425
|
+
}, {
|
|
9426
|
+
schemaVersion?: string | undefined;
|
|
9427
|
+
labelTranslationKey?: string | undefined;
|
|
9428
|
+
}>>;
|
|
9429
|
+
} & {
|
|
9430
|
+
heading: z.ZodDefault<z.ZodString>;
|
|
9431
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
9432
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
9433
|
+
meta: z.ZodDefault<z.ZodObject<{
|
|
9434
|
+
schemaVersion: z.ZodDefault<z.ZodString>;
|
|
9435
|
+
title: z.ZodOptional<z.ZodString>;
|
|
9436
|
+
usageDescription: z.ZodOptional<z.ZodString>;
|
|
9437
|
+
}, "strip", z.ZodTypeAny, {
|
|
9438
|
+
schemaVersion: string;
|
|
9439
|
+
title?: string | undefined;
|
|
9440
|
+
usageDescription?: string | undefined;
|
|
9441
|
+
}, {
|
|
9442
|
+
schemaVersion?: string | undefined;
|
|
9443
|
+
title?: string | undefined;
|
|
9444
|
+
usageDescription?: string | undefined;
|
|
9445
|
+
}>>;
|
|
9446
|
+
type: z.ZodLiteral<"text">;
|
|
9447
|
+
} & {
|
|
9448
|
+
attributes: z.ZodDefault<z.ZodObject<{
|
|
9449
|
+
help: z.ZodDefault<z.ZodString>;
|
|
9450
|
+
maxLength: z.ZodDefault<z.ZodNumber>;
|
|
9451
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
9452
|
+
}, "strip", z.ZodTypeAny, {
|
|
9453
|
+
help: string;
|
|
9454
|
+
maxLength: number;
|
|
9455
|
+
defaultValue?: string | undefined;
|
|
9456
|
+
}, {
|
|
9457
|
+
help?: string | undefined;
|
|
9458
|
+
maxLength?: number | undefined;
|
|
9459
|
+
defaultValue?: string | undefined;
|
|
9460
|
+
}>>;
|
|
9461
|
+
}, "strip", z.ZodTypeAny, {
|
|
9462
|
+
type: "text";
|
|
9463
|
+
attributes: {
|
|
9464
|
+
help: string;
|
|
9465
|
+
maxLength: number;
|
|
9466
|
+
defaultValue?: string | undefined;
|
|
9467
|
+
};
|
|
9468
|
+
meta: {
|
|
9469
|
+
schemaVersion: string;
|
|
9470
|
+
title?: string | undefined;
|
|
9471
|
+
usageDescription?: string | undefined;
|
|
9472
|
+
};
|
|
9473
|
+
}, {
|
|
9474
|
+
type: "text";
|
|
10060
9475
|
attributes?: {
|
|
10061
|
-
label?: string | undefined;
|
|
10062
9476
|
help?: string | undefined;
|
|
10063
|
-
|
|
9477
|
+
maxLength?: number | undefined;
|
|
9478
|
+
defaultValue?: string | undefined;
|
|
10064
9479
|
} | undefined;
|
|
10065
9480
|
meta?: {
|
|
10066
9481
|
schemaVersion?: string | undefined;
|
|
10067
9482
|
title?: string | undefined;
|
|
10068
9483
|
usageDescription?: string | undefined;
|
|
10069
9484
|
} | undefined;
|
|
10070
|
-
|
|
10071
|
-
|
|
10072
|
-
|
|
10073
|
-
|
|
10074
|
-
|
|
10075
|
-
|
|
10076
|
-
|
|
10077
|
-
|
|
10078
|
-
|
|
10079
|
-
|
|
10080
|
-
|
|
10081
|
-
|
|
10082
|
-
|
|
10083
|
-
|
|
10084
|
-
|
|
10085
|
-
|
|
10086
|
-
|
|
10087
|
-
|
|
10088
|
-
|
|
10089
|
-
|
|
10090
|
-
|
|
10091
|
-
|
|
9485
|
+
}>>;
|
|
9486
|
+
}, "strip", z.ZodTypeAny, {
|
|
9487
|
+
meta: {
|
|
9488
|
+
schemaVersion: string;
|
|
9489
|
+
labelTranslationKey?: string | undefined;
|
|
9490
|
+
};
|
|
9491
|
+
heading: string;
|
|
9492
|
+
required: boolean;
|
|
9493
|
+
enabled: boolean;
|
|
9494
|
+
content: {
|
|
9495
|
+
type: "text";
|
|
9496
|
+
attributes: {
|
|
9497
|
+
help: string;
|
|
9498
|
+
maxLength: number;
|
|
9499
|
+
defaultValue?: string | undefined;
|
|
9500
|
+
};
|
|
9501
|
+
meta: {
|
|
9502
|
+
schemaVersion: string;
|
|
9503
|
+
title?: string | undefined;
|
|
9504
|
+
usageDescription?: string | undefined;
|
|
9505
|
+
};
|
|
9506
|
+
};
|
|
9507
|
+
}, {
|
|
9508
|
+
meta?: {
|
|
9509
|
+
schemaVersion?: string | undefined;
|
|
9510
|
+
labelTranslationKey?: string | undefined;
|
|
9511
|
+
} | undefined;
|
|
9512
|
+
heading?: string | undefined;
|
|
9513
|
+
required?: boolean | undefined;
|
|
9514
|
+
enabled?: boolean | undefined;
|
|
9515
|
+
content?: {
|
|
9516
|
+
type: "text";
|
|
10092
9517
|
attributes?: {
|
|
10093
|
-
label?: string | undefined;
|
|
10094
9518
|
help?: string | undefined;
|
|
10095
|
-
|
|
9519
|
+
maxLength?: number | undefined;
|
|
9520
|
+
defaultValue?: string | undefined;
|
|
10096
9521
|
} | undefined;
|
|
10097
9522
|
meta?: {
|
|
10098
9523
|
schemaVersion?: string | undefined;
|
|
10099
9524
|
title?: string | undefined;
|
|
10100
9525
|
usageDescription?: string | undefined;
|
|
10101
9526
|
} | undefined;
|
|
10102
|
-
graphQL?: {
|
|
10103
|
-
displayFields?: {
|
|
10104
|
-
label?: string | undefined;
|
|
10105
|
-
labelTranslationKey?: string | undefined;
|
|
10106
|
-
propertyName?: string | undefined;
|
|
10107
|
-
}[] | undefined;
|
|
10108
|
-
localQueryId?: string | undefined;
|
|
10109
|
-
query?: string | undefined;
|
|
10110
|
-
responseField?: "licenses.items" | undefined;
|
|
10111
|
-
variables?: {
|
|
10112
|
-
type?: string | undefined;
|
|
10113
|
-
label?: string | undefined;
|
|
10114
|
-
labelTranslationKey?: string | undefined;
|
|
10115
|
-
minLength?: number | undefined;
|
|
10116
|
-
name?: string | undefined;
|
|
10117
|
-
defaultValue?: string | undefined;
|
|
10118
|
-
}[] | undefined;
|
|
10119
|
-
queryId?: string | undefined;
|
|
10120
|
-
answerField?: "uri" | undefined;
|
|
10121
|
-
} | undefined;
|
|
10122
9527
|
} | undefined;
|
|
10123
|
-
}>, "many">>;
|
|
9528
|
+
}>]>, "many">>;
|
|
10124
9529
|
}, "strip", z.ZodTypeAny, {
|
|
10125
9530
|
type: "researchOutputTable";
|
|
10126
9531
|
attributes: {
|
|
@@ -10138,270 +9543,179 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10138
9543
|
title?: string | undefined;
|
|
10139
9544
|
usageDescription?: string | undefined;
|
|
10140
9545
|
};
|
|
10141
|
-
columns: {
|
|
9546
|
+
columns: ({
|
|
10142
9547
|
meta: {
|
|
10143
9548
|
schemaVersion: string;
|
|
10144
9549
|
labelTranslationKey?: string | undefined;
|
|
10145
9550
|
};
|
|
10146
9551
|
heading: string;
|
|
10147
|
-
required:
|
|
9552
|
+
required: true;
|
|
10148
9553
|
enabled: boolean;
|
|
10149
9554
|
content: {
|
|
10150
|
-
type: "currency";
|
|
10151
|
-
attributes: {
|
|
10152
|
-
min: number;
|
|
10153
|
-
step: number;
|
|
10154
|
-
denomination: string;
|
|
10155
|
-
label?: string | undefined;
|
|
10156
|
-
help?: string | undefined;
|
|
10157
|
-
labelTranslationKey?: string | undefined;
|
|
10158
|
-
max?: number | undefined;
|
|
10159
|
-
};
|
|
10160
|
-
meta: {
|
|
10161
|
-
schemaVersion: string;
|
|
10162
|
-
title?: string | undefined;
|
|
10163
|
-
usageDescription?: string | undefined;
|
|
10164
|
-
};
|
|
10165
|
-
} | {
|
|
10166
|
-
type: "number";
|
|
10167
|
-
attributes: {
|
|
10168
|
-
min: number;
|
|
10169
|
-
step: number;
|
|
10170
|
-
label?: string | undefined;
|
|
10171
|
-
help?: string | undefined;
|
|
10172
|
-
labelTranslationKey?: string | undefined;
|
|
10173
|
-
max?: number | undefined;
|
|
10174
|
-
};
|
|
10175
|
-
meta: {
|
|
10176
|
-
schemaVersion: string;
|
|
10177
|
-
title?: string | undefined;
|
|
10178
|
-
usageDescription?: string | undefined;
|
|
10179
|
-
};
|
|
10180
|
-
} | {
|
|
10181
|
-
type: "numberWithContext";
|
|
10182
|
-
attributes: {
|
|
10183
|
-
context: {
|
|
10184
|
-
value: string;
|
|
10185
|
-
label: string;
|
|
10186
|
-
labelTranslationKey?: string | undefined;
|
|
10187
|
-
}[];
|
|
10188
|
-
min: number;
|
|
10189
|
-
step: number;
|
|
10190
|
-
label?: string | undefined;
|
|
10191
|
-
help?: string | undefined;
|
|
10192
|
-
labelTranslationKey?: string | undefined;
|
|
10193
|
-
max?: number | undefined;
|
|
10194
|
-
};
|
|
10195
|
-
meta: {
|
|
10196
|
-
schemaVersion: string;
|
|
10197
|
-
title?: string | undefined;
|
|
10198
|
-
usageDescription?: string | undefined;
|
|
10199
|
-
};
|
|
10200
|
-
} | {
|
|
10201
|
-
type: "email";
|
|
10202
|
-
attributes: {
|
|
10203
|
-
maxLength: number;
|
|
10204
|
-
multiple: boolean;
|
|
10205
|
-
label?: string | undefined;
|
|
10206
|
-
help?: string | undefined;
|
|
10207
|
-
labelTranslationKey?: string | undefined;
|
|
10208
|
-
minLength?: number | undefined;
|
|
10209
|
-
pattern?: string | undefined;
|
|
10210
|
-
};
|
|
10211
|
-
meta: {
|
|
10212
|
-
schemaVersion: string;
|
|
10213
|
-
title?: string | undefined;
|
|
10214
|
-
usageDescription?: string | undefined;
|
|
10215
|
-
};
|
|
10216
|
-
} | {
|
|
10217
|
-
type: "textArea";
|
|
10218
|
-
attributes: {
|
|
10219
|
-
cols: number;
|
|
10220
|
-
rows: number;
|
|
10221
|
-
asRichText: boolean;
|
|
10222
|
-
label?: string | undefined;
|
|
10223
|
-
help?: string | undefined;
|
|
10224
|
-
labelTranslationKey?: string | undefined;
|
|
10225
|
-
maxLength?: number | undefined;
|
|
10226
|
-
minLength?: number | undefined;
|
|
10227
|
-
};
|
|
10228
|
-
meta: {
|
|
10229
|
-
schemaVersion: string;
|
|
10230
|
-
title?: string | undefined;
|
|
10231
|
-
usageDescription?: string | undefined;
|
|
10232
|
-
};
|
|
10233
|
-
} | {
|
|
10234
9555
|
type: "text";
|
|
10235
9556
|
attributes: {
|
|
10236
|
-
|
|
10237
|
-
|
|
10238
|
-
help?: string | undefined;
|
|
10239
|
-
labelTranslationKey?: string | undefined;
|
|
10240
|
-
minLength?: number | undefined;
|
|
10241
|
-
pattern?: string | undefined;
|
|
10242
|
-
};
|
|
10243
|
-
meta: {
|
|
10244
|
-
schemaVersion: string;
|
|
10245
|
-
title?: string | undefined;
|
|
10246
|
-
usageDescription?: string | undefined;
|
|
10247
|
-
};
|
|
10248
|
-
} | {
|
|
10249
|
-
type: "url";
|
|
10250
|
-
attributes: {
|
|
10251
|
-
maxLength: number;
|
|
10252
|
-
label?: string | undefined;
|
|
10253
|
-
help?: string | undefined;
|
|
10254
|
-
labelTranslationKey?: string | undefined;
|
|
10255
|
-
minLength?: number | undefined;
|
|
10256
|
-
pattern?: string | undefined;
|
|
10257
|
-
};
|
|
10258
|
-
meta: {
|
|
10259
|
-
schemaVersion: string;
|
|
10260
|
-
title?: string | undefined;
|
|
10261
|
-
usageDescription?: string | undefined;
|
|
10262
|
-
};
|
|
10263
|
-
} | {
|
|
10264
|
-
type: "date";
|
|
10265
|
-
attributes: {
|
|
10266
|
-
step: number;
|
|
10267
|
-
label?: string | undefined;
|
|
10268
|
-
help?: string | undefined;
|
|
10269
|
-
labelTranslationKey?: string | undefined;
|
|
10270
|
-
max?: string | undefined;
|
|
10271
|
-
min?: string | undefined;
|
|
10272
|
-
};
|
|
10273
|
-
meta: {
|
|
10274
|
-
schemaVersion: string;
|
|
10275
|
-
title?: string | undefined;
|
|
10276
|
-
usageDescription?: string | undefined;
|
|
10277
|
-
};
|
|
10278
|
-
} | {
|
|
10279
|
-
type: "dateRange";
|
|
10280
|
-
attributes: {
|
|
10281
|
-
label?: string | undefined;
|
|
10282
|
-
help?: string | undefined;
|
|
10283
|
-
labelTranslationKey?: string | undefined;
|
|
9557
|
+
help: string;
|
|
9558
|
+
labelTranslationKey: string;
|
|
10284
9559
|
};
|
|
10285
9560
|
meta: {
|
|
10286
9561
|
schemaVersion: string;
|
|
10287
9562
|
title?: string | undefined;
|
|
10288
9563
|
usageDescription?: string | undefined;
|
|
10289
9564
|
};
|
|
10290
|
-
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
|
|
10295
|
-
|
|
10296
|
-
|
|
10297
|
-
|
|
10298
|
-
|
|
10299
|
-
|
|
10300
|
-
|
|
10301
|
-
step: number;
|
|
10302
|
-
help?: string | undefined;
|
|
10303
|
-
labelTranslationKey?: string | undefined;
|
|
10304
|
-
max?: string | undefined;
|
|
10305
|
-
min?: string | undefined;
|
|
10306
|
-
};
|
|
10307
|
-
};
|
|
10308
|
-
} | {
|
|
10309
|
-
type: "boolean";
|
|
9565
|
+
};
|
|
9566
|
+
} | {
|
|
9567
|
+
meta: {
|
|
9568
|
+
schemaVersion: string;
|
|
9569
|
+
labelTranslationKey?: string | undefined;
|
|
9570
|
+
};
|
|
9571
|
+
heading: string;
|
|
9572
|
+
required: boolean;
|
|
9573
|
+
enabled: boolean;
|
|
9574
|
+
content: {
|
|
9575
|
+
type: "textArea";
|
|
10310
9576
|
attributes: {
|
|
10311
|
-
|
|
10312
|
-
|
|
10313
|
-
help?: string | undefined;
|
|
10314
|
-
labelTranslationKey?: string | undefined;
|
|
9577
|
+
help: string;
|
|
9578
|
+
labelTranslationKey: string;
|
|
10315
9579
|
};
|
|
10316
9580
|
meta: {
|
|
10317
9581
|
schemaVersion: string;
|
|
10318
9582
|
title?: string | undefined;
|
|
10319
9583
|
usageDescription?: string | undefined;
|
|
10320
9584
|
};
|
|
10321
|
-
}
|
|
9585
|
+
};
|
|
9586
|
+
} | {
|
|
9587
|
+
meta: {
|
|
9588
|
+
schemaVersion: string;
|
|
9589
|
+
labelTranslationKey?: string | undefined;
|
|
9590
|
+
};
|
|
9591
|
+
heading: string;
|
|
9592
|
+
required: true;
|
|
9593
|
+
enabled: boolean;
|
|
9594
|
+
content: {
|
|
10322
9595
|
options: {
|
|
10323
9596
|
value: string;
|
|
10324
9597
|
label: string;
|
|
10325
|
-
|
|
9598
|
+
selected: boolean;
|
|
10326
9599
|
}[];
|
|
10327
|
-
type: "
|
|
9600
|
+
type: "selectBox";
|
|
10328
9601
|
attributes: {
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
|
|
9602
|
+
help: string;
|
|
9603
|
+
labelTranslationKey: string;
|
|
9604
|
+
multiple: false;
|
|
10332
9605
|
};
|
|
10333
9606
|
meta: {
|
|
10334
9607
|
schemaVersion: string;
|
|
10335
9608
|
title?: string | undefined;
|
|
10336
9609
|
usageDescription?: string | undefined;
|
|
10337
9610
|
};
|
|
10338
|
-
}
|
|
9611
|
+
};
|
|
9612
|
+
} | {
|
|
9613
|
+
meta: {
|
|
9614
|
+
schemaVersion: string;
|
|
9615
|
+
labelTranslationKey?: string | undefined;
|
|
9616
|
+
};
|
|
9617
|
+
heading: string;
|
|
9618
|
+
required: boolean;
|
|
9619
|
+
enabled: boolean;
|
|
9620
|
+
content: {
|
|
10339
9621
|
options: {
|
|
10340
9622
|
value: string;
|
|
10341
9623
|
label: string;
|
|
10342
|
-
selected: boolean;
|
|
10343
9624
|
}[];
|
|
10344
|
-
type: "
|
|
9625
|
+
type: "checkBoxes";
|
|
10345
9626
|
attributes: {
|
|
10346
|
-
|
|
10347
|
-
|
|
10348
|
-
labelTranslationKey?: string | undefined;
|
|
9627
|
+
help: string;
|
|
9628
|
+
labelTranslationKey: string;
|
|
10349
9629
|
};
|
|
10350
9630
|
meta: {
|
|
10351
9631
|
schemaVersion: string;
|
|
10352
9632
|
title?: string | undefined;
|
|
10353
9633
|
usageDescription?: string | undefined;
|
|
10354
9634
|
};
|
|
10355
|
-
}
|
|
9635
|
+
};
|
|
9636
|
+
} | {
|
|
9637
|
+
meta: {
|
|
9638
|
+
schemaVersion: string;
|
|
9639
|
+
labelTranslationKey?: string | undefined;
|
|
9640
|
+
};
|
|
9641
|
+
heading: string;
|
|
9642
|
+
required: boolean;
|
|
9643
|
+
enabled: boolean;
|
|
9644
|
+
content: {
|
|
10356
9645
|
options: {
|
|
10357
9646
|
value: string;
|
|
10358
9647
|
label: string;
|
|
10359
|
-
selected: boolean;
|
|
10360
9648
|
}[];
|
|
10361
9649
|
type: "selectBox";
|
|
10362
9650
|
attributes: {
|
|
9651
|
+
help: string;
|
|
9652
|
+
labelTranslationKey: string;
|
|
10363
9653
|
multiple: false;
|
|
10364
|
-
label?: string | undefined;
|
|
10365
|
-
help?: string | undefined;
|
|
10366
|
-
labelTranslationKey?: string | undefined;
|
|
10367
9654
|
};
|
|
10368
9655
|
meta: {
|
|
10369
9656
|
schemaVersion: string;
|
|
10370
9657
|
title?: string | undefined;
|
|
10371
9658
|
usageDescription?: string | undefined;
|
|
10372
9659
|
};
|
|
10373
|
-
}
|
|
10374
|
-
|
|
9660
|
+
};
|
|
9661
|
+
} | {
|
|
9662
|
+
meta: {
|
|
9663
|
+
schemaVersion: string;
|
|
9664
|
+
labelTranslationKey?: string | undefined;
|
|
9665
|
+
};
|
|
9666
|
+
heading: string;
|
|
9667
|
+
required: boolean;
|
|
9668
|
+
enabled: boolean;
|
|
9669
|
+
content: {
|
|
9670
|
+
type: "date";
|
|
10375
9671
|
attributes: {
|
|
10376
|
-
|
|
10377
|
-
|
|
10378
|
-
labelTranslationKey?: string | undefined;
|
|
9672
|
+
help: string;
|
|
9673
|
+
labelTranslationKey: string;
|
|
10379
9674
|
};
|
|
10380
9675
|
meta: {
|
|
10381
9676
|
schemaVersion: string;
|
|
10382
9677
|
title?: string | undefined;
|
|
10383
9678
|
usageDescription?: string | undefined;
|
|
10384
9679
|
};
|
|
10385
|
-
|
|
10386
|
-
|
|
10387
|
-
|
|
10388
|
-
|
|
10389
|
-
|
|
10390
|
-
|
|
10391
|
-
|
|
10392
|
-
|
|
10393
|
-
|
|
10394
|
-
|
|
9680
|
+
};
|
|
9681
|
+
} | {
|
|
9682
|
+
meta: {
|
|
9683
|
+
schemaVersion: string;
|
|
9684
|
+
labelTranslationKey?: string | undefined;
|
|
9685
|
+
};
|
|
9686
|
+
heading: string;
|
|
9687
|
+
required: boolean;
|
|
9688
|
+
enabled: boolean;
|
|
9689
|
+
content: {
|
|
9690
|
+
type: "numberWithContext";
|
|
9691
|
+
attributes: {
|
|
9692
|
+
help: string;
|
|
9693
|
+
labelTranslationKey: string;
|
|
9694
|
+
context: {
|
|
9695
|
+
value: string;
|
|
10395
9696
|
label: string;
|
|
10396
|
-
minLength: 3;
|
|
10397
|
-
name: "name";
|
|
10398
|
-
labelTranslationKey?: string | undefined;
|
|
10399
9697
|
}[];
|
|
10400
|
-
|
|
10401
|
-
localQueryId?: string | undefined;
|
|
10402
|
-
queryId?: string | undefined;
|
|
9698
|
+
min: number;
|
|
10403
9699
|
};
|
|
10404
|
-
|
|
9700
|
+
meta: {
|
|
9701
|
+
schemaVersion: string;
|
|
9702
|
+
title?: string | undefined;
|
|
9703
|
+
usageDescription?: string | undefined;
|
|
9704
|
+
};
|
|
9705
|
+
};
|
|
9706
|
+
} | {
|
|
9707
|
+
attributes: {
|
|
9708
|
+
help: string;
|
|
9709
|
+
labelTranslationKey: string;
|
|
9710
|
+
};
|
|
9711
|
+
meta: {
|
|
9712
|
+
schemaVersion: string;
|
|
9713
|
+
labelTranslationKey?: string | undefined;
|
|
9714
|
+
};
|
|
9715
|
+
heading: string;
|
|
9716
|
+
required: boolean;
|
|
9717
|
+
enabled: boolean;
|
|
9718
|
+
content: {
|
|
10405
9719
|
type: "repositorySearch";
|
|
10406
9720
|
attributes: {
|
|
10407
9721
|
label?: string | undefined;
|
|
@@ -10433,7 +9747,24 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10433
9747
|
localQueryId?: string | undefined;
|
|
10434
9748
|
queryId?: string | undefined;
|
|
10435
9749
|
};
|
|
10436
|
-
}
|
|
9750
|
+
};
|
|
9751
|
+
preferences: {
|
|
9752
|
+
value: string;
|
|
9753
|
+
label: string;
|
|
9754
|
+
}[];
|
|
9755
|
+
} | {
|
|
9756
|
+
attributes: {
|
|
9757
|
+
help: string;
|
|
9758
|
+
labelTranslationKey: string;
|
|
9759
|
+
};
|
|
9760
|
+
meta: {
|
|
9761
|
+
schemaVersion: string;
|
|
9762
|
+
labelTranslationKey?: string | undefined;
|
|
9763
|
+
};
|
|
9764
|
+
heading: string;
|
|
9765
|
+
required: boolean;
|
|
9766
|
+
enabled: boolean;
|
|
9767
|
+
content: {
|
|
10437
9768
|
type: "metadataStandardSearch";
|
|
10438
9769
|
attributes: {
|
|
10439
9770
|
label?: string | undefined;
|
|
@@ -10465,7 +9796,24 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10465
9796
|
localQueryId?: string | undefined;
|
|
10466
9797
|
queryId?: string | undefined;
|
|
10467
9798
|
};
|
|
10468
|
-
}
|
|
9799
|
+
};
|
|
9800
|
+
preferences: {
|
|
9801
|
+
value: string;
|
|
9802
|
+
label: string;
|
|
9803
|
+
}[];
|
|
9804
|
+
} | {
|
|
9805
|
+
attributes: {
|
|
9806
|
+
help: string;
|
|
9807
|
+
labelTranslationKey: string;
|
|
9808
|
+
};
|
|
9809
|
+
meta: {
|
|
9810
|
+
schemaVersion: string;
|
|
9811
|
+
labelTranslationKey?: string | undefined;
|
|
9812
|
+
};
|
|
9813
|
+
heading: string;
|
|
9814
|
+
required: boolean;
|
|
9815
|
+
enabled: boolean;
|
|
9816
|
+
content: {
|
|
10469
9817
|
type: "licenseSearch";
|
|
10470
9818
|
attributes: {
|
|
10471
9819
|
label?: string | undefined;
|
|
@@ -10498,7 +9846,32 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10498
9846
|
queryId?: string | undefined;
|
|
10499
9847
|
};
|
|
10500
9848
|
};
|
|
10501
|
-
|
|
9849
|
+
preferences: {
|
|
9850
|
+
value: string;
|
|
9851
|
+
label: string;
|
|
9852
|
+
}[];
|
|
9853
|
+
} | {
|
|
9854
|
+
meta: {
|
|
9855
|
+
schemaVersion: string;
|
|
9856
|
+
labelTranslationKey?: string | undefined;
|
|
9857
|
+
};
|
|
9858
|
+
heading: string;
|
|
9859
|
+
required: boolean;
|
|
9860
|
+
enabled: boolean;
|
|
9861
|
+
content: {
|
|
9862
|
+
type: "text";
|
|
9863
|
+
attributes: {
|
|
9864
|
+
help: string;
|
|
9865
|
+
maxLength: number;
|
|
9866
|
+
defaultValue?: string | undefined;
|
|
9867
|
+
};
|
|
9868
|
+
meta: {
|
|
9869
|
+
schemaVersion: string;
|
|
9870
|
+
title?: string | undefined;
|
|
9871
|
+
usageDescription?: string | undefined;
|
|
9872
|
+
};
|
|
9873
|
+
};
|
|
9874
|
+
})[];
|
|
10502
9875
|
}, {
|
|
10503
9876
|
type: "researchOutputTable";
|
|
10504
9877
|
attributes?: {
|
|
@@ -10516,195 +9889,87 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10516
9889
|
title?: string | undefined;
|
|
10517
9890
|
usageDescription?: string | undefined;
|
|
10518
9891
|
} | undefined;
|
|
10519
|
-
columns?: {
|
|
9892
|
+
columns?: ({
|
|
9893
|
+
required: true;
|
|
10520
9894
|
meta?: {
|
|
10521
9895
|
schemaVersion?: string | undefined;
|
|
10522
9896
|
labelTranslationKey?: string | undefined;
|
|
10523
9897
|
} | undefined;
|
|
10524
9898
|
heading?: string | undefined;
|
|
10525
|
-
required?: boolean | undefined;
|
|
10526
9899
|
enabled?: boolean | undefined;
|
|
10527
|
-
content?: {
|
|
10528
|
-
type: "currency";
|
|
10529
|
-
attributes?: {
|
|
10530
|
-
label?: string | undefined;
|
|
10531
|
-
help?: string | undefined;
|
|
10532
|
-
labelTranslationKey?: string | undefined;
|
|
10533
|
-
max?: number | undefined;
|
|
10534
|
-
min?: number | undefined;
|
|
10535
|
-
step?: number | undefined;
|
|
10536
|
-
denomination?: string | undefined;
|
|
10537
|
-
} | undefined;
|
|
10538
|
-
meta?: {
|
|
10539
|
-
schemaVersion?: string | undefined;
|
|
10540
|
-
title?: string | undefined;
|
|
10541
|
-
usageDescription?: string | undefined;
|
|
10542
|
-
} | undefined;
|
|
10543
|
-
} | {
|
|
10544
|
-
type: "number";
|
|
10545
|
-
attributes?: {
|
|
10546
|
-
label?: string | undefined;
|
|
10547
|
-
help?: string | undefined;
|
|
10548
|
-
labelTranslationKey?: string | undefined;
|
|
10549
|
-
max?: number | undefined;
|
|
10550
|
-
min?: number | undefined;
|
|
10551
|
-
step?: number | undefined;
|
|
10552
|
-
} | undefined;
|
|
10553
|
-
meta?: {
|
|
10554
|
-
schemaVersion?: string | undefined;
|
|
10555
|
-
title?: string | undefined;
|
|
10556
|
-
usageDescription?: string | undefined;
|
|
10557
|
-
} | undefined;
|
|
10558
|
-
} | {
|
|
10559
|
-
type: "numberWithContext";
|
|
10560
|
-
attributes?: {
|
|
10561
|
-
label?: string | undefined;
|
|
10562
|
-
help?: string | undefined;
|
|
10563
|
-
labelTranslationKey?: string | undefined;
|
|
10564
|
-
context?: {
|
|
10565
|
-
value?: string | undefined;
|
|
10566
|
-
label?: string | undefined;
|
|
10567
|
-
labelTranslationKey?: string | undefined;
|
|
10568
|
-
}[] | undefined;
|
|
10569
|
-
max?: number | undefined;
|
|
10570
|
-
min?: number | undefined;
|
|
10571
|
-
step?: number | undefined;
|
|
10572
|
-
} | undefined;
|
|
10573
|
-
meta?: {
|
|
10574
|
-
schemaVersion?: string | undefined;
|
|
10575
|
-
title?: string | undefined;
|
|
10576
|
-
usageDescription?: string | undefined;
|
|
10577
|
-
} | undefined;
|
|
10578
|
-
} | {
|
|
10579
|
-
type: "email";
|
|
10580
|
-
attributes?: {
|
|
10581
|
-
label?: string | undefined;
|
|
10582
|
-
help?: string | undefined;
|
|
10583
|
-
labelTranslationKey?: string | undefined;
|
|
10584
|
-
maxLength?: number | undefined;
|
|
10585
|
-
minLength?: number | undefined;
|
|
10586
|
-
pattern?: string | undefined;
|
|
10587
|
-
multiple?: boolean | undefined;
|
|
10588
|
-
} | undefined;
|
|
10589
|
-
meta?: {
|
|
10590
|
-
schemaVersion?: string | undefined;
|
|
10591
|
-
title?: string | undefined;
|
|
10592
|
-
usageDescription?: string | undefined;
|
|
10593
|
-
} | undefined;
|
|
10594
|
-
} | {
|
|
10595
|
-
type: "textArea";
|
|
10596
|
-
attributes?: {
|
|
10597
|
-
label?: string | undefined;
|
|
10598
|
-
help?: string | undefined;
|
|
10599
|
-
labelTranslationKey?: string | undefined;
|
|
10600
|
-
maxLength?: number | undefined;
|
|
10601
|
-
minLength?: number | undefined;
|
|
10602
|
-
cols?: number | undefined;
|
|
10603
|
-
rows?: number | undefined;
|
|
10604
|
-
asRichText?: boolean | undefined;
|
|
10605
|
-
} | undefined;
|
|
10606
|
-
meta?: {
|
|
10607
|
-
schemaVersion?: string | undefined;
|
|
10608
|
-
title?: string | undefined;
|
|
10609
|
-
usageDescription?: string | undefined;
|
|
10610
|
-
} | undefined;
|
|
10611
|
-
} | {
|
|
9900
|
+
content?: {
|
|
10612
9901
|
type: "text";
|
|
10613
9902
|
attributes?: {
|
|
10614
|
-
label?: string | undefined;
|
|
10615
|
-
help?: string | undefined;
|
|
10616
|
-
labelTranslationKey?: string | undefined;
|
|
10617
|
-
maxLength?: number | undefined;
|
|
10618
|
-
minLength?: number | undefined;
|
|
10619
|
-
pattern?: string | undefined;
|
|
10620
|
-
} | undefined;
|
|
10621
|
-
meta?: {
|
|
10622
|
-
schemaVersion?: string | undefined;
|
|
10623
|
-
title?: string | undefined;
|
|
10624
|
-
usageDescription?: string | undefined;
|
|
10625
|
-
} | undefined;
|
|
10626
|
-
} | {
|
|
10627
|
-
type: "url";
|
|
10628
|
-
attributes?: {
|
|
10629
|
-
label?: string | undefined;
|
|
10630
9903
|
help?: string | undefined;
|
|
10631
9904
|
labelTranslationKey?: string | undefined;
|
|
10632
|
-
maxLength?: number | undefined;
|
|
10633
|
-
minLength?: number | undefined;
|
|
10634
|
-
pattern?: string | undefined;
|
|
10635
9905
|
} | undefined;
|
|
10636
9906
|
meta?: {
|
|
10637
9907
|
schemaVersion?: string | undefined;
|
|
10638
9908
|
title?: string | undefined;
|
|
10639
9909
|
usageDescription?: string | undefined;
|
|
10640
9910
|
} | undefined;
|
|
10641
|
-
} |
|
|
10642
|
-
|
|
9911
|
+
} | undefined;
|
|
9912
|
+
} | {
|
|
9913
|
+
meta?: {
|
|
9914
|
+
schemaVersion?: string | undefined;
|
|
9915
|
+
labelTranslationKey?: string | undefined;
|
|
9916
|
+
} | undefined;
|
|
9917
|
+
heading?: string | undefined;
|
|
9918
|
+
required?: boolean | undefined;
|
|
9919
|
+
enabled?: boolean | undefined;
|
|
9920
|
+
content?: {
|
|
9921
|
+
type: "textArea";
|
|
10643
9922
|
attributes?: {
|
|
10644
|
-
label?: string | undefined;
|
|
10645
9923
|
help?: string | undefined;
|
|
10646
9924
|
labelTranslationKey?: string | undefined;
|
|
10647
|
-
max?: string | undefined;
|
|
10648
|
-
min?: string | undefined;
|
|
10649
|
-
step?: number | undefined;
|
|
10650
9925
|
} | undefined;
|
|
10651
9926
|
meta?: {
|
|
10652
9927
|
schemaVersion?: string | undefined;
|
|
10653
9928
|
title?: string | undefined;
|
|
10654
9929
|
usageDescription?: string | undefined;
|
|
10655
9930
|
} | undefined;
|
|
10656
|
-
} |
|
|
10657
|
-
|
|
10658
|
-
|
|
9931
|
+
} | undefined;
|
|
9932
|
+
} | {
|
|
9933
|
+
required: true;
|
|
9934
|
+
meta?: {
|
|
9935
|
+
schemaVersion?: string | undefined;
|
|
9936
|
+
labelTranslationKey?: string | undefined;
|
|
9937
|
+
} | undefined;
|
|
9938
|
+
heading?: string | undefined;
|
|
9939
|
+
enabled?: boolean | undefined;
|
|
9940
|
+
content?: {
|
|
9941
|
+
type: "selectBox";
|
|
9942
|
+
options?: {
|
|
9943
|
+
value?: string | undefined;
|
|
10659
9944
|
label?: string | undefined;
|
|
10660
|
-
|
|
10661
|
-
|
|
10662
|
-
} | undefined;
|
|
10663
|
-
meta?: {
|
|
10664
|
-
schemaVersion?: string | undefined;
|
|
10665
|
-
title?: string | undefined;
|
|
10666
|
-
usageDescription?: string | undefined;
|
|
10667
|
-
} | undefined;
|
|
10668
|
-
columns?: {
|
|
10669
|
-
start?: {
|
|
10670
|
-
label?: string | undefined;
|
|
10671
|
-
help?: string | undefined;
|
|
10672
|
-
labelTranslationKey?: string | undefined;
|
|
10673
|
-
max?: string | undefined;
|
|
10674
|
-
min?: string | undefined;
|
|
10675
|
-
step?: number | undefined;
|
|
10676
|
-
} | undefined;
|
|
10677
|
-
end?: {
|
|
10678
|
-
label?: string | undefined;
|
|
10679
|
-
help?: string | undefined;
|
|
10680
|
-
labelTranslationKey?: string | undefined;
|
|
10681
|
-
max?: string | undefined;
|
|
10682
|
-
min?: string | undefined;
|
|
10683
|
-
step?: number | undefined;
|
|
10684
|
-
} | undefined;
|
|
10685
|
-
} | undefined;
|
|
10686
|
-
} | {
|
|
10687
|
-
type: "boolean";
|
|
9945
|
+
selected?: boolean | undefined;
|
|
9946
|
+
}[] | undefined;
|
|
10688
9947
|
attributes?: {
|
|
10689
|
-
|
|
9948
|
+
multiple: false;
|
|
10690
9949
|
help?: string | undefined;
|
|
10691
9950
|
labelTranslationKey?: string | undefined;
|
|
10692
|
-
checked?: boolean | undefined;
|
|
10693
9951
|
} | undefined;
|
|
10694
9952
|
meta?: {
|
|
10695
9953
|
schemaVersion?: string | undefined;
|
|
10696
9954
|
title?: string | undefined;
|
|
10697
9955
|
usageDescription?: string | undefined;
|
|
10698
9956
|
} | undefined;
|
|
10699
|
-
} |
|
|
9957
|
+
} | undefined;
|
|
9958
|
+
} | {
|
|
9959
|
+
meta?: {
|
|
9960
|
+
schemaVersion?: string | undefined;
|
|
9961
|
+
labelTranslationKey?: string | undefined;
|
|
9962
|
+
} | undefined;
|
|
9963
|
+
heading?: string | undefined;
|
|
9964
|
+
required?: boolean | undefined;
|
|
9965
|
+
enabled?: boolean | undefined;
|
|
9966
|
+
content?: {
|
|
10700
9967
|
type: "checkBoxes";
|
|
10701
9968
|
options?: {
|
|
10702
|
-
value
|
|
10703
|
-
label
|
|
10704
|
-
checked?: boolean | undefined;
|
|
9969
|
+
value: string;
|
|
9970
|
+
label: string;
|
|
10705
9971
|
}[] | undefined;
|
|
10706
9972
|
attributes?: {
|
|
10707
|
-
label?: string | undefined;
|
|
10708
9973
|
help?: string | undefined;
|
|
10709
9974
|
labelTranslationKey?: string | undefined;
|
|
10710
9975
|
} | undefined;
|
|
@@ -10713,15 +9978,23 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10713
9978
|
title?: string | undefined;
|
|
10714
9979
|
usageDescription?: string | undefined;
|
|
10715
9980
|
} | undefined;
|
|
10716
|
-
} |
|
|
10717
|
-
|
|
9981
|
+
} | undefined;
|
|
9982
|
+
} | {
|
|
9983
|
+
meta?: {
|
|
9984
|
+
schemaVersion?: string | undefined;
|
|
9985
|
+
labelTranslationKey?: string | undefined;
|
|
9986
|
+
} | undefined;
|
|
9987
|
+
heading?: string | undefined;
|
|
9988
|
+
required?: boolean | undefined;
|
|
9989
|
+
enabled?: boolean | undefined;
|
|
9990
|
+
content?: {
|
|
9991
|
+
type: "selectBox";
|
|
10718
9992
|
options?: {
|
|
10719
|
-
value
|
|
10720
|
-
label
|
|
10721
|
-
selected?: boolean | undefined;
|
|
9993
|
+
value: string;
|
|
9994
|
+
label: string;
|
|
10722
9995
|
}[] | undefined;
|
|
10723
9996
|
attributes?: {
|
|
10724
|
-
|
|
9997
|
+
multiple: false;
|
|
10725
9998
|
help?: string | undefined;
|
|
10726
9999
|
labelTranslationKey?: string | undefined;
|
|
10727
10000
|
} | undefined;
|
|
@@ -10730,16 +10003,18 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10730
10003
|
title?: string | undefined;
|
|
10731
10004
|
usageDescription?: string | undefined;
|
|
10732
10005
|
} | undefined;
|
|
10733
|
-
} |
|
|
10734
|
-
|
|
10735
|
-
|
|
10736
|
-
|
|
10737
|
-
|
|
10738
|
-
|
|
10739
|
-
|
|
10006
|
+
} | undefined;
|
|
10007
|
+
} | {
|
|
10008
|
+
meta?: {
|
|
10009
|
+
schemaVersion?: string | undefined;
|
|
10010
|
+
labelTranslationKey?: string | undefined;
|
|
10011
|
+
} | undefined;
|
|
10012
|
+
heading?: string | undefined;
|
|
10013
|
+
required?: boolean | undefined;
|
|
10014
|
+
enabled?: boolean | undefined;
|
|
10015
|
+
content?: {
|
|
10016
|
+
type: "date";
|
|
10740
10017
|
attributes?: {
|
|
10741
|
-
multiple: false;
|
|
10742
|
-
label?: string | undefined;
|
|
10743
10018
|
help?: string | undefined;
|
|
10744
10019
|
labelTranslationKey?: string | undefined;
|
|
10745
10020
|
} | undefined;
|
|
@@ -10748,38 +10023,45 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10748
10023
|
title?: string | undefined;
|
|
10749
10024
|
usageDescription?: string | undefined;
|
|
10750
10025
|
} | undefined;
|
|
10751
|
-
} |
|
|
10752
|
-
|
|
10026
|
+
} | undefined;
|
|
10027
|
+
} | {
|
|
10028
|
+
meta?: {
|
|
10029
|
+
schemaVersion?: string | undefined;
|
|
10030
|
+
labelTranslationKey?: string | undefined;
|
|
10031
|
+
} | undefined;
|
|
10032
|
+
heading?: string | undefined;
|
|
10033
|
+
required?: boolean | undefined;
|
|
10034
|
+
enabled?: boolean | undefined;
|
|
10035
|
+
content?: {
|
|
10036
|
+
type: "numberWithContext";
|
|
10753
10037
|
attributes?: {
|
|
10754
|
-
label?: string | undefined;
|
|
10755
10038
|
help?: string | undefined;
|
|
10756
10039
|
labelTranslationKey?: string | undefined;
|
|
10040
|
+
context?: {
|
|
10041
|
+
value?: string | undefined;
|
|
10042
|
+
label?: string | undefined;
|
|
10043
|
+
}[] | undefined;
|
|
10044
|
+
min?: number | undefined;
|
|
10757
10045
|
} | undefined;
|
|
10758
10046
|
meta?: {
|
|
10759
10047
|
schemaVersion?: string | undefined;
|
|
10760
10048
|
title?: string | undefined;
|
|
10761
10049
|
usageDescription?: string | undefined;
|
|
10762
10050
|
} | undefined;
|
|
10763
|
-
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
|
-
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
|
|
10774
|
-
|
|
10775
|
-
|
|
10776
|
-
|
|
10777
|
-
name?: "name" | undefined;
|
|
10778
|
-
}[] | undefined;
|
|
10779
|
-
queryId?: string | undefined;
|
|
10780
|
-
answerField?: "uri" | undefined;
|
|
10781
|
-
} | undefined;
|
|
10782
|
-
} | {
|
|
10051
|
+
} | undefined;
|
|
10052
|
+
} | {
|
|
10053
|
+
attributes?: {
|
|
10054
|
+
help?: string | undefined;
|
|
10055
|
+
labelTranslationKey?: string | undefined;
|
|
10056
|
+
} | undefined;
|
|
10057
|
+
meta?: {
|
|
10058
|
+
schemaVersion?: string | undefined;
|
|
10059
|
+
labelTranslationKey?: string | undefined;
|
|
10060
|
+
} | undefined;
|
|
10061
|
+
heading?: string | undefined;
|
|
10062
|
+
required?: boolean | undefined;
|
|
10063
|
+
enabled?: boolean | undefined;
|
|
10064
|
+
content?: {
|
|
10783
10065
|
type: "repositorySearch";
|
|
10784
10066
|
attributes?: {
|
|
10785
10067
|
label?: string | undefined;
|
|
@@ -10811,7 +10093,24 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10811
10093
|
queryId?: string | undefined;
|
|
10812
10094
|
answerField?: "uri" | undefined;
|
|
10813
10095
|
} | undefined;
|
|
10814
|
-
} |
|
|
10096
|
+
} | undefined;
|
|
10097
|
+
preferences?: {
|
|
10098
|
+
value?: string | undefined;
|
|
10099
|
+
label?: string | undefined;
|
|
10100
|
+
}[] | undefined;
|
|
10101
|
+
} | {
|
|
10102
|
+
attributes?: {
|
|
10103
|
+
help?: string | undefined;
|
|
10104
|
+
labelTranslationKey?: string | undefined;
|
|
10105
|
+
} | undefined;
|
|
10106
|
+
meta?: {
|
|
10107
|
+
schemaVersion?: string | undefined;
|
|
10108
|
+
labelTranslationKey?: string | undefined;
|
|
10109
|
+
} | undefined;
|
|
10110
|
+
heading?: string | undefined;
|
|
10111
|
+
required?: boolean | undefined;
|
|
10112
|
+
enabled?: boolean | undefined;
|
|
10113
|
+
content?: {
|
|
10815
10114
|
type: "metadataStandardSearch";
|
|
10816
10115
|
attributes?: {
|
|
10817
10116
|
label?: string | undefined;
|
|
@@ -10843,7 +10142,24 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10843
10142
|
queryId?: string | undefined;
|
|
10844
10143
|
answerField?: "uri" | undefined;
|
|
10845
10144
|
} | undefined;
|
|
10846
|
-
} |
|
|
10145
|
+
} | undefined;
|
|
10146
|
+
preferences?: {
|
|
10147
|
+
value?: string | undefined;
|
|
10148
|
+
label?: string | undefined;
|
|
10149
|
+
}[] | undefined;
|
|
10150
|
+
} | {
|
|
10151
|
+
attributes?: {
|
|
10152
|
+
help?: string | undefined;
|
|
10153
|
+
labelTranslationKey?: string | undefined;
|
|
10154
|
+
} | undefined;
|
|
10155
|
+
meta?: {
|
|
10156
|
+
schemaVersion?: string | undefined;
|
|
10157
|
+
labelTranslationKey?: string | undefined;
|
|
10158
|
+
} | undefined;
|
|
10159
|
+
heading?: string | undefined;
|
|
10160
|
+
required?: boolean | undefined;
|
|
10161
|
+
enabled?: boolean | undefined;
|
|
10162
|
+
content?: {
|
|
10847
10163
|
type: "licenseSearch";
|
|
10848
10164
|
attributes?: {
|
|
10849
10165
|
label?: string | undefined;
|
|
@@ -10876,7 +10192,32 @@ export declare const ResearchOutputTableQuestionSchema: z.ZodObject<{
|
|
|
10876
10192
|
answerField?: "uri" | undefined;
|
|
10877
10193
|
} | undefined;
|
|
10878
10194
|
} | undefined;
|
|
10879
|
-
|
|
10195
|
+
preferences?: {
|
|
10196
|
+
value?: string | undefined;
|
|
10197
|
+
label?: string | undefined;
|
|
10198
|
+
}[] | undefined;
|
|
10199
|
+
} | {
|
|
10200
|
+
meta?: {
|
|
10201
|
+
schemaVersion?: string | undefined;
|
|
10202
|
+
labelTranslationKey?: string | undefined;
|
|
10203
|
+
} | undefined;
|
|
10204
|
+
heading?: string | undefined;
|
|
10205
|
+
required?: boolean | undefined;
|
|
10206
|
+
enabled?: boolean | undefined;
|
|
10207
|
+
content?: {
|
|
10208
|
+
type: "text";
|
|
10209
|
+
attributes?: {
|
|
10210
|
+
help?: string | undefined;
|
|
10211
|
+
maxLength?: number | undefined;
|
|
10212
|
+
defaultValue?: string | undefined;
|
|
10213
|
+
} | undefined;
|
|
10214
|
+
meta?: {
|
|
10215
|
+
schemaVersion?: string | undefined;
|
|
10216
|
+
title?: string | undefined;
|
|
10217
|
+
usageDescription?: string | undefined;
|
|
10218
|
+
} | undefined;
|
|
10219
|
+
} | undefined;
|
|
10220
|
+
})[] | undefined;
|
|
10880
10221
|
}>;
|
|
10881
10222
|
export type TableQuestionType = z.infer<typeof TableQuestionSchema>;
|
|
10882
10223
|
export type AnyTableColumnQuestionType = z.infer<typeof AnyTableColumnQuestionSchema>;
|