@forge/manifest 3.2.0-next.4 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -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 +249 -191
- package/out/schema/manifest.d.ts +233 -211
- 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.
|
|
@@ -3036,7 +3045,7 @@ export interface Modules {
|
|
|
3036
3045
|
fullPage?: boolean;
|
|
3037
3046
|
cacheable?: boolean;
|
|
3038
3047
|
location?: string;
|
|
3039
|
-
conditions?: (
|
|
3048
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3040
3049
|
params?: {
|
|
3041
3050
|
[k: string]: unknown;
|
|
3042
3051
|
};
|
|
@@ -3051,7 +3060,7 @@ export interface Modules {
|
|
|
3051
3060
|
fullPage?: boolean;
|
|
3052
3061
|
cacheable?: boolean;
|
|
3053
3062
|
location?: string;
|
|
3054
|
-
conditions?: (
|
|
3063
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3055
3064
|
params?: {
|
|
3056
3065
|
[k: string]: unknown;
|
|
3057
3066
|
};
|
|
@@ -3099,7 +3108,7 @@ export interface Modules {
|
|
|
3099
3108
|
filter?: string;
|
|
3100
3109
|
excludeBody?: boolean;
|
|
3101
3110
|
event?: string;
|
|
3102
|
-
conditions?: (
|
|
3111
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3103
3112
|
propertyKeys?: string[];
|
|
3104
3113
|
url?: string;
|
|
3105
3114
|
key: ModuleKeySchema;
|
|
@@ -3109,7 +3118,7 @@ export interface Modules {
|
|
|
3109
3118
|
filter?: string;
|
|
3110
3119
|
excludeBody?: boolean;
|
|
3111
3120
|
event?: string;
|
|
3112
|
-
conditions?: (
|
|
3121
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3113
3122
|
propertyKeys?: string[];
|
|
3114
3123
|
url?: string;
|
|
3115
3124
|
key: ModuleKeySchema;
|
|
@@ -3248,7 +3257,7 @@ export interface Modules {
|
|
|
3248
3257
|
fullPage?: boolean;
|
|
3249
3258
|
cacheable?: boolean;
|
|
3250
3259
|
location?: string;
|
|
3251
|
-
conditions?: (
|
|
3260
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3252
3261
|
params?: {
|
|
3253
3262
|
[k: string]: unknown;
|
|
3254
3263
|
};
|
|
@@ -3263,7 +3272,7 @@ export interface Modules {
|
|
|
3263
3272
|
fullPage?: boolean;
|
|
3264
3273
|
cacheable?: boolean;
|
|
3265
3274
|
location?: string;
|
|
3266
|
-
conditions?: (
|
|
3275
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3267
3276
|
params?: {
|
|
3268
3277
|
[k: string]: unknown;
|
|
3269
3278
|
};
|
|
@@ -3313,7 +3322,7 @@ export interface Modules {
|
|
|
3313
3322
|
name?: I18NProperty63;
|
|
3314
3323
|
weight?: number;
|
|
3315
3324
|
location?: string;
|
|
3316
|
-
conditions?: (
|
|
3325
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
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?: (CompositeCondition7 | SingleCondition5)[];
|
|
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?: (SingleCondition | ManifestSchema)[];
|
|
3760
3769
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
3761
3770
|
[k: string]: unknown;
|
|
3762
3771
|
}
|
|
@@ -6464,7 +6473,7 @@ export interface Icon10 {
|
|
|
6464
6473
|
*
|
|
6465
6474
|
*/
|
|
6466
6475
|
export interface WebItemTarget1 {
|
|
6467
|
-
options?: InlineDialogOptions1 |
|
|
6476
|
+
options?: InlineDialogOptions1 | DialogModuleOptions1 | DialogOptions2;
|
|
6468
6477
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
6469
6478
|
[k: string]: unknown;
|
|
6470
6479
|
}
|
|
@@ -6505,6 +6514,33 @@ export interface InlineDialogOptions1 {
|
|
|
6505
6514
|
isRelativeToMouse?: boolean;
|
|
6506
6515
|
[k: string]: unknown;
|
|
6507
6516
|
}
|
|
6517
|
+
/**
|
|
6518
|
+
*
|
|
6519
|
+
*
|
|
6520
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
6521
|
+
*
|
|
6522
|
+
* <h3>Example</h3>
|
|
6523
|
+
*
|
|
6524
|
+
*
|
|
6525
|
+
*
|
|
6526
|
+
*
|
|
6527
|
+
*
|
|
6528
|
+
* {
|
|
6529
|
+
* "target": {
|
|
6530
|
+
* "type": "dialogmodule",
|
|
6531
|
+
* "options": {
|
|
6532
|
+
* "key": "dialog-module-key"
|
|
6533
|
+
* }
|
|
6534
|
+
* }
|
|
6535
|
+
* }
|
|
6536
|
+
*
|
|
6537
|
+
*
|
|
6538
|
+
*
|
|
6539
|
+
*/
|
|
6540
|
+
export interface DialogModuleOptions1 {
|
|
6541
|
+
key: string;
|
|
6542
|
+
[k: string]: unknown;
|
|
6543
|
+
}
|
|
6508
6544
|
/**
|
|
6509
6545
|
*
|
|
6510
6546
|
*
|
|
@@ -6603,33 +6639,6 @@ export interface I18NProperty58 {
|
|
|
6603
6639
|
i18n?: string;
|
|
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?: (ManifestSchema | SingleCondition)[];
|
|
6726
6735
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
6727
6736
|
[k: string]: unknown;
|
|
6728
6737
|
}
|
|
@@ -7080,37 +7089,6 @@ export interface I18NProperty63 {
|
|
|
7080
7089
|
i18n?: string;
|
|
7081
7090
|
[k: string]: unknown;
|
|
7082
7091
|
}
|
|
7083
|
-
/**
|
|
7084
|
-
*
|
|
7085
|
-
*
|
|
7086
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7087
|
-
* [Conditions](../../conditions/) for more information.
|
|
7088
|
-
*
|
|
7089
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7090
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7091
|
-
*
|
|
7092
|
-
* <h3>Example</h3>
|
|
7093
|
-
*
|
|
7094
|
-
*
|
|
7095
|
-
*
|
|
7096
|
-
*
|
|
7097
|
-
*
|
|
7098
|
-
* {
|
|
7099
|
-
* "condition": "user_is_logged_in",
|
|
7100
|
-
* "invert": false
|
|
7101
|
-
* }
|
|
7102
|
-
*
|
|
7103
|
-
*
|
|
7104
|
-
*
|
|
7105
|
-
*/
|
|
7106
|
-
export interface SingleCondition5 {
|
|
7107
|
-
condition: string;
|
|
7108
|
-
invert?: boolean;
|
|
7109
|
-
params?: {
|
|
7110
|
-
[k: string]: unknown;
|
|
7111
|
-
};
|
|
7112
|
-
[k: string]: unknown;
|
|
7113
|
-
}
|
|
7114
7092
|
/**
|
|
7115
7093
|
*
|
|
7116
7094
|
*
|
|
@@ -7148,10 +7126,41 @@ export interface SingleCondition5 {
|
|
|
7148
7126
|
*
|
|
7149
7127
|
*/
|
|
7150
7128
|
export interface CompositeCondition7 {
|
|
7151
|
-
conditions?: (
|
|
7129
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7152
7130
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7153
7131
|
[k: string]: unknown;
|
|
7154
7132
|
}
|
|
7133
|
+
/**
|
|
7134
|
+
*
|
|
7135
|
+
*
|
|
7136
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7137
|
+
* [Conditions](../../conditions/) for more information.
|
|
7138
|
+
*
|
|
7139
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7140
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7141
|
+
*
|
|
7142
|
+
* <h3>Example</h3>
|
|
7143
|
+
*
|
|
7144
|
+
*
|
|
7145
|
+
*
|
|
7146
|
+
*
|
|
7147
|
+
*
|
|
7148
|
+
* {
|
|
7149
|
+
* "condition": "user_is_logged_in",
|
|
7150
|
+
* "invert": false
|
|
7151
|
+
* }
|
|
7152
|
+
*
|
|
7153
|
+
*
|
|
7154
|
+
*
|
|
7155
|
+
*/
|
|
7156
|
+
export interface SingleCondition5 {
|
|
7157
|
+
condition: string;
|
|
7158
|
+
invert?: boolean;
|
|
7159
|
+
params?: {
|
|
7160
|
+
[k: string]: unknown;
|
|
7161
|
+
};
|
|
7162
|
+
[k: string]: unknown;
|
|
7163
|
+
}
|
|
7155
7164
|
/**
|
|
7156
7165
|
*
|
|
7157
7166
|
*
|
|
@@ -8571,7 +8580,7 @@ export interface I18NProperty74 {
|
|
|
8571
8580
|
*
|
|
8572
8581
|
*/
|
|
8573
8582
|
export interface MacroPropertyPanel {
|
|
8574
|
-
controls?: (TextControl |
|
|
8583
|
+
controls?: (TextControl | ToggleGroup | ButtonControl | ControlGroup)[];
|
|
8575
8584
|
cacheable?: boolean;
|
|
8576
8585
|
url: string;
|
|
8577
8586
|
[k: string]: unknown;
|
|
@@ -8607,7 +8616,7 @@ export interface TextControl {
|
|
|
8607
8616
|
/**
|
|
8608
8617
|
*
|
|
8609
8618
|
*
|
|
8610
|
-
* Defines a
|
|
8619
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
8611
8620
|
*
|
|
8612
8621
|
* <p><b>Example</b></p>
|
|
8613
8622
|
*
|
|
@@ -8617,21 +8626,24 @@ export interface TextControl {
|
|
|
8617
8626
|
*
|
|
8618
8627
|
* [
|
|
8619
8628
|
* {
|
|
8620
|
-
* "type": "
|
|
8629
|
+
* "type": "togglegroup",
|
|
8630
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
8621
8631
|
* "controls": [
|
|
8622
8632
|
* {
|
|
8623
|
-
* "type": "
|
|
8633
|
+
* "type": "togglebutton",
|
|
8634
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8624
8635
|
* "label": {
|
|
8625
8636
|
* "value": "My Custom Control 0"
|
|
8626
8637
|
* },
|
|
8627
|
-
* "key": "my-custom-
|
|
8638
|
+
* "key": "my-custom-toggle-button-0"
|
|
8628
8639
|
* },
|
|
8629
8640
|
* {
|
|
8630
|
-
* "type": "
|
|
8641
|
+
* "type": "togglebutton",
|
|
8642
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
8631
8643
|
* "label": {
|
|
8632
8644
|
* "value": "My Custom Control 1"
|
|
8633
8645
|
* },
|
|
8634
|
-
* "key": "my-custom-
|
|
8646
|
+
* "key": "my-custom-toggle-button-1"
|
|
8635
8647
|
* }
|
|
8636
8648
|
* ]
|
|
8637
8649
|
* }
|
|
@@ -8640,15 +8652,16 @@ export interface TextControl {
|
|
|
8640
8652
|
*
|
|
8641
8653
|
*
|
|
8642
8654
|
*/
|
|
8643
|
-
export interface
|
|
8644
|
-
controls:
|
|
8645
|
-
|
|
8655
|
+
export interface ToggleGroup {
|
|
8656
|
+
controls: ToggleButtonControl[];
|
|
8657
|
+
macroParameter: string;
|
|
8658
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
8646
8659
|
[k: string]: unknown;
|
|
8647
8660
|
}
|
|
8648
8661
|
/**
|
|
8649
8662
|
*
|
|
8650
8663
|
*
|
|
8651
|
-
* Defines a button which
|
|
8664
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
8652
8665
|
*
|
|
8653
8666
|
* <p><b>Example</b></p>
|
|
8654
8667
|
*
|
|
@@ -8657,19 +8670,21 @@ export interface ControlGroup {
|
|
|
8657
8670
|
*
|
|
8658
8671
|
*
|
|
8659
8672
|
* {
|
|
8660
|
-
* "type": "
|
|
8673
|
+
* "type": "togglebutton",
|
|
8674
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
8661
8675
|
* "label": {
|
|
8662
8676
|
* "value": "My Custom Control 0"
|
|
8663
8677
|
* },
|
|
8664
|
-
* "key": "my-custom-
|
|
8678
|
+
* "key": "my-custom-toggle-button-0"
|
|
8665
8679
|
* }
|
|
8666
8680
|
*
|
|
8667
8681
|
*
|
|
8668
8682
|
*
|
|
8669
8683
|
*/
|
|
8670
|
-
export interface
|
|
8684
|
+
export interface ToggleButtonControl {
|
|
8685
|
+
macroParameterValue: string;
|
|
8671
8686
|
label: I18NProperty75;
|
|
8672
|
-
type: '
|
|
8687
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8673
8688
|
key: string;
|
|
8674
8689
|
[k: string]: unknown;
|
|
8675
8690
|
}
|
|
@@ -8700,7 +8715,7 @@ export interface I18NProperty75 {
|
|
|
8700
8715
|
/**
|
|
8701
8716
|
*
|
|
8702
8717
|
*
|
|
8703
|
-
* Defines a
|
|
8718
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
8704
8719
|
*
|
|
8705
8720
|
* <p><b>Example</b></p>
|
|
8706
8721
|
*
|
|
@@ -8708,92 +8723,86 @@ export interface I18NProperty75 {
|
|
|
8708
8723
|
*
|
|
8709
8724
|
*
|
|
8710
8725
|
*
|
|
8711
|
-
*
|
|
8712
|
-
*
|
|
8713
|
-
*
|
|
8714
|
-
* "
|
|
8715
|
-
*
|
|
8716
|
-
*
|
|
8717
|
-
*
|
|
8718
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8719
|
-
* "label": {
|
|
8720
|
-
* "value": "My Custom Control 0"
|
|
8721
|
-
* },
|
|
8722
|
-
* "key": "my-custom-toggle-button-0"
|
|
8723
|
-
* },
|
|
8724
|
-
* {
|
|
8725
|
-
* "type": "togglebutton",
|
|
8726
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
8727
|
-
* "label": {
|
|
8728
|
-
* "value": "My Custom Control 1"
|
|
8729
|
-
* },
|
|
8730
|
-
* "key": "my-custom-toggle-button-1"
|
|
8731
|
-
* }
|
|
8732
|
-
* ]
|
|
8733
|
-
* }
|
|
8734
|
-
* ]
|
|
8726
|
+
* {
|
|
8727
|
+
* "type": "button",
|
|
8728
|
+
* "label": {
|
|
8729
|
+
* "value": "My Custom Control 0"
|
|
8730
|
+
* },
|
|
8731
|
+
* "key": "my-custom-control-0"
|
|
8732
|
+
* }
|
|
8735
8733
|
*
|
|
8736
8734
|
*
|
|
8737
8735
|
*
|
|
8738
8736
|
*/
|
|
8739
|
-
export interface
|
|
8740
|
-
|
|
8741
|
-
|
|
8742
|
-
|
|
8737
|
+
export interface ButtonControl {
|
|
8738
|
+
label: I18NProperty76;
|
|
8739
|
+
type: 'button' | 'BUTTON';
|
|
8740
|
+
key: string;
|
|
8743
8741
|
[k: string]: unknown;
|
|
8744
8742
|
}
|
|
8745
8743
|
/**
|
|
8746
8744
|
*
|
|
8747
8745
|
*
|
|
8748
|
-
*
|
|
8746
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
8747
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8749
8748
|
*
|
|
8750
|
-
* <
|
|
8749
|
+
* <h3>Example</h3>
|
|
8751
8750
|
*
|
|
8752
8751
|
*
|
|
8753
8752
|
*
|
|
8754
8753
|
*
|
|
8755
8754
|
*
|
|
8756
8755
|
* {
|
|
8757
|
-
* "
|
|
8758
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
8759
|
-
* "label": {
|
|
8760
|
-
* "value": "My Custom Control 0"
|
|
8761
|
-
* },
|
|
8762
|
-
* "key": "my-custom-toggle-button-0"
|
|
8756
|
+
* "value": "My text"
|
|
8763
8757
|
* }
|
|
8764
8758
|
*
|
|
8765
8759
|
*
|
|
8766
8760
|
*
|
|
8767
8761
|
*/
|
|
8768
|
-
export interface
|
|
8769
|
-
|
|
8770
|
-
|
|
8771
|
-
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
8772
|
-
key: string;
|
|
8762
|
+
export interface I18NProperty76 {
|
|
8763
|
+
value: string;
|
|
8764
|
+
i18n?: string;
|
|
8773
8765
|
[k: string]: unknown;
|
|
8774
8766
|
}
|
|
8775
8767
|
/**
|
|
8776
8768
|
*
|
|
8777
8769
|
*
|
|
8778
|
-
*
|
|
8779
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
8770
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8780
8771
|
*
|
|
8781
|
-
* <
|
|
8772
|
+
* <p><b>Example</b></p>
|
|
8782
8773
|
*
|
|
8783
8774
|
*
|
|
8784
8775
|
*
|
|
8785
8776
|
*
|
|
8786
8777
|
*
|
|
8787
|
-
*
|
|
8788
|
-
*
|
|
8789
|
-
*
|
|
8778
|
+
* [
|
|
8779
|
+
* {
|
|
8780
|
+
* "type": "group",
|
|
8781
|
+
* "controls": [
|
|
8782
|
+
* {
|
|
8783
|
+
* "type": "button",
|
|
8784
|
+
* "label": {
|
|
8785
|
+
* "value": "My Custom Control 0"
|
|
8786
|
+
* },
|
|
8787
|
+
* "key": "my-custom-control-0"
|
|
8788
|
+
* },
|
|
8789
|
+
* {
|
|
8790
|
+
* "type": "button",
|
|
8791
|
+
* "label": {
|
|
8792
|
+
* "value": "My Custom Control 1"
|
|
8793
|
+
* },
|
|
8794
|
+
* "key": "my-custom-control-1"
|
|
8795
|
+
* }
|
|
8796
|
+
* ]
|
|
8797
|
+
* }
|
|
8798
|
+
* ]
|
|
8790
8799
|
*
|
|
8791
8800
|
*
|
|
8792
8801
|
*
|
|
8793
8802
|
*/
|
|
8794
|
-
export interface
|
|
8795
|
-
|
|
8796
|
-
|
|
8803
|
+
export interface ControlGroup {
|
|
8804
|
+
controls: ButtonControl1[];
|
|
8805
|
+
type: 'group' | 'GROUP';
|
|
8797
8806
|
[k: string]: unknown;
|
|
8798
8807
|
}
|
|
8799
8808
|
/**
|
|
@@ -29816,39 +29825,11 @@ export interface I18NProperty83 {
|
|
|
29816
29825
|
*
|
|
29817
29826
|
*/
|
|
29818
29827
|
export interface MacroPropertyPanel1 {
|
|
29819
|
-
controls?: (
|
|
29828
|
+
controls?: (ToggleGroup1 | TextControl1 | ButtonControl2 | ControlGroup1)[];
|
|
29820
29829
|
cacheable?: boolean;
|
|
29821
29830
|
url: string;
|
|
29822
29831
|
[k: string]: unknown;
|
|
29823
29832
|
}
|
|
29824
|
-
/**
|
|
29825
|
-
*
|
|
29826
|
-
*
|
|
29827
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
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
29833
|
/**
|
|
29853
29834
|
*
|
|
29854
29835
|
*
|
|
@@ -29951,7 +29932,7 @@ export interface I18NProperty84 {
|
|
|
29951
29932
|
/**
|
|
29952
29933
|
*
|
|
29953
29934
|
*
|
|
29954
|
-
* Defines a
|
|
29935
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
29955
29936
|
*
|
|
29956
29937
|
* <p><b>Example</b></p>
|
|
29957
29938
|
*
|
|
@@ -29959,34 +29940,21 @@ export interface I18NProperty84 {
|
|
|
29959
29940
|
*
|
|
29960
29941
|
*
|
|
29961
29942
|
*
|
|
29962
|
-
*
|
|
29963
|
-
*
|
|
29964
|
-
*
|
|
29965
|
-
* "
|
|
29966
|
-
*
|
|
29967
|
-
*
|
|
29968
|
-
*
|
|
29969
|
-
* "value": "My Custom Control 0"
|
|
29970
|
-
* },
|
|
29971
|
-
* "key": "my-custom-control-0"
|
|
29972
|
-
* },
|
|
29973
|
-
* {
|
|
29974
|
-
* "type": "button",
|
|
29975
|
-
* "label": {
|
|
29976
|
-
* "value": "My Custom Control 1"
|
|
29977
|
-
* },
|
|
29978
|
-
* "key": "my-custom-control-1"
|
|
29979
|
-
* }
|
|
29980
|
-
* ]
|
|
29981
|
-
* }
|
|
29982
|
-
* ]
|
|
29943
|
+
* {
|
|
29944
|
+
* "type": "button",
|
|
29945
|
+
* "label": {
|
|
29946
|
+
* "value": "My Custom Control 0"
|
|
29947
|
+
* },
|
|
29948
|
+
* "key": "my-custom-control-0"
|
|
29949
|
+
* }
|
|
29983
29950
|
*
|
|
29984
29951
|
*
|
|
29985
29952
|
*
|
|
29986
29953
|
*/
|
|
29987
|
-
export interface
|
|
29988
|
-
|
|
29989
|
-
type: '
|
|
29954
|
+
export interface TextControl1 {
|
|
29955
|
+
macroParameter: string;
|
|
29956
|
+
type: 'text' | 'TEXT';
|
|
29957
|
+
key: string;
|
|
29990
29958
|
[k: string]: unknown;
|
|
29991
29959
|
}
|
|
29992
29960
|
/**
|
|
@@ -30041,6 +30009,47 @@ export interface I18NProperty85 {
|
|
|
30041
30009
|
i18n?: string;
|
|
30042
30010
|
[k: string]: unknown;
|
|
30043
30011
|
}
|
|
30012
|
+
/**
|
|
30013
|
+
*
|
|
30014
|
+
*
|
|
30015
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30016
|
+
*
|
|
30017
|
+
* <p><b>Example</b></p>
|
|
30018
|
+
*
|
|
30019
|
+
*
|
|
30020
|
+
*
|
|
30021
|
+
*
|
|
30022
|
+
*
|
|
30023
|
+
* [
|
|
30024
|
+
* {
|
|
30025
|
+
* "type": "group",
|
|
30026
|
+
* "controls": [
|
|
30027
|
+
* {
|
|
30028
|
+
* "type": "button",
|
|
30029
|
+
* "label": {
|
|
30030
|
+
* "value": "My Custom Control 0"
|
|
30031
|
+
* },
|
|
30032
|
+
* "key": "my-custom-control-0"
|
|
30033
|
+
* },
|
|
30034
|
+
* {
|
|
30035
|
+
* "type": "button",
|
|
30036
|
+
* "label": {
|
|
30037
|
+
* "value": "My Custom Control 1"
|
|
30038
|
+
* },
|
|
30039
|
+
* "key": "my-custom-control-1"
|
|
30040
|
+
* }
|
|
30041
|
+
* ]
|
|
30042
|
+
* }
|
|
30043
|
+
* ]
|
|
30044
|
+
*
|
|
30045
|
+
*
|
|
30046
|
+
*
|
|
30047
|
+
*/
|
|
30048
|
+
export interface ControlGroup1 {
|
|
30049
|
+
controls: ButtonControl3[];
|
|
30050
|
+
type: 'group' | 'GROUP';
|
|
30051
|
+
[k: string]: unknown;
|
|
30052
|
+
}
|
|
30044
30053
|
/**
|
|
30045
30054
|
*
|
|
30046
30055
|
*
|
|
@@ -50942,7 +50951,7 @@ export interface I18NProperty91 {
|
|
|
50942
50951
|
*
|
|
50943
50952
|
*/
|
|
50944
50953
|
export interface WebItemTarget2 {
|
|
50945
|
-
options?: DialogOptions4 |
|
|
50954
|
+
options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
|
|
50946
50955
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50947
50956
|
[k: string]: unknown;
|
|
50948
50957
|
}
|
|
@@ -51047,7 +51056,7 @@ export interface I18NProperty92 {
|
|
|
51047
51056
|
/**
|
|
51048
51057
|
*
|
|
51049
51058
|
*
|
|
51050
|
-
* Options for
|
|
51059
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51051
51060
|
*
|
|
51052
51061
|
* <h3>Example</h3>
|
|
51053
51062
|
*
|
|
@@ -51057,11 +51066,9 @@ export interface I18NProperty92 {
|
|
|
51057
51066
|
*
|
|
51058
51067
|
* {
|
|
51059
51068
|
* "target": {
|
|
51060
|
-
* "type": "
|
|
51069
|
+
* "type": "dialogmodule",
|
|
51061
51070
|
* "options": {
|
|
51062
|
-
* "
|
|
51063
|
-
* "offsetX": "30px",
|
|
51064
|
-
* "offsetY": "20px"
|
|
51071
|
+
* "key": "dialog-module-key"
|
|
51065
51072
|
* }
|
|
51066
51073
|
* }
|
|
51067
51074
|
* }
|
|
@@ -51069,22 +51076,14 @@ export interface I18NProperty92 {
|
|
|
51069
51076
|
*
|
|
51070
51077
|
*
|
|
51071
51078
|
*/
|
|
51072
|
-
export interface
|
|
51073
|
-
|
|
51074
|
-
offsetY?: string;
|
|
51075
|
-
width?: string;
|
|
51076
|
-
onTop?: boolean;
|
|
51077
|
-
showDelay?: number;
|
|
51078
|
-
closeOthers?: boolean;
|
|
51079
|
-
persistent?: boolean;
|
|
51080
|
-
onHover?: boolean;
|
|
51081
|
-
isRelativeToMouse?: boolean;
|
|
51079
|
+
export interface DialogModuleOptions2 {
|
|
51080
|
+
key: string;
|
|
51082
51081
|
[k: string]: unknown;
|
|
51083
51082
|
}
|
|
51084
51083
|
/**
|
|
51085
51084
|
*
|
|
51086
51085
|
*
|
|
51087
|
-
* Options for
|
|
51086
|
+
* Options for an inline dialog target
|
|
51088
51087
|
*
|
|
51089
51088
|
* <h3>Example</h3>
|
|
51090
51089
|
*
|
|
@@ -51094,9 +51093,11 @@ export interface InlineDialogOptions2 {
|
|
|
51094
51093
|
*
|
|
51095
51094
|
* {
|
|
51096
51095
|
* "target": {
|
|
51097
|
-
* "type": "
|
|
51096
|
+
* "type": "inlinedialog",
|
|
51098
51097
|
* "options": {
|
|
51099
|
-
* "
|
|
51098
|
+
* "onHover": true,
|
|
51099
|
+
* "offsetX": "30px",
|
|
51100
|
+
* "offsetY": "20px"
|
|
51100
51101
|
* }
|
|
51101
51102
|
* }
|
|
51102
51103
|
* }
|
|
@@ -51104,8 +51105,16 @@ export interface InlineDialogOptions2 {
|
|
|
51104
51105
|
*
|
|
51105
51106
|
*
|
|
51106
51107
|
*/
|
|
51107
|
-
export interface
|
|
51108
|
-
|
|
51108
|
+
export interface InlineDialogOptions2 {
|
|
51109
|
+
offsetX?: string;
|
|
51110
|
+
offsetY?: string;
|
|
51111
|
+
width?: string;
|
|
51112
|
+
onTop?: boolean;
|
|
51113
|
+
showDelay?: number;
|
|
51114
|
+
closeOthers?: boolean;
|
|
51115
|
+
persistent?: boolean;
|
|
51116
|
+
onHover?: boolean;
|
|
51117
|
+
isRelativeToMouse?: boolean;
|
|
51109
51118
|
[k: string]: unknown;
|
|
51110
51119
|
}
|
|
51111
51120
|
/**
|
|
@@ -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;
|