@start9labs/start-sdk 0.3.6-beta.6 → 0.3.6-beta.8
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { Value } from "../../base/lib/actions/input/builder/value";
|
|
3
3
|
import { InputSpec, LazyBuild } from "../../base/lib/actions/input/builder/inputSpec";
|
|
4
|
-
import { DefaultString,
|
|
4
|
+
import { DefaultString, Pattern, RandomString, UniqueBy } from "../../base/lib/actions/input/inputSpecTypes";
|
|
5
5
|
import { Variants } from "../../base/lib/actions/input/builder/variants";
|
|
6
6
|
import { Action, Actions } from "../../base/lib/actions/setupActions";
|
|
7
7
|
import { SyncOptions, ServiceInterfaceId, PackageId, HealthReceipt, ServiceInterfaceType, Effects } from "../../base/lib/types";
|
|
@@ -536,6 +536,13 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
536
536
|
imageId: T.ImageId & keyof Manifest["images"];
|
|
537
537
|
sharedRun?: boolean;
|
|
538
538
|
}, name: string): Promise<SubContainer>;
|
|
539
|
+
with<T_3>(effects: Effects, image: {
|
|
540
|
+
imageId: string & keyof Manifest["images"];
|
|
541
|
+
sharedRun?: boolean | undefined;
|
|
542
|
+
}, mounts: {
|
|
543
|
+
options: MountOptions;
|
|
544
|
+
path: string;
|
|
545
|
+
}[], name: string, fn: (subContainer: SubContainer) => Promise<T_3>): Promise<T_3>;
|
|
539
546
|
};
|
|
540
547
|
List: {
|
|
541
548
|
/**
|
|
@@ -551,74 +558,14 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
551
558
|
*/
|
|
552
559
|
obj: <Type extends Record<string, any>>(a: {
|
|
553
560
|
name: string;
|
|
554
|
-
description?: string | null;
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
maxLength?: number | null;
|
|
561
|
+
description?: string | null | undefined;
|
|
562
|
+
warning?: string | null | undefined;
|
|
563
|
+
default?: [] | undefined;
|
|
564
|
+
minLength?: number | null | undefined;
|
|
565
|
+
maxLength?: number | null | undefined;
|
|
560
566
|
}, aSpec: {
|
|
561
567
|
spec: InputSpec<Type, Store>;
|
|
562
|
-
/**
|
|
563
|
-
* @description The ID of a required field on the inner object whose value will be used to display items in the list.
|
|
564
|
-
* @example
|
|
565
|
-
* In this example, we use the value of the `label` field to display members of the list.
|
|
566
|
-
*
|
|
567
|
-
* ```
|
|
568
|
-
spec: InputSpec.of({
|
|
569
|
-
label: Value.text({
|
|
570
|
-
name: 'Label',
|
|
571
|
-
required: false,
|
|
572
|
-
default: null,
|
|
573
|
-
})
|
|
574
|
-
})
|
|
575
|
-
displayAs: 'label',
|
|
576
|
-
uniqueBy: null,
|
|
577
|
-
* ```
|
|
578
|
-
*
|
|
579
|
-
*/
|
|
580
568
|
displayAs?: string | null | undefined;
|
|
581
|
-
/**
|
|
582
|
-
* @description The ID(s) of required fields on the inner object whose value(s) will be used to enforce uniqueness in the list.
|
|
583
|
-
* @example
|
|
584
|
-
* In this example, we use the `label` field to enforce uniqueness, meaning the label field must be unique from other entries.
|
|
585
|
-
*
|
|
586
|
-
* ```
|
|
587
|
-
spec: InputSpec.of({
|
|
588
|
-
label: Value.text({
|
|
589
|
-
name: 'Label',
|
|
590
|
-
required: true,
|
|
591
|
-
default: null,
|
|
592
|
-
})
|
|
593
|
-
pubkey: Value.text({
|
|
594
|
-
name: 'Pubkey',
|
|
595
|
-
required: true,
|
|
596
|
-
default: null,
|
|
597
|
-
})
|
|
598
|
-
})
|
|
599
|
-
displayAs: 'label',
|
|
600
|
-
uniqueBy: 'label',
|
|
601
|
-
* ```
|
|
602
|
-
* @example
|
|
603
|
-
* In this example, we use the `label` field AND the `pubkey` field to enforce uniqueness, meaning both these fields must be unique from other entries.
|
|
604
|
-
*
|
|
605
|
-
* ```
|
|
606
|
-
spec: InputSpec.of({
|
|
607
|
-
label: Value.text({
|
|
608
|
-
name: 'Label',
|
|
609
|
-
required: true,
|
|
610
|
-
default: null,
|
|
611
|
-
})
|
|
612
|
-
pubkey: Value.text({
|
|
613
|
-
name: 'Pubkey',
|
|
614
|
-
required: true,
|
|
615
|
-
default: null,
|
|
616
|
-
})
|
|
617
|
-
})
|
|
618
|
-
displayAs: 'label',
|
|
619
|
-
uniqueBy: { all: ['label', 'pubkey'] },
|
|
620
|
-
* ```
|
|
621
|
-
*/
|
|
622
569
|
uniqueBy?: UniqueBy | undefined;
|
|
623
570
|
}) => List<Type[], Store>;
|
|
624
571
|
/**
|
|
@@ -628,20 +575,20 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
628
575
|
*/
|
|
629
576
|
dynamicText: (getA: LazyBuild<Store, {
|
|
630
577
|
name: string;
|
|
631
|
-
description?: string | null;
|
|
632
|
-
warning?: string | null;
|
|
633
|
-
default?: string[];
|
|
634
|
-
minLength?: number | null;
|
|
635
|
-
maxLength?: number | null;
|
|
636
|
-
disabled?: false |
|
|
637
|
-
generate?: null |
|
|
578
|
+
description?: string | null | undefined;
|
|
579
|
+
warning?: string | null | undefined;
|
|
580
|
+
default?: string[] | undefined;
|
|
581
|
+
minLength?: number | null | undefined;
|
|
582
|
+
maxLength?: number | null | undefined;
|
|
583
|
+
disabled?: string | false | undefined;
|
|
584
|
+
generate?: RandomString | null | undefined;
|
|
638
585
|
spec: {
|
|
639
|
-
masked?: boolean;
|
|
640
|
-
placeholder?: string | null;
|
|
641
|
-
minLength?: number | null;
|
|
642
|
-
maxLength?: number | null;
|
|
643
|
-
patterns
|
|
644
|
-
inputmode?:
|
|
586
|
+
masked?: boolean | undefined;
|
|
587
|
+
placeholder?: string | null | undefined;
|
|
588
|
+
minLength?: number | null | undefined;
|
|
589
|
+
maxLength?: number | null | undefined;
|
|
590
|
+
patterns?: Pattern[] | undefined;
|
|
591
|
+
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
645
592
|
};
|
|
646
593
|
}>) => List<string[], Store>;
|
|
647
594
|
};
|
|
@@ -934,208 +881,94 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
934
881
|
hidden: typeof Value.hidden;
|
|
935
882
|
dynamicToggle: (a: LazyBuild<Store, {
|
|
936
883
|
name: string;
|
|
937
|
-
description?: string | null;
|
|
938
|
-
|
|
939
|
-
warning?: string | null;
|
|
884
|
+
description?: string | null | undefined;
|
|
885
|
+
warning?: string | null | undefined;
|
|
940
886
|
default: boolean;
|
|
941
|
-
disabled?: false |
|
|
887
|
+
disabled?: string | false | undefined;
|
|
942
888
|
}>) => Value<boolean, Store>;
|
|
943
889
|
dynamicText: (getA: LazyBuild<Store, {
|
|
944
890
|
name: string;
|
|
945
|
-
description?: string | null;
|
|
946
|
-
|
|
947
|
-
warning?: string | null;
|
|
948
|
-
/**
|
|
949
|
-
* @description optionally provide a default value.
|
|
950
|
-
* @type { string | RandomString | null }
|
|
951
|
-
* @example default: null
|
|
952
|
-
* @example default: 'World'
|
|
953
|
-
* @example default: { charset: 'abcdefg', len: 16 }
|
|
954
|
-
*/
|
|
891
|
+
description?: string | null | undefined;
|
|
892
|
+
warning?: string | null | undefined;
|
|
955
893
|
default: DefaultString | null;
|
|
956
894
|
required: boolean;
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
/**
|
|
966
|
-
* @description A list of regular expressions to which the text must conform to pass validation. A human readable description is provided in case the validation fails.
|
|
967
|
-
* @default []
|
|
968
|
-
* @example
|
|
969
|
-
* ```
|
|
970
|
-
[
|
|
971
|
-
{
|
|
972
|
-
regex: "[a-z]",
|
|
973
|
-
description: "May only contain lower case letters from the English alphabet."
|
|
974
|
-
}
|
|
975
|
-
]
|
|
976
|
-
* ```
|
|
977
|
-
*/
|
|
978
|
-
patterns?: Pattern[];
|
|
979
|
-
/**
|
|
980
|
-
* @description Informs the browser how to behave and which keyboard to display on mobile
|
|
981
|
-
* @default "text"
|
|
982
|
-
*/
|
|
983
|
-
inputmode?: ValueSpecText["inputmode"];
|
|
984
|
-
/**
|
|
985
|
-
* @description Displays a button that will generate a random string according to the provided charset and len attributes.
|
|
986
|
-
*/
|
|
987
|
-
generate?: null | RandomString;
|
|
895
|
+
masked?: boolean | undefined;
|
|
896
|
+
placeholder?: string | null | undefined;
|
|
897
|
+
minLength?: number | null | undefined;
|
|
898
|
+
maxLength?: number | null | undefined;
|
|
899
|
+
patterns?: Pattern[] | undefined;
|
|
900
|
+
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
901
|
+
disabled?: string | false | undefined;
|
|
902
|
+
generate?: RandomString | null | undefined;
|
|
988
903
|
}>) => Value<string | null, Store>;
|
|
989
904
|
dynamicTextarea: (getA: LazyBuild<Store, {
|
|
990
905
|
name: string;
|
|
991
|
-
description?: string | null;
|
|
992
|
-
|
|
993
|
-
warning?: string | null;
|
|
906
|
+
description?: string | null | undefined;
|
|
907
|
+
warning?: string | null | undefined;
|
|
994
908
|
default: string | null;
|
|
995
909
|
required: boolean;
|
|
996
|
-
minLength?: number | null;
|
|
997
|
-
maxLength?: number | null;
|
|
998
|
-
placeholder?: string | null;
|
|
999
|
-
disabled?: false |
|
|
910
|
+
minLength?: number | null | undefined;
|
|
911
|
+
maxLength?: number | null | undefined;
|
|
912
|
+
placeholder?: string | null | undefined;
|
|
913
|
+
disabled?: string | false | undefined;
|
|
1000
914
|
}>) => Value<string | null, Store>;
|
|
1001
915
|
dynamicNumber: (getA: LazyBuild<Store, {
|
|
1002
916
|
name: string;
|
|
1003
|
-
description?: string | null;
|
|
1004
|
-
|
|
1005
|
-
warning?: string | null;
|
|
1006
|
-
/**
|
|
1007
|
-
* @description optionally provide a default value.
|
|
1008
|
-
* @type { number | null }
|
|
1009
|
-
* @example default: null
|
|
1010
|
-
* @example default: 7
|
|
1011
|
-
*/
|
|
917
|
+
description?: string | null | undefined;
|
|
918
|
+
warning?: string | null | undefined;
|
|
1012
919
|
default: number | null;
|
|
1013
920
|
required: boolean;
|
|
1014
|
-
min?: number | null;
|
|
1015
|
-
max?: number | null;
|
|
1016
|
-
|
|
1017
|
-
* @description How much does the number increase/decrease when using the arrows provided by the browser.
|
|
1018
|
-
* @default 1
|
|
1019
|
-
*/
|
|
1020
|
-
step?: number | null;
|
|
1021
|
-
/**
|
|
1022
|
-
* @description Requires the number to be an integer.
|
|
1023
|
-
*/
|
|
921
|
+
min?: number | null | undefined;
|
|
922
|
+
max?: number | null | undefined;
|
|
923
|
+
step?: number | null | undefined;
|
|
1024
924
|
integer: boolean;
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
units?: string | null;
|
|
1029
|
-
placeholder?: string | null;
|
|
1030
|
-
disabled?: false | string;
|
|
925
|
+
units?: string | null | undefined;
|
|
926
|
+
placeholder?: string | null | undefined;
|
|
927
|
+
disabled?: string | false | undefined;
|
|
1031
928
|
}>) => Value<number | null, Store>;
|
|
1032
929
|
dynamicColor: (getA: LazyBuild<Store, {
|
|
1033
930
|
name: string;
|
|
1034
|
-
description?: string | null;
|
|
1035
|
-
|
|
1036
|
-
warning?: string | null;
|
|
1037
|
-
/**
|
|
1038
|
-
* @description optionally provide a default value.
|
|
1039
|
-
* @type { string | null }
|
|
1040
|
-
* @example default: null
|
|
1041
|
-
* @example default: 'ffffff'
|
|
1042
|
-
*/
|
|
931
|
+
description?: string | null | undefined;
|
|
932
|
+
warning?: string | null | undefined;
|
|
1043
933
|
default: string | null;
|
|
1044
934
|
required: boolean;
|
|
1045
|
-
disabled?: false |
|
|
935
|
+
disabled?: string | false | undefined;
|
|
1046
936
|
}>) => Value<string | null, Store>;
|
|
1047
937
|
dynamicDatetime: (getA: LazyBuild<Store, {
|
|
1048
938
|
name: string;
|
|
1049
|
-
description?: string | null;
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
/**
|
|
1053
|
-
* @description optionally provide a default value.
|
|
1054
|
-
* @type { string | null }
|
|
1055
|
-
* @example default: null
|
|
1056
|
-
* @example default: '1985-12-16 18:00:00.000'
|
|
1057
|
-
*/
|
|
1058
|
-
default: string;
|
|
939
|
+
description?: string | null | undefined;
|
|
940
|
+
warning?: string | null | undefined;
|
|
941
|
+
default: string | null;
|
|
1059
942
|
required: boolean;
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
inputmode?: ValueSpecDatetime["inputmode"];
|
|
1065
|
-
min?: string | null;
|
|
1066
|
-
max?: string | null;
|
|
1067
|
-
disabled?: false | string;
|
|
943
|
+
inputmode?: "date" | "time" | "datetime-local" | undefined;
|
|
944
|
+
min?: string | null | undefined;
|
|
945
|
+
max?: string | null | undefined;
|
|
946
|
+
disabled?: string | false | undefined;
|
|
1068
947
|
}>) => Value<string | null, Store>;
|
|
1069
|
-
dynamicSelect:
|
|
948
|
+
dynamicSelect: (getA: LazyBuild<Store, {
|
|
1070
949
|
name: string;
|
|
1071
950
|
description?: string | null | undefined;
|
|
1072
|
-
/** Presents a warning prompt before permitting the value to change. */
|
|
1073
951
|
warning?: string | null | undefined;
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
* @type { default: string }
|
|
1077
|
-
* @example default: 'radio1'
|
|
1078
|
-
*/
|
|
1079
|
-
default: keyof Variants_1 & string;
|
|
1080
|
-
/**
|
|
1081
|
-
* @description A mapping of unique radio options to their human readable display format.
|
|
1082
|
-
* @example
|
|
1083
|
-
* ```
|
|
1084
|
-
{
|
|
1085
|
-
radio1: "Radio 1"
|
|
1086
|
-
radio2: "Radio 2"
|
|
1087
|
-
radio3: "Radio 3"
|
|
1088
|
-
}
|
|
1089
|
-
* ```
|
|
1090
|
-
*/
|
|
1091
|
-
values: Variants_1;
|
|
1092
|
-
/**
|
|
1093
|
-
* @options
|
|
1094
|
-
* - false - The field can be modified.
|
|
1095
|
-
* - string - The field cannot be modified. The provided text explains why.
|
|
1096
|
-
* - string[] - The field can be modified, but the values contained in the array cannot be selected.
|
|
1097
|
-
* @default false
|
|
1098
|
-
*/
|
|
952
|
+
default: string;
|
|
953
|
+
values: Record<string, string>;
|
|
1099
954
|
disabled?: string | false | string[] | undefined;
|
|
1100
955
|
}>) => Value<string, Store>;
|
|
1101
956
|
dynamicMultiselect: (getA: LazyBuild<Store, {
|
|
1102
957
|
name: string;
|
|
1103
|
-
description?: string | null;
|
|
1104
|
-
|
|
1105
|
-
warning?: string | null;
|
|
1106
|
-
/**
|
|
1107
|
-
* @description A simple list of which options should be checked by default.
|
|
1108
|
-
*/
|
|
958
|
+
description?: string | null | undefined;
|
|
959
|
+
warning?: string | null | undefined;
|
|
1109
960
|
default: string[];
|
|
1110
|
-
/**
|
|
1111
|
-
* @description A mapping of checkbox options to their human readable display format.
|
|
1112
|
-
* @example
|
|
1113
|
-
* ```
|
|
1114
|
-
{
|
|
1115
|
-
option1: "Option 1"
|
|
1116
|
-
option2: "Option 2"
|
|
1117
|
-
option3: "Option 3"
|
|
1118
|
-
}
|
|
1119
|
-
* ```
|
|
1120
|
-
*/
|
|
1121
961
|
values: Record<string, string>;
|
|
1122
|
-
minLength?: number | null;
|
|
1123
|
-
maxLength?: number | null;
|
|
1124
|
-
|
|
1125
|
-
* @options
|
|
1126
|
-
* - false - The field can be modified.
|
|
1127
|
-
* - string - The field cannot be modified. The provided text explains why.
|
|
1128
|
-
* - string[] - The field can be modified, but the values contained in the array cannot be selected.
|
|
1129
|
-
* @default false
|
|
1130
|
-
*/
|
|
1131
|
-
disabled?: false | string | string[];
|
|
962
|
+
minLength?: number | null | undefined;
|
|
963
|
+
maxLength?: number | null | undefined;
|
|
964
|
+
disabled?: string | false | string[] | undefined;
|
|
1132
965
|
}>) => Value<string[], Store>;
|
|
1133
966
|
filteredUnion: <VariantValues extends {
|
|
1134
967
|
[x: string]: {
|
|
1135
968
|
name: string;
|
|
1136
969
|
spec: InputSpec<any, Store> | InputSpec<any, never>;
|
|
1137
970
|
};
|
|
1138
|
-
}>(getDisabledFn: LazyBuild<Store, string[]>, a: {
|
|
971
|
+
}>(getDisabledFn: LazyBuild<Store, string | false | string[]>, a: {
|
|
1139
972
|
name: string;
|
|
1140
973
|
description?: string | null | undefined;
|
|
1141
974
|
warning?: string | null | undefined;
|
|
@@ -1149,23 +982,9 @@ export declare class StartSdk<Manifest extends T.SDKManifest, Store> {
|
|
|
1149
982
|
}>(getA: LazyBuild<Store, {
|
|
1150
983
|
name: string;
|
|
1151
984
|
description?: string | null | undefined;
|
|
1152
|
-
/** Presents a warning prompt before permitting the value to change. */
|
|
1153
985
|
warning?: string | null | undefined;
|
|
1154
|
-
/**
|
|
1155
|
-
* @description provide a default value from the list of variants.
|
|
1156
|
-
* @type { string }
|
|
1157
|
-
* @example default: 'variant1'
|
|
1158
|
-
*/
|
|
1159
986
|
default: keyof VariantValues_1 & string;
|
|
1160
|
-
|
|
1161
|
-
/**
|
|
1162
|
-
* @options
|
|
1163
|
-
* - false - The field can be modified.
|
|
1164
|
-
* - string - The field cannot be modified. The provided text explains why.
|
|
1165
|
-
* - string[] - The field can be modified, but the values contained in the array cannot be selected.
|
|
1166
|
-
* @default false
|
|
1167
|
-
*/
|
|
1168
|
-
disabled: false | string | string[];
|
|
987
|
+
disabled: string | false | string[];
|
|
1169
988
|
}>, aVariants: Variants<VariantValues_1, Store> | Variants<VariantValues_1, never>) => Value<import("../../base/lib/actions/input/builder/variants").UnionRes<Store, VariantValues_1, keyof VariantValues_1 & string> | import("../../base/lib/actions/input/builder/variants").UnionRes<never, VariantValues_1, keyof VariantValues_1 & string>, Store>;
|
|
1170
989
|
};
|
|
1171
990
|
Variants: {
|
package/package/lib/StartSdk.js
CHANGED
|
@@ -519,6 +519,9 @@ class StartSdk {
|
|
|
519
519
|
of(effects, image, name) {
|
|
520
520
|
return SubContainer_1.SubContainer.of(effects, image, name);
|
|
521
521
|
},
|
|
522
|
+
with(effects, image, mounts, name, fn) {
|
|
523
|
+
return SubContainer_1.SubContainer.with(effects, image, mounts, name, fn);
|
|
524
|
+
},
|
|
522
525
|
},
|
|
523
526
|
List: {
|
|
524
527
|
/**
|
|
@@ -538,7 +541,7 @@ class StartSdk {
|
|
|
538
541
|
* @param a - attributes of the list itself.
|
|
539
542
|
* @param aSpec - attributes describing each member of the list.
|
|
540
543
|
*/
|
|
541
|
-
dynamicText: (
|
|
544
|
+
dynamicText: (list_1.List.dynamicText),
|
|
542
545
|
},
|
|
543
546
|
StorePath: (0, PathBuilder_1.pathBuilder)(),
|
|
544
547
|
Value: {
|
|
@@ -827,14 +830,14 @@ class StartSdk {
|
|
|
827
830
|
*/
|
|
828
831
|
list: value_1.Value.list,
|
|
829
832
|
hidden: value_1.Value.hidden,
|
|
830
|
-
dynamicToggle: (
|
|
831
|
-
dynamicText: (
|
|
832
|
-
dynamicTextarea: (
|
|
833
|
-
dynamicNumber: (
|
|
834
|
-
dynamicColor: (
|
|
835
|
-
dynamicDatetime: (
|
|
836
|
-
dynamicSelect: (
|
|
837
|
-
dynamicMultiselect: (
|
|
833
|
+
dynamicToggle: (value_1.Value.dynamicToggle),
|
|
834
|
+
dynamicText: (value_1.Value.dynamicText),
|
|
835
|
+
dynamicTextarea: (value_1.Value.dynamicTextarea),
|
|
836
|
+
dynamicNumber: (value_1.Value.dynamicNumber),
|
|
837
|
+
dynamicColor: (value_1.Value.dynamicColor),
|
|
838
|
+
dynamicDatetime: (value_1.Value.dynamicDatetime),
|
|
839
|
+
dynamicSelect: (value_1.Value.dynamicSelect),
|
|
840
|
+
dynamicMultiselect: (value_1.Value.dynamicMultiselect),
|
|
838
841
|
filteredUnion: (getDisabledFn, a, aVariants) => value_1.Value.filteredUnion(getDisabledFn, a, aVariants),
|
|
839
842
|
dynamicUnion: (getA, aVariants) => value_1.Value.dynamicUnion(getA, aVariants),
|
|
840
843
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StartSdk.js","sourceRoot":"","sources":["../../../package/lib/StartSdk.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"StartSdk.js","sourceRoot":"","sources":["../../../package/lib/StartSdk.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAkE;AAClE,8EAIuD;AAUvD,4EAAwE;AACxE,sEAAqE;AASrE,uEAAwD;AACxD,8CAAsD;AACtD,wFAA+E;AAC/E,8CAA0C;AAC1C,sDAAqE;AACrE,6EAAyE;AACzE,gDAAgE;AAChE,oEAAgE;AAChE,uDAAyD;AACzD,wDAAwE;AACxE,2DAAoE;AACpE,qCAAoC;AACpC,6DAAyD;AACzD,uCAAiE;AACjE,+EAGkD;AAClD,6DAAyD;AACzD,yDAAkE;AAClE,+FAA2F;AAC3F,iCAAsC;AACtC,iCAAoC;AACpC,iCAAkE;AAClE,+CAA2C;AAC3C,sDAAgF;AAChF,iCAAqC;AACrC,4CAAwC;AACxC,qFAAiF;AAEjF,gDAAsD;AAEtD,iEAIwC;AACxC,2EAGiD;AACjD,iCAA0C;AAK1C,gEAAiD;AACjD,iDAA6C;AAEhC,QAAA,UAAU,GAAG,IAAA,uBAAe,EAAC,OAAO,CAAC,CAAA;AASlD,MAAa,QAAQ;IACnB,YAA6B,QAAkB;QAAlB,aAAQ,GAAR,QAAQ,CAAU;IAAG,CAAC;IACnD,MAAM,CAAC,EAAE;QACP,OAAO,IAAI,QAAQ,CAAe,IAAa,CAAC,CAAA;IAClD,CAAC;IACD,YAAY,CAAyC,QAAkB;QACrE,OAAO,IAAI,QAAQ,CAAkB,QAAQ,CAAC,CAAA;IAChD,CAAC;IACD,SAAS;QACP,OAAO,IAAI,QAAQ,CAAkB,IAAI,CAAC,QAAQ,CAAC,CAAA;IACrD,CAAC;IAED,KAAK,CAAC,OAAiE;QAiBrE,MAAM,qBAAqB,GAA0B;YACnD,OAAO,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;YACvD,eAAe,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;YACvE,iBAAiB,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CACtC,OAAO,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;YACpC,KAAK,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;YACnD,oBAAoB,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CACzC,OAAO,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC;YACvC,mBAAmB,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CACxC,OAAO,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC;YACtC,qBAAqB,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAC1C,OAAO,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC;YACxC,aAAa,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC;YACnE,cAAc,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;YACrE,SAAS,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC;YAC3D,cAAc,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;YACrE,cAAc,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;YACrE,QAAQ,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;YACzD,eAAe,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;YACvE,SAAS,EAAE,CAAC,OAAO,EAAE,GAAG,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC;SAC5D,CAAA;QAED,OAAO;YACL,QAAQ,EAAE,IAAI,CAAC,QAAQ;YACvB,GAAG,qBAAqB;YACxB,MAAM,EAAE;gBACN,GAAG,EAAE,OAAO,CAAC,SAAS;gBACtB,OAAO,EAAE,CACP,OAAkB,EAClB,SAAsB,EACtB,MAAS,EACT,QAA0B,EAC1B,OAAyC,EACzC,EAAE,CACF,OAAO,CAAC,aAAa,CAAC;oBACpB,OAAO;oBACP,SAAS;oBACT,MAAM;oBACN,QAAQ;oBACR,OAAO,EAAE,OAAO;iBACjB,CAAC;gBACJ,UAAU,EAAE,CACV,OAAkB,EAClB,MAAS,EACT,QAA0B,EAC1B,OAAyC,EACzC,EAAE,CACF,OAAO,CAAC,aAAa,CAAC;oBACpB,OAAO;oBACP,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE;oBAC3B,MAAM;oBACN,QAAQ;oBACR,OAAO,EAAE,OAAO;iBACjB,CAAC;gBACJ,YAAY,EAAE,CAAC,OAAkB,EAAE,GAAG,SAAmB,EAAE,EAAE,CAC3D,OAAO,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;aACpD;YACD,iBAAiB,EAAE,gCAM0B;YAC7C,gBAAgB,EAAE;gBAChB,MAAM,EAAE,CAAoB,OAAU,EAAE,EAAsB,EAAE,EAAE,CAChE,IAAA,0BAAmB,EAAC,OAAO,EAAE;oBAC3B,EAAE;iBACH,CAAC;gBACJ,GAAG,EAAE,CACH,OAAU,EACV,IAAsD,EACtD,EAAE,CAAC,IAAA,0BAAmB,EAAC,OAAO,EAAE,IAAI,CAAC;gBACvC,SAAS,EAAE,CAAoB,OAAU,EAAE,EAAE,CAC3C,IAAA,2BAAoB,EAAC,OAAO,EAAE,EAAE,CAAC;gBACnC,MAAM,EAAE,CACN,OAAU,EACV,IAA8B,EAC9B,EAAE,CAAC,IAAA,2BAAoB,EAAC,OAAO,EAAE,IAAI,CAAC;aACzC;YAED,KAAK,EAAE;gBACL,GAAG,EAAE,CACH,OAAU,EACV,SAAiB,EACjB,IAAoC,EACpC,EAAE,CACF,IAAA,mBAAQ,EAAoB,OAAO,EAAE,IAAI,EAAE;oBACzC,SAAS;iBACV,CAAC;gBACJ,MAAM,EAAE,CACN,OAAU,EACV,IAAoC,EACpC,EAAE,CAAC,IAAA,mBAAQ,EAAoB,OAAO,EAAE,IAAI,CAAC;gBAC/C,MAAM,EAAE,CACN,OAAU,EACV,IAAU,EACV,KAAmE,EACnE,EAAE,CACF,OAAO,CAAC,KAAK,CAAC,GAAG,CAAQ;oBACvB,KAAK;oBACL,IAAI,EAAE,IAAA,6BAAe,EAAC,IAAI,CAAC;iBAC5B,CAAC;aACL;YAED,SAAS,EAAE;gBACT,EAAE,EAAE,CAAC,OAAgB,EAAE,EAAU,EAAE,EAAE,CAAC,IAAI,gBAAS,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,CAAC;aACrE;YACD,WAAW,EAAX,kBAAW;YACX,UAAU,EAAE,KAAK,EACf,OAAgB,EAChB,KAGC,EACD,OAAsB,EACtB,OAEC,EACD,IAAY,EACmD,EAAE;gBACjE,OAAO,UAAU,CAAW,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,CAAC,CAAA;YACrE,CAAC;YACD;;;eAGG;YACH,MAAM,EAAE;gBACN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAwDE;gBACF,SAAS,EAAE,CAOT,EAAM,EACN,QAAqD,EACrD,SAAwB,EACxB,QAAiC,EACjC,GAAuB,EACvB,EAAE,CAAC,qBAAM,CAAC,SAAS,CAAC,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,CAAC;gBAC7D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA2CE;gBACF,YAAY,EAAE,CACZ,EAAM,EACN,QAAqD,EACrD,GAAY,EACZ,EAAE,CAAC,qBAAM,CAAC,YAAY,CAAC,EAAE,EAAE,QAAQ,EAAE,GAAG,CAAC;aAC5C;YACD,kBAAkB,EAAE,EAAE,aAAa,EAAb,kCAAa,EAAE;YACrC;;;;;;;;;;;;;;;;;;;;eAoBG;YACH,eAAe,EAAE,CACf,OAAgB,EAChB,OAsBC,EACD,EAAE,CAAC,IAAI,iDAAuB,CAAC,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE,CAAC;YACzD,aAAa,EAAE,CAAoB,OAAU,EAAE,EAAE,CAC/C,IAAI,oBAAa,CAAC,OAAO,CAAC;YAC5B,gBAAgB,EAAE,CAChB,OAAU,EACV,SAAmB,EACnB,SAAuB,EACvB,EAAE,CAAC,IAAI,wBAAiB,CAAC,OAAO,EAAE,SAAS,EAAE,SAAS,CAAC;YACzD,WAAW,EAAE;gBACX,EAAE,CAAC,OAAkB,EAAE,CAAqC;oBAC1D,OAAO,IAAA,yBAAW,EAAC,EAAE,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,CAAA;gBACvC,CAAC;aACF;YACD,WAAW,EAAE;gBACX,kBAAkB,EAAlB,uCAAkB;gBAClB,WAAW,EAAX,sBAAW;gBACX,eAAe,EAAf,0BAAe;aAChB;YACD,QAAQ;YACR;;;;;;;;;;;;;eAaG;YACH,OAAO,EAAE,CAAA,sBAAkB,CAAA;YAC3B;;;;;;;;;;;;;;;;;;;;;;;;eAwBG;YACH,YAAY,EAAE,CAAC,OAAqC,EAAE,EAAE,CACtD,IAAA,2BAAY,EAAW,OAAO,CAAC;YACjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAsCG;YACH,iBAAiB,EAAE,CAAA,qCAA2B,CAAA;YAC9C,SAAS,EAAE,CAAA,qBAA0B,CAAA;YACrC;;;;;;;;;;;;;;;;;eAiBG;YACH,YAAY,EAAE,CAAC,EAA8B,EAAE,EAAE,CAAC,sBAAO,CAAC,EAAE,CAAC,EAAE,CAAC;YAChE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAwEG;YACH,eAAe,EAAE,wCAAsB;YACvC,SAAS,EAAE,CACT,EAGqC,EACrC,EAAE,CAAC,IAAA,kBAAS,EAAkB,EAAE,CAAC;YACnC;;eAEG;YACH,cAAc,EAAE,CAAC,EAAgC,EAAE,EAAE,CACnD,IAAA,+BAAc,EAAkB,EAAE,CAAC;YACrC,OAAO,EAAE;gBACP,cAAc,EAAd,+BAAc;gBACd,eAAe,EAAf,yBAAe;gBACf,oBAAoB,EAApB,8BAAoB;gBACpB,cAAc,EAAd,+BAAc;aACf;YACD,MAAM,EAAE;gBACN,EAAE;oBACA,OAAO,eAAM,CAAC,EAAE,EAAY,CAAA;gBAC9B,CAAC;aACF;YACD,OAAO,EAAE;gBACP,OAAO,EAAE,CACP,GAAG,WAAwD,EAC3D,EAAE,CAAC,iBAAO,CAAC,WAAW,CAAW,GAAG,WAAW,CAAC;gBAClD,OAAO,EAAE,CACP,GAAG,OAA2D,EAC9D,EAAE,CAAC,iBAAO,CAAC,SAAS,CAAW,GAAG,OAAO,CAAC;gBAC5C,WAAW,EAAE,CAAC,OAA8B,EAAE,EAAE,CAC9C,iBAAO,CAAC,WAAW,CAAW,OAAO,CAAC;aACzC;YACD,SAAS,EAAE;gBACT;;;;;;;;;;;;;;;;;;;;;;;;;;mBA0BG;gBACH,EAAE,EAAE,CAGF,IAAU,EACV,EAAE,CAAC,qBAAS,CAAC,EAAE,CAAc,IAAI,CAAC;aACrC;YACD,OAAO,EAAE;gBACP,EAAE,CACA,OAAgB,EAChB,OAA+D,EAC/D,cAA+B;oBAE/B,OAAO,iBAAO,CAAC,EAAE,CAAW,EAAE,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,CAAC,CAAA;gBACnE,CAAC;aACF;YACD,YAAY,EAAE;gBACZ,EAAE,CACA,OAAgB,EAChB,KAGC,EACD,IAAY;oBAEZ,OAAO,2BAAY,CAAC,EAAE,CAAC,OAAO,EAAE,KAAK,EAAE,IAAI,CAAC,CAAA;gBAC9C,CAAC;gBACD,IAAI,CACF,OAAkB,EAClB,KAGC,EACD,MAAiD,EACjD,IAAY,EACZ,EAA8C;oBAE9C,OAAO,2BAAY,CAAC,IAAI,CAAC,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,EAAE,CAAC,CAAA;gBAC5D,CAAC;aACF;YACD,IAAI,EAAE;gBACJ;;;;mBAIG;gBACH,IAAI,EAAE,WAAI,CAAC,IAAI;gBACf;;;;mBAIG;gBACH,GAAG,EAAE,CACH,CAA8C,EAC9C,KAAkD,EAClD,EAAE,CAAC,WAAI,CAAC,GAAG,CAAc,CAAC,EAAE,KAAK,CAAC;gBACpC;;;;mBAIG;gBACH,WAAW,EAAE,CAAA,WAAI,CAAC,WAAkB,CAAA;aACrC;YACD,SAAS,EAAE,IAAA,yBAAW,GAAS;YAC/B,KAAK,EAAE;gBACL;;;;;;;;;;;;;;;mBAeG;gBACH,MAAM,EAAE,aAAK,CAAC,MAAM;gBACpB;;;;;;;;;;;;;;;;;;;;;;;mBAuBG;gBACH,IAAI,EAAE,aAAK,CAAC,IAAI;gBAChB;;;;;;;;;;;;;;;;;;;mBAmBG;gBACH,QAAQ,EAAE,aAAK,CAAC,QAAQ;gBACxB;;;;;;;;;;;;;;;;;;;;;;mBAsBG;gBACH,MAAM,EAAE,aAAK,CAAC,MAAM;gBACpB;;;;;;;;;;;;;;;;mBAgBG;gBACH,KAAK,EAAE,aAAK,CAAC,KAAK;gBAClB;;;;;;;;;;;;;;;;;;;mBAmBG;gBACH,QAAQ,EAAE,aAAK,CAAC,QAAQ;gBACxB;;;;;;;;;;;;;;;;;;;;mBAoBG;gBACH,MAAM,EAAE,aAAK,CAAC,MAAM;gBACpB;;;;;;;;;;;;;;;;;;;;;;mBAsBG;gBACH,WAAW,EAAE,aAAK,CAAC,WAAW;gBAC9B;;;;;;;;;;;;;;;;mBAgBG;gBACH,MAAM,EAAE,aAAK,CAAC,MAAM;gBACpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA4BG;gBACH,KAAK,EAAE,aAAK,CAAC,KAAK;gBAClB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA8DG;gBACH,IAAI,EAAE,aAAK,CAAC,IAAI;gBAChB,MAAM,EAAE,aAAK,CAAC,MAAM;gBACpB,aAAa,EAAE,CAAA,aAAK,CAAC,aAAoB,CAAA;gBACzC,WAAW,EAAE,CAAA,aAAK,CAAC,WAAkB,CAAA;gBACrC,eAAe,EAAE,CAAA,aAAK,CAAC,eAAsB,CAAA;gBAC7C,aAAa,EAAE,CAAA,aAAK,CAAC,aAAoB,CAAA;gBACzC,YAAY,EAAE,CAAA,aAAK,CAAC,YAAmB,CAAA;gBACvC,eAAe,EAAE,CAAA,aAAK,CAAC,eAAsB,CAAA;gBAC7C,aAAa,EAAE,CAAA,aAAK,CAAC,aAAoB,CAAA;gBACzC,kBAAkB,EAAE,CAAA,aAAK,CAAC,kBAAyB,CAAA;gBACnD,aAAa,EAAE,CAQb,aAEI,EACJ,CAAkE,EAClE,SAEI,EACJ,EAAE,CACF,aAAK,CAAC,aAAa,CACjB,aAAa,EACb,CAAC,EACD,SAAS,CACV;gBAEH,YAAY,EAAE,CAQZ,IAAoE,EACpE,SAEI,EACJ,EAAE,CAAC,aAAK,CAAC,YAAY,CAAuB,IAAI,EAAE,SAAS,CAAC;aAC/D;YACD,QAAQ,EAAE;gBACR,EAAE,EAAE,CAQF,CAAgB,EAChB,EAAE,CAAC,mBAAQ,CAAC,EAAE,CAAuB,CAAC,CAAC;aAC1C;SACF,CAAA;IACH,CAAC;CACF;AA19BD,4BA09BC;AAEM,KAAK,UAAU,UAAU,CAC9B,OAAgB,EAChB,KAA6E,EAC7E,OAAuC,EACvC,OAEC,EACD,IAAY;IAEZ,MAAM,QAAQ,GAAG,IAAA,mBAAY,EAAC,OAAO,CAAC,CAAA;IACtC,OAAO,2BAAY,CAAC,IAAI,CACtB,OAAO,EACP,KAAK,EACL,OAAO,CAAC,MAAM,IAAI,EAAE,EACpB,IAAI,EACJ,CAAC,YAAY,EAAE,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,QAAQ,CAAC,CAC9C,CAAA;AACH,CAAC;AAjBD,gCAiBC"}
|
|
@@ -808,6 +808,13 @@ export declare const sdk: {
|
|
|
808
808
|
imageId: "main";
|
|
809
809
|
sharedRun?: boolean | undefined;
|
|
810
810
|
}, name: string): Promise<import("..").SubContainer>;
|
|
811
|
+
with<T_3>(effects: import("../../../base/lib/Effects").Effects, image: {
|
|
812
|
+
imageId: "main";
|
|
813
|
+
sharedRun?: boolean | undefined;
|
|
814
|
+
}, mounts: {
|
|
815
|
+
options: import("../util/SubContainer").MountOptions;
|
|
816
|
+
path: string;
|
|
817
|
+
}[], name: string, fn: (subContainer: import("..").SubContainer) => Promise<T_3>): Promise<T_3>;
|
|
811
818
|
};
|
|
812
819
|
List: {
|
|
813
820
|
text: typeof import("../../../base/lib/actions/input/builder").List.text;
|
|
@@ -849,7 +856,7 @@ export declare const sdk: {
|
|
|
849
856
|
placeholder?: string | null | undefined;
|
|
850
857
|
minLength?: number | null | undefined;
|
|
851
858
|
maxLength?: number | null | undefined;
|
|
852
|
-
patterns
|
|
859
|
+
patterns?: import("../../../base/lib/actions/input/inputSpecTypes").Pattern[] | undefined;
|
|
853
860
|
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
854
861
|
};
|
|
855
862
|
}>) => import("../../../base/lib/actions/input/builder").List<string[], {
|
|
@@ -911,6 +918,7 @@ export declare const sdk: {
|
|
|
911
918
|
maxLength?: number | null | undefined;
|
|
912
919
|
patterns?: import("../../../base/lib/actions/input/inputSpecTypes").Pattern[] | undefined;
|
|
913
920
|
inputmode?: "text" | "email" | "tel" | "url" | undefined;
|
|
921
|
+
disabled?: string | false | undefined;
|
|
914
922
|
generate?: import("../../../base/lib/actions/input/inputSpecTypes").RandomString | null | undefined;
|
|
915
923
|
}>) => import("../../../base/lib/actions/input/builder").Value<string | null, {
|
|
916
924
|
storeRoot: {
|
|
@@ -982,7 +990,7 @@ export declare const sdk: {
|
|
|
982
990
|
name: string;
|
|
983
991
|
description?: string | null | undefined;
|
|
984
992
|
warning?: string | null | undefined;
|
|
985
|
-
default: string;
|
|
993
|
+
default: string | null;
|
|
986
994
|
required: boolean;
|
|
987
995
|
inputmode?: "date" | "time" | "datetime-local" | undefined;
|
|
988
996
|
min?: string | null | undefined;
|
|
@@ -993,7 +1001,7 @@ export declare const sdk: {
|
|
|
993
1001
|
storeLeaf: "value";
|
|
994
1002
|
};
|
|
995
1003
|
}>;
|
|
996
|
-
dynamicSelect:
|
|
1004
|
+
dynamicSelect: (getA: import("../../../base/lib/actions/input/builder/inputSpec").LazyBuild<{
|
|
997
1005
|
storeRoot: {
|
|
998
1006
|
storeLeaf: "value";
|
|
999
1007
|
};
|
|
@@ -1001,8 +1009,8 @@ export declare const sdk: {
|
|
|
1001
1009
|
name: string;
|
|
1002
1010
|
description?: string | null | undefined;
|
|
1003
1011
|
warning?: string | null | undefined;
|
|
1004
|
-
default:
|
|
1005
|
-
values:
|
|
1012
|
+
default: string;
|
|
1013
|
+
values: Record<string, string>;
|
|
1006
1014
|
disabled?: string | false | string[] | undefined;
|
|
1007
1015
|
}>) => import("../../../base/lib/actions/input/builder").Value<string, {
|
|
1008
1016
|
storeRoot: {
|
|
@@ -1040,7 +1048,7 @@ export declare const sdk: {
|
|
|
1040
1048
|
storeRoot: {
|
|
1041
1049
|
storeLeaf: "value";
|
|
1042
1050
|
};
|
|
1043
|
-
}, string[]>, a: {
|
|
1051
|
+
}, string | false | string[]>, a: {
|
|
1044
1052
|
name: string;
|
|
1045
1053
|
description?: string | null | undefined;
|
|
1046
1054
|
warning?: string | null | undefined;
|
|
@@ -1076,7 +1084,6 @@ export declare const sdk: {
|
|
|
1076
1084
|
description?: string | null | undefined;
|
|
1077
1085
|
warning?: string | null | undefined;
|
|
1078
1086
|
default: keyof VariantValues_1 & string;
|
|
1079
|
-
required: boolean;
|
|
1080
1087
|
disabled: string | false | string[];
|
|
1081
1088
|
}>, aVariants: import("../../../base/lib/actions/input/builder").Variants<VariantValues_1, {
|
|
1082
1089
|
storeRoot: {
|
package/package.json
CHANGED