@forge/manifest 3.2.0-next.3 → 3.2.0-next.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/CHANGELOG.md +18 -0
- package/out/schema/basic-manifest-schema.json +23 -0
- package/out/schema/basic-manifest.d.ts +9 -0
- package/out/schema/manifest-schema.json +280 -222
- package/out/schema/manifest.d.ts +245 -223
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -115,6 +115,15 @@ export interface App {
|
|
|
115
115
|
runtime?: Runtime;
|
|
116
116
|
licensing?: Licensing;
|
|
117
117
|
connect?: Connect;
|
|
118
|
+
/**
|
|
119
|
+
* Options related to hosted storage
|
|
120
|
+
*/
|
|
121
|
+
storage?: {
|
|
122
|
+
/**
|
|
123
|
+
* Labels to classify the type of data stored
|
|
124
|
+
*/
|
|
125
|
+
classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
|
|
126
|
+
};
|
|
118
127
|
}
|
|
119
128
|
/**
|
|
120
129
|
* Options related to the Forge Javascript runtime.
|
|
@@ -3123,7 +3132,7 @@ export interface Modules {
|
|
|
3123
3132
|
weight?: number;
|
|
3124
3133
|
cacheable?: boolean;
|
|
3125
3134
|
location?: string;
|
|
3126
|
-
conditions?: (
|
|
3135
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3127
3136
|
params?: {
|
|
3128
3137
|
[k: string]: unknown;
|
|
3129
3138
|
};
|
|
@@ -3137,7 +3146,7 @@ export interface Modules {
|
|
|
3137
3146
|
weight?: number;
|
|
3138
3147
|
cacheable?: boolean;
|
|
3139
3148
|
location?: string;
|
|
3140
|
-
conditions?: (
|
|
3149
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3141
3150
|
params?: {
|
|
3142
3151
|
[k: string]: unknown;
|
|
3143
3152
|
};
|
|
@@ -3152,7 +3161,7 @@ export interface Modules {
|
|
|
3152
3161
|
name?: I18NProperty55;
|
|
3153
3162
|
weight?: number;
|
|
3154
3163
|
location?: string;
|
|
3155
|
-
conditions?: (
|
|
3164
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3156
3165
|
params?: {
|
|
3157
3166
|
[k: string]: unknown;
|
|
3158
3167
|
};
|
|
@@ -3164,7 +3173,7 @@ export interface Modules {
|
|
|
3164
3173
|
name?: I18NProperty55;
|
|
3165
3174
|
weight?: number;
|
|
3166
3175
|
location?: string;
|
|
3167
|
-
conditions?: (
|
|
3176
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3168
3177
|
params?: {
|
|
3169
3178
|
[k: string]: unknown;
|
|
3170
3179
|
};
|
|
@@ -3179,7 +3188,7 @@ export interface Modules {
|
|
|
3179
3188
|
weight?: number;
|
|
3180
3189
|
cacheable?: boolean;
|
|
3181
3190
|
location?: string;
|
|
3182
|
-
conditions?: (
|
|
3191
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3183
3192
|
params?: {
|
|
3184
3193
|
[k: string]: unknown;
|
|
3185
3194
|
};
|
|
@@ -3193,7 +3202,7 @@ export interface Modules {
|
|
|
3193
3202
|
weight?: number;
|
|
3194
3203
|
cacheable?: boolean;
|
|
3195
3204
|
location?: string;
|
|
3196
|
-
conditions?: (
|
|
3205
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3197
3206
|
params?: {
|
|
3198
3207
|
[k: string]: unknown;
|
|
3199
3208
|
};
|
|
@@ -3313,7 +3322,7 @@ export interface Modules {
|
|
|
3313
3322
|
name?: I18NProperty63;
|
|
3314
3323
|
weight?: number;
|
|
3315
3324
|
location?: string;
|
|
3316
|
-
conditions?: (
|
|
3325
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
3317
3326
|
params?: {
|
|
3318
3327
|
[k: string]: unknown;
|
|
3319
3328
|
};
|
|
@@ -3325,7 +3334,7 @@ export interface Modules {
|
|
|
3325
3334
|
name?: I18NProperty63;
|
|
3326
3335
|
weight?: number;
|
|
3327
3336
|
location?: string;
|
|
3328
|
-
conditions?: (
|
|
3337
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
3329
3338
|
params?: {
|
|
3330
3339
|
[k: string]: unknown;
|
|
3331
3340
|
};
|
|
@@ -3756,7 +3765,7 @@ export interface I18NProperty1 {
|
|
|
3756
3765
|
*
|
|
3757
3766
|
*/
|
|
3758
3767
|
export interface CompositeCondition {
|
|
3759
|
-
conditions?: (
|
|
3768
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
3760
3769
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3761
3770
|
[k: string]: unknown;
|
|
3762
3771
|
}
|
|
@@ -6464,10 +6473,37 @@ export interface Icon10 {
|
|
|
6464
6473
|
*
|
|
6465
6474
|
*/
|
|
6466
6475
|
export interface WebItemTarget1 {
|
|
6467
|
-
options?:
|
|
6476
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
6468
6477
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
6469
6478
|
[k: string]: unknown;
|
|
6470
6479
|
}
|
|
6480
|
+
/**
|
|
6481
|
+
*
|
|
6482
|
+
*
|
|
6483
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6484
|
+
*
|
|
6485
|
+
* <h3>Example</h3>
|
|
6486
|
+
*
|
|
6487
|
+
*
|
|
6488
|
+
*
|
|
6489
|
+
*
|
|
6490
|
+
*
|
|
6491
|
+
* {
|
|
6492
|
+
* "target": {
|
|
6493
|
+
* "type": "dialogmodule",
|
|
6494
|
+
* "options": {
|
|
6495
|
+
* "key": "dialog-module-key"
|
|
6496
|
+
* }
|
|
6497
|
+
* }
|
|
6498
|
+
* }
|
|
6499
|
+
*
|
|
6500
|
+
*
|
|
6501
|
+
*
|
|
6502
|
+
*/
|
|
6503
|
+
export interface DialogModuleOptions1 {
|
|
6504
|
+
key: string;
|
|
6505
|
+
[k: string]: unknown;
|
|
6506
|
+
}
|
|
6471
6507
|
/**
|
|
6472
6508
|
*
|
|
6473
6509
|
*
|
|
@@ -6603,33 +6639,6 @@ export interface InlineDialogOptions1 {
|
|
|
6603
6639
|
isRelativeToMouse?: boolean;
|
|
6604
6640
|
[k: string]: unknown;
|
|
6605
6641
|
}
|
|
6606
|
-
/**
|
|
6607
|
-
*
|
|
6608
|
-
*
|
|
6609
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6610
|
-
*
|
|
6611
|
-
* <h3>Example</h3>
|
|
6612
|
-
*
|
|
6613
|
-
*
|
|
6614
|
-
*
|
|
6615
|
-
*
|
|
6616
|
-
*
|
|
6617
|
-
* {
|
|
6618
|
-
* "target": {
|
|
6619
|
-
* "type": "dialogmodule",
|
|
6620
|
-
* "options": {
|
|
6621
|
-
* "key": "dialog-module-key"
|
|
6622
|
-
* }
|
|
6623
|
-
* }
|
|
6624
|
-
* }
|
|
6625
|
-
*
|
|
6626
|
-
*
|
|
6627
|
-
*
|
|
6628
|
-
*/
|
|
6629
|
-
export interface DialogModuleOptions1 {
|
|
6630
|
-
key: string;
|
|
6631
|
-
[k: string]: unknown;
|
|
6632
|
-
}
|
|
6633
6642
|
/**
|
|
6634
6643
|
*
|
|
6635
6644
|
*
|
|
@@ -6722,7 +6731,7 @@ export interface SingleCondition4 {
|
|
|
6722
6731
|
*
|
|
6723
6732
|
*/
|
|
6724
6733
|
export interface CompositeCondition6 {
|
|
6725
|
-
conditions?: (
|
|
6734
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
6726
6735
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6727
6736
|
[k: string]: unknown;
|
|
6728
6737
|
}
|
|
@@ -7080,6 +7089,37 @@ export interface I18NProperty63 {
|
|
|
7080
7089
|
i18n?: string;
|
|
7081
7090
|
[k: string]: unknown;
|
|
7082
7091
|
}
|
|
7092
|
+
/**
|
|
7093
|
+
*
|
|
7094
|
+
*
|
|
7095
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7096
|
+
* [Conditions](../../conditions/) for more information.
|
|
7097
|
+
*
|
|
7098
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7099
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7100
|
+
*
|
|
7101
|
+
* <h3>Example</h3>
|
|
7102
|
+
*
|
|
7103
|
+
*
|
|
7104
|
+
*
|
|
7105
|
+
*
|
|
7106
|
+
*
|
|
7107
|
+
* {
|
|
7108
|
+
* "condition": "user_is_logged_in",
|
|
7109
|
+
* "invert": false
|
|
7110
|
+
* }
|
|
7111
|
+
*
|
|
7112
|
+
*
|
|
7113
|
+
*
|
|
7114
|
+
*/
|
|
7115
|
+
export interface SingleCondition5 {
|
|
7116
|
+
condition: string;
|
|
7117
|
+
invert?: boolean;
|
|
7118
|
+
params?: {
|
|
7119
|
+
[k: string]: unknown;
|
|
7120
|
+
};
|
|
7121
|
+
[k: string]: unknown;
|
|
7122
|
+
}
|
|
7083
7123
|
/**
|
|
7084
7124
|
*
|
|
7085
7125
|
*
|
|
@@ -7117,41 +7157,10 @@ export interface I18NProperty63 {
|
|
|
7117
7157
|
*
|
|
7118
7158
|
*/
|
|
7119
7159
|
export interface CompositeCondition7 {
|
|
7120
|
-
conditions?: (
|
|
7160
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7121
7161
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7122
7162
|
[k: string]: unknown;
|
|
7123
7163
|
}
|
|
7124
|
-
/**
|
|
7125
|
-
*
|
|
7126
|
-
*
|
|
7127
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7128
|
-
* [Conditions](../../conditions/) for more information.
|
|
7129
|
-
*
|
|
7130
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7131
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7132
|
-
*
|
|
7133
|
-
* <h3>Example</h3>
|
|
7134
|
-
*
|
|
7135
|
-
*
|
|
7136
|
-
*
|
|
7137
|
-
*
|
|
7138
|
-
*
|
|
7139
|
-
* {
|
|
7140
|
-
* "condition": "user_is_logged_in",
|
|
7141
|
-
* "invert": false
|
|
7142
|
-
* }
|
|
7143
|
-
*
|
|
7144
|
-
*
|
|
7145
|
-
*
|
|
7146
|
-
*/
|
|
7147
|
-
export interface SingleCondition5 {
|
|
7148
|
-
condition: string;
|
|
7149
|
-
invert?: boolean;
|
|
7150
|
-
params?: {
|
|
7151
|
-
[k: string]: unknown;
|
|
7152
|
-
};
|
|
7153
|
-
[k: string]: unknown;
|
|
7154
|
-
}
|
|
7155
7164
|
/**
|
|
7156
7165
|
*
|
|
7157
7166
|
*
|
|
@@ -8571,7 +8580,7 @@ export interface I18NProperty74 {
|
|
|
8571
8580
|
*
|
|
8572
8581
|
*/
|
|
8573
8582
|
export interface MacroPropertyPanel {
|
|
8574
|
-
controls?: (ControlGroup |
|
|
8583
|
+
controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
|
|
8575
8584
|
cacheable?: boolean;
|
|
8576
8585
|
url: string;
|
|
8577
8586
|
[k: string]: unknown;
|
|
@@ -8672,7 +8681,7 @@ export interface I18NProperty75 {
|
|
|
8672
8681
|
/**
|
|
8673
8682
|
*
|
|
8674
8683
|
*
|
|
8675
|
-
* Defines a
|
|
8684
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
8676
8685
|
*
|
|
8677
8686
|
* <p><b>Example</b></p>
|
|
8678
8687
|
*
|
|
@@ -8680,44 +8689,27 @@ export interface I18NProperty75 {
|
|
|
8680
8689
|
*
|
|
8681
8690
|
*
|
|
8682
8691
|
*
|
|
8683
|
-
*
|
|
8684
|
-
*
|
|
8685
|
-
*
|
|
8686
|
-
* "
|
|
8687
|
-
*
|
|
8688
|
-
*
|
|
8689
|
-
*
|
|
8690
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8691
|
-
* "label": {
|
|
8692
|
-
* "value": "My Custom Control 0"
|
|
8693
|
-
* },
|
|
8694
|
-
* "key": "my-custom-toggle-button-0"
|
|
8695
|
-
* },
|
|
8696
|
-
* {
|
|
8697
|
-
* "type": "togglebutton",
|
|
8698
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8699
|
-
* "label": {
|
|
8700
|
-
* "value": "My Custom Control 1"
|
|
8701
|
-
* },
|
|
8702
|
-
* "key": "my-custom-toggle-button-1"
|
|
8703
|
-
* }
|
|
8704
|
-
* ]
|
|
8705
|
-
* }
|
|
8706
|
-
* ]
|
|
8692
|
+
* {
|
|
8693
|
+
* "type": "button",
|
|
8694
|
+
* "label": {
|
|
8695
|
+
* "value": "My Custom Control 0"
|
|
8696
|
+
* },
|
|
8697
|
+
* "key": "my-custom-control-0"
|
|
8698
|
+
* }
|
|
8707
8699
|
*
|
|
8708
8700
|
*
|
|
8709
8701
|
*
|
|
8710
8702
|
*/
|
|
8711
|
-
export interface
|
|
8712
|
-
controls: ToggleButtonControl[];
|
|
8703
|
+
export interface TextControl {
|
|
8713
8704
|
macroParameter: string;
|
|
8714
|
-
type: '
|
|
8705
|
+
type: 'text' | 'TEXT';
|
|
8706
|
+
key: string;
|
|
8715
8707
|
[k: string]: unknown;
|
|
8716
8708
|
}
|
|
8717
8709
|
/**
|
|
8718
8710
|
*
|
|
8719
8711
|
*
|
|
8720
|
-
* Defines a
|
|
8712
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8721
8713
|
*
|
|
8722
8714
|
* <p><b>Example</b></p>
|
|
8723
8715
|
*
|
|
@@ -8726,21 +8718,19 @@ export interface ToggleGroup {
|
|
|
8726
8718
|
*
|
|
8727
8719
|
*
|
|
8728
8720
|
* {
|
|
8729
|
-
* "type": "
|
|
8730
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8721
|
+
* "type": "button",
|
|
8731
8722
|
* "label": {
|
|
8732
8723
|
* "value": "My Custom Control 0"
|
|
8733
8724
|
* },
|
|
8734
|
-
* "key": "my-custom-
|
|
8725
|
+
* "key": "my-custom-control-0"
|
|
8735
8726
|
* }
|
|
8736
8727
|
*
|
|
8737
8728
|
*
|
|
8738
8729
|
*
|
|
8739
8730
|
*/
|
|
8740
|
-
export interface
|
|
8741
|
-
macroParameterValue: string;
|
|
8731
|
+
export interface ButtonControl1 {
|
|
8742
8732
|
label: I18NProperty76;
|
|
8743
|
-
type: '
|
|
8733
|
+
type: 'button' | 'BUTTON';
|
|
8744
8734
|
key: string;
|
|
8745
8735
|
[k: string]: unknown;
|
|
8746
8736
|
}
|
|
@@ -8771,7 +8761,7 @@ export interface I18NProperty76 {
|
|
|
8771
8761
|
/**
|
|
8772
8762
|
*
|
|
8773
8763
|
*
|
|
8774
|
-
* Defines a
|
|
8764
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8775
8765
|
*
|
|
8776
8766
|
* <p><b>Example</b></p>
|
|
8777
8767
|
*
|
|
@@ -8779,27 +8769,44 @@ export interface I18NProperty76 {
|
|
|
8779
8769
|
*
|
|
8780
8770
|
*
|
|
8781
8771
|
*
|
|
8782
|
-
*
|
|
8783
|
-
*
|
|
8784
|
-
*
|
|
8785
|
-
* "
|
|
8786
|
-
*
|
|
8787
|
-
*
|
|
8788
|
-
*
|
|
8772
|
+
* [
|
|
8773
|
+
* {
|
|
8774
|
+
* "type": "togglegroup",
|
|
8775
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8776
|
+
* "controls": [
|
|
8777
|
+
* {
|
|
8778
|
+
* "type": "togglebutton",
|
|
8779
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8780
|
+
* "label": {
|
|
8781
|
+
* "value": "My Custom Control 0"
|
|
8782
|
+
* },
|
|
8783
|
+
* "key": "my-custom-toggle-button-0"
|
|
8784
|
+
* },
|
|
8785
|
+
* {
|
|
8786
|
+
* "type": "togglebutton",
|
|
8787
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8788
|
+
* "label": {
|
|
8789
|
+
* "value": "My Custom Control 1"
|
|
8790
|
+
* },
|
|
8791
|
+
* "key": "my-custom-toggle-button-1"
|
|
8792
|
+
* }
|
|
8793
|
+
* ]
|
|
8794
|
+
* }
|
|
8795
|
+
* ]
|
|
8789
8796
|
*
|
|
8790
8797
|
*
|
|
8791
8798
|
*
|
|
8792
8799
|
*/
|
|
8793
|
-
export interface
|
|
8800
|
+
export interface ToggleGroup {
|
|
8801
|
+
controls: ToggleButtonControl[];
|
|
8794
8802
|
macroParameter: string;
|
|
8795
|
-
type: '
|
|
8796
|
-
key: string;
|
|
8803
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8797
8804
|
[k: string]: unknown;
|
|
8798
8805
|
}
|
|
8799
8806
|
/**
|
|
8800
8807
|
*
|
|
8801
8808
|
*
|
|
8802
|
-
* Defines a button which
|
|
8809
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8803
8810
|
*
|
|
8804
8811
|
* <p><b>Example</b></p>
|
|
8805
8812
|
*
|
|
@@ -8808,19 +8815,21 @@ export interface TextControl {
|
|
|
8808
8815
|
*
|
|
8809
8816
|
*
|
|
8810
8817
|
* {
|
|
8811
|
-
* "type": "
|
|
8818
|
+
* "type": "togglebutton",
|
|
8819
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8812
8820
|
* "label": {
|
|
8813
8821
|
* "value": "My Custom Control 0"
|
|
8814
8822
|
* },
|
|
8815
|
-
* "key": "my-custom-
|
|
8823
|
+
* "key": "my-custom-toggle-button-0"
|
|
8816
8824
|
* }
|
|
8817
8825
|
*
|
|
8818
8826
|
*
|
|
8819
8827
|
*
|
|
8820
8828
|
*/
|
|
8821
|
-
export interface
|
|
8829
|
+
export interface ToggleButtonControl {
|
|
8830
|
+
macroParameterValue: string;
|
|
8822
8831
|
label: I18NProperty77;
|
|
8823
|
-
type: '
|
|
8832
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8824
8833
|
key: string;
|
|
8825
8834
|
[k: string]: unknown;
|
|
8826
8835
|
}
|
|
@@ -29816,7 +29825,7 @@ export interface I18NProperty83 {
|
|
|
29816
29825
|
*
|
|
29817
29826
|
*/
|
|
29818
29827
|
export interface MacroPropertyPanel1 {
|
|
29819
|
-
controls?: (
|
|
29828
|
+
controls?: (ControlGroup1 | TextControl1 | ToggleGroup1 | ButtonControl3)[];
|
|
29820
29829
|
cacheable?: boolean;
|
|
29821
29830
|
url: string;
|
|
29822
29831
|
[k: string]: unknown;
|
|
@@ -29824,35 +29833,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29824
29833
|
/**
|
|
29825
29834
|
*
|
|
29826
29835
|
*
|
|
29827
|
-
* Defines a
|
|
29828
|
-
*
|
|
29829
|
-
* <p><b>Example</b></p>
|
|
29830
|
-
*
|
|
29831
|
-
*
|
|
29832
|
-
*
|
|
29833
|
-
*
|
|
29834
|
-
*
|
|
29835
|
-
* {
|
|
29836
|
-
* "type": "button",
|
|
29837
|
-
* "label": {
|
|
29838
|
-
* "value": "My Custom Control 0"
|
|
29839
|
-
* },
|
|
29840
|
-
* "key": "my-custom-control-0"
|
|
29841
|
-
* }
|
|
29842
|
-
*
|
|
29843
|
-
*
|
|
29844
|
-
*
|
|
29845
|
-
*/
|
|
29846
|
-
export interface TextControl1 {
|
|
29847
|
-
macroParameter: string;
|
|
29848
|
-
type: 'text' | 'TEXT';
|
|
29849
|
-
key: string;
|
|
29850
|
-
[k: string]: unknown;
|
|
29851
|
-
}
|
|
29852
|
-
/**
|
|
29853
|
-
*
|
|
29854
|
-
*
|
|
29855
|
-
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29836
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
29856
29837
|
*
|
|
29857
29838
|
* <p><b>Example</b></p>
|
|
29858
29839
|
*
|
|
@@ -29862,24 +29843,21 @@ export interface TextControl1 {
|
|
|
29862
29843
|
*
|
|
29863
29844
|
* [
|
|
29864
29845
|
* {
|
|
29865
|
-
* "type": "
|
|
29866
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29846
|
+
* "type": "group",
|
|
29867
29847
|
* "controls": [
|
|
29868
29848
|
* {
|
|
29869
|
-
* "type": "
|
|
29870
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29849
|
+
* "type": "button",
|
|
29871
29850
|
* "label": {
|
|
29872
29851
|
* "value": "My Custom Control 0"
|
|
29873
29852
|
* },
|
|
29874
|
-
* "key": "my-custom-
|
|
29853
|
+
* "key": "my-custom-control-0"
|
|
29875
29854
|
* },
|
|
29876
29855
|
* {
|
|
29877
|
-
* "type": "
|
|
29878
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29856
|
+
* "type": "button",
|
|
29879
29857
|
* "label": {
|
|
29880
29858
|
* "value": "My Custom Control 1"
|
|
29881
29859
|
* },
|
|
29882
|
-
* "key": "my-custom-
|
|
29860
|
+
* "key": "my-custom-control-1"
|
|
29883
29861
|
* }
|
|
29884
29862
|
* ]
|
|
29885
29863
|
* }
|
|
@@ -29888,16 +29866,15 @@ export interface TextControl1 {
|
|
|
29888
29866
|
*
|
|
29889
29867
|
*
|
|
29890
29868
|
*/
|
|
29891
|
-
export interface
|
|
29892
|
-
controls:
|
|
29893
|
-
|
|
29894
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29869
|
+
export interface ControlGroup1 {
|
|
29870
|
+
controls: ButtonControl2[];
|
|
29871
|
+
type: 'group' | 'GROUP';
|
|
29895
29872
|
[k: string]: unknown;
|
|
29896
29873
|
}
|
|
29897
29874
|
/**
|
|
29898
29875
|
*
|
|
29899
29876
|
*
|
|
29900
|
-
* Defines a
|
|
29877
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29901
29878
|
*
|
|
29902
29879
|
* <p><b>Example</b></p>
|
|
29903
29880
|
*
|
|
@@ -29906,21 +29883,19 @@ export interface ToggleGroup1 {
|
|
|
29906
29883
|
*
|
|
29907
29884
|
*
|
|
29908
29885
|
* {
|
|
29909
|
-
* "type": "
|
|
29910
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29886
|
+
* "type": "button",
|
|
29911
29887
|
* "label": {
|
|
29912
29888
|
* "value": "My Custom Control 0"
|
|
29913
29889
|
* },
|
|
29914
|
-
* "key": "my-custom-
|
|
29890
|
+
* "key": "my-custom-control-0"
|
|
29915
29891
|
* }
|
|
29916
29892
|
*
|
|
29917
29893
|
*
|
|
29918
29894
|
*
|
|
29919
29895
|
*/
|
|
29920
|
-
export interface
|
|
29921
|
-
macroParameterValue: string;
|
|
29896
|
+
export interface ButtonControl2 {
|
|
29922
29897
|
label: I18NProperty84;
|
|
29923
|
-
type: '
|
|
29898
|
+
type: 'button' | 'BUTTON';
|
|
29924
29899
|
key: string;
|
|
29925
29900
|
[k: string]: unknown;
|
|
29926
29901
|
}
|
|
@@ -29951,7 +29926,35 @@ export interface I18NProperty84 {
|
|
|
29951
29926
|
/**
|
|
29952
29927
|
*
|
|
29953
29928
|
*
|
|
29954
|
-
* Defines a
|
|
29929
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29930
|
+
*
|
|
29931
|
+
* <p><b>Example</b></p>
|
|
29932
|
+
*
|
|
29933
|
+
*
|
|
29934
|
+
*
|
|
29935
|
+
*
|
|
29936
|
+
*
|
|
29937
|
+
* {
|
|
29938
|
+
* "type": "button",
|
|
29939
|
+
* "label": {
|
|
29940
|
+
* "value": "My Custom Control 0"
|
|
29941
|
+
* },
|
|
29942
|
+
* "key": "my-custom-control-0"
|
|
29943
|
+
* }
|
|
29944
|
+
*
|
|
29945
|
+
*
|
|
29946
|
+
*
|
|
29947
|
+
*/
|
|
29948
|
+
export interface TextControl1 {
|
|
29949
|
+
macroParameter: string;
|
|
29950
|
+
type: 'text' | 'TEXT';
|
|
29951
|
+
key: string;
|
|
29952
|
+
[k: string]: unknown;
|
|
29953
|
+
}
|
|
29954
|
+
/**
|
|
29955
|
+
*
|
|
29956
|
+
*
|
|
29957
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29955
29958
|
*
|
|
29956
29959
|
* <p><b>Example</b></p>
|
|
29957
29960
|
*
|
|
@@ -29961,21 +29964,24 @@ export interface I18NProperty84 {
|
|
|
29961
29964
|
*
|
|
29962
29965
|
* [
|
|
29963
29966
|
* {
|
|
29964
|
-
* "type": "
|
|
29967
|
+
* "type": "togglegroup",
|
|
29968
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29965
29969
|
* "controls": [
|
|
29966
29970
|
* {
|
|
29967
|
-
* "type": "
|
|
29971
|
+
* "type": "togglebutton",
|
|
29972
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29968
29973
|
* "label": {
|
|
29969
29974
|
* "value": "My Custom Control 0"
|
|
29970
29975
|
* },
|
|
29971
|
-
* "key": "my-custom-
|
|
29976
|
+
* "key": "my-custom-toggle-button-0"
|
|
29972
29977
|
* },
|
|
29973
29978
|
* {
|
|
29974
|
-
* "type": "
|
|
29979
|
+
* "type": "togglebutton",
|
|
29980
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29975
29981
|
* "label": {
|
|
29976
29982
|
* "value": "My Custom Control 1"
|
|
29977
29983
|
* },
|
|
29978
|
-
* "key": "my-custom-
|
|
29984
|
+
* "key": "my-custom-toggle-button-1"
|
|
29979
29985
|
* }
|
|
29980
29986
|
* ]
|
|
29981
29987
|
* }
|
|
@@ -29984,15 +29990,16 @@ export interface I18NProperty84 {
|
|
|
29984
29990
|
*
|
|
29985
29991
|
*
|
|
29986
29992
|
*/
|
|
29987
|
-
export interface
|
|
29988
|
-
controls:
|
|
29989
|
-
|
|
29993
|
+
export interface ToggleGroup1 {
|
|
29994
|
+
controls: ToggleButtonControl1[];
|
|
29995
|
+
macroParameter: string;
|
|
29996
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29990
29997
|
[k: string]: unknown;
|
|
29991
29998
|
}
|
|
29992
29999
|
/**
|
|
29993
30000
|
*
|
|
29994
30001
|
*
|
|
29995
|
-
* Defines a button which
|
|
30002
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29996
30003
|
*
|
|
29997
30004
|
* <p><b>Example</b></p>
|
|
29998
30005
|
*
|
|
@@ -30001,19 +30008,21 @@ export interface ControlGroup1 {
|
|
|
30001
30008
|
*
|
|
30002
30009
|
*
|
|
30003
30010
|
* {
|
|
30004
|
-
* "type": "
|
|
30011
|
+
* "type": "togglebutton",
|
|
30012
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30005
30013
|
* "label": {
|
|
30006
30014
|
* "value": "My Custom Control 0"
|
|
30007
30015
|
* },
|
|
30008
|
-
* "key": "my-custom-
|
|
30016
|
+
* "key": "my-custom-toggle-button-0"
|
|
30009
30017
|
* }
|
|
30010
30018
|
*
|
|
30011
30019
|
*
|
|
30012
30020
|
*
|
|
30013
30021
|
*/
|
|
30014
|
-
export interface
|
|
30022
|
+
export interface ToggleButtonControl1 {
|
|
30023
|
+
macroParameterValue: string;
|
|
30015
30024
|
label: I18NProperty85;
|
|
30016
|
-
type: '
|
|
30025
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30017
30026
|
key: string;
|
|
30018
30027
|
[k: string]: unknown;
|
|
30019
30028
|
}
|
|
@@ -50942,10 +50951,47 @@ export interface I18NProperty91 {
|
|
|
50942
50951
|
*
|
|
50943
50952
|
*/
|
|
50944
50953
|
export interface WebItemTarget2 {
|
|
50945
|
-
options?:
|
|
50954
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
50946
50955
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50947
50956
|
[k: string]: unknown;
|
|
50948
50957
|
}
|
|
50958
|
+
/**
|
|
50959
|
+
*
|
|
50960
|
+
*
|
|
50961
|
+
* Options for an inline dialog target
|
|
50962
|
+
*
|
|
50963
|
+
* <h3>Example</h3>
|
|
50964
|
+
*
|
|
50965
|
+
*
|
|
50966
|
+
*
|
|
50967
|
+
*
|
|
50968
|
+
*
|
|
50969
|
+
* {
|
|
50970
|
+
* "target": {
|
|
50971
|
+
* "type": "inlinedialog",
|
|
50972
|
+
* "options": {
|
|
50973
|
+
* "onHover": true,
|
|
50974
|
+
* "offsetX": "30px",
|
|
50975
|
+
* "offsetY": "20px"
|
|
50976
|
+
* }
|
|
50977
|
+
* }
|
|
50978
|
+
* }
|
|
50979
|
+
*
|
|
50980
|
+
*
|
|
50981
|
+
*
|
|
50982
|
+
*/
|
|
50983
|
+
export interface InlineDialogOptions2 {
|
|
50984
|
+
offsetX?: string;
|
|
50985
|
+
offsetY?: string;
|
|
50986
|
+
width?: string;
|
|
50987
|
+
onTop?: boolean;
|
|
50988
|
+
showDelay?: number;
|
|
50989
|
+
closeOthers?: boolean;
|
|
50990
|
+
persistent?: boolean;
|
|
50991
|
+
onHover?: boolean;
|
|
50992
|
+
isRelativeToMouse?: boolean;
|
|
50993
|
+
[k: string]: unknown;
|
|
50994
|
+
}
|
|
50949
50995
|
/**
|
|
50950
50996
|
*
|
|
50951
50997
|
*
|
|
@@ -51071,43 +51117,6 @@ export interface DialogModuleOptions2 {
|
|
|
51071
51117
|
key: string;
|
|
51072
51118
|
[k: string]: unknown;
|
|
51073
51119
|
}
|
|
51074
|
-
/**
|
|
51075
|
-
*
|
|
51076
|
-
*
|
|
51077
|
-
* Options for an inline dialog target
|
|
51078
|
-
*
|
|
51079
|
-
* <h3>Example</h3>
|
|
51080
|
-
*
|
|
51081
|
-
*
|
|
51082
|
-
*
|
|
51083
|
-
*
|
|
51084
|
-
*
|
|
51085
|
-
* {
|
|
51086
|
-
* "target": {
|
|
51087
|
-
* "type": "inlinedialog",
|
|
51088
|
-
* "options": {
|
|
51089
|
-
* "onHover": true,
|
|
51090
|
-
* "offsetX": "30px",
|
|
51091
|
-
* "offsetY": "20px"
|
|
51092
|
-
* }
|
|
51093
|
-
* }
|
|
51094
|
-
* }
|
|
51095
|
-
*
|
|
51096
|
-
*
|
|
51097
|
-
*
|
|
51098
|
-
*/
|
|
51099
|
-
export interface InlineDialogOptions2 {
|
|
51100
|
-
offsetX?: string;
|
|
51101
|
-
offsetY?: string;
|
|
51102
|
-
width?: string;
|
|
51103
|
-
onTop?: boolean;
|
|
51104
|
-
showDelay?: number;
|
|
51105
|
-
closeOthers?: boolean;
|
|
51106
|
-
persistent?: boolean;
|
|
51107
|
-
onHover?: boolean;
|
|
51108
|
-
isRelativeToMouse?: boolean;
|
|
51109
|
-
[k: string]: unknown;
|
|
51110
|
-
}
|
|
51111
51120
|
/**
|
|
51112
51121
|
*
|
|
51113
51122
|
*
|
|
@@ -51916,6 +51925,19 @@ export interface RemotesSchema {
|
|
|
51916
51925
|
*/
|
|
51917
51926
|
key: string;
|
|
51918
51927
|
baseUrl: string;
|
|
51928
|
+
/**
|
|
51929
|
+
* The type of operations done in the remote
|
|
51930
|
+
*/
|
|
51931
|
+
operations?: ['storage' | 'other', ...('storage' | 'other')[]];
|
|
51932
|
+
/**
|
|
51933
|
+
* Options related to remote storage
|
|
51934
|
+
*/
|
|
51935
|
+
storage?: {
|
|
51936
|
+
/**
|
|
51937
|
+
* Labels to classify the type of data stored
|
|
51938
|
+
*/
|
|
51939
|
+
classifications: ['ugc' | 'pii' | 'other', ...('ugc' | 'pii' | 'other')[]];
|
|
51940
|
+
};
|
|
51919
51941
|
}
|
|
51920
51942
|
export interface Providers {
|
|
51921
51943
|
auth: Auth;
|