@forge/manifest 4.5.2 → 4.5.3-next.1
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 +12 -0
- package/out/schema/manifest-schema.json +32 -16
- package/out/schema/manifest.d.ts +17 -11
- package/out/scopes/shipyard-scopes.json +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -172,6 +172,11 @@
|
|
|
172
172
|
"title": "function",
|
|
173
173
|
"type": "string"
|
|
174
174
|
},
|
|
175
|
+
"filter": {
|
|
176
|
+
"$ref": "#/definitions/ProductEventsFilter",
|
|
177
|
+
"title": "filter",
|
|
178
|
+
"type": "object"
|
|
179
|
+
},
|
|
175
180
|
"key": {
|
|
176
181
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
177
182
|
}
|
|
@@ -763,7 +768,8 @@
|
|
|
763
768
|
"small",
|
|
764
769
|
"medium",
|
|
765
770
|
"large",
|
|
766
|
-
"xlarge"
|
|
771
|
+
"xlarge",
|
|
772
|
+
"max"
|
|
767
773
|
]
|
|
768
774
|
},
|
|
769
775
|
"displayConditions": {
|
|
@@ -1106,7 +1112,8 @@
|
|
|
1106
1112
|
"small",
|
|
1107
1113
|
"medium",
|
|
1108
1114
|
"large",
|
|
1109
|
-
"xlarge"
|
|
1115
|
+
"xlarge",
|
|
1116
|
+
"max"
|
|
1110
1117
|
]
|
|
1111
1118
|
},
|
|
1112
1119
|
"displayConditions": {
|
|
@@ -3119,7 +3126,8 @@
|
|
|
3119
3126
|
"small",
|
|
3120
3127
|
"medium",
|
|
3121
3128
|
"large",
|
|
3122
|
-
"xlarge"
|
|
3129
|
+
"xlarge",
|
|
3130
|
+
"max"
|
|
3123
3131
|
]
|
|
3124
3132
|
},
|
|
3125
3133
|
"displayConditions": {
|
|
@@ -3515,7 +3523,8 @@
|
|
|
3515
3523
|
"small",
|
|
3516
3524
|
"medium",
|
|
3517
3525
|
"large",
|
|
3518
|
-
"xlarge"
|
|
3526
|
+
"xlarge",
|
|
3527
|
+
"max"
|
|
3519
3528
|
]
|
|
3520
3529
|
},
|
|
3521
3530
|
"displayConditions": {
|
|
@@ -3619,7 +3628,8 @@
|
|
|
3619
3628
|
"small",
|
|
3620
3629
|
"medium",
|
|
3621
3630
|
"large",
|
|
3622
|
-
"xlarge"
|
|
3631
|
+
"xlarge",
|
|
3632
|
+
"max"
|
|
3623
3633
|
]
|
|
3624
3634
|
},
|
|
3625
3635
|
"displayConditions": {
|
|
@@ -12831,6 +12841,21 @@
|
|
|
12831
12841
|
"type": "string"
|
|
12832
12842
|
}
|
|
12833
12843
|
},
|
|
12844
|
+
"ProductEventsFilter": {
|
|
12845
|
+
"additionalProperties": false,
|
|
12846
|
+
"title": "ProductEventsFilter",
|
|
12847
|
+
"type": "object",
|
|
12848
|
+
"properties": {
|
|
12849
|
+
"ignoreSelf": {
|
|
12850
|
+
"title": "ignoreSelf",
|
|
12851
|
+
"description": "The app will ignore events generated by itself",
|
|
12852
|
+
"type": "boolean"
|
|
12853
|
+
}
|
|
12854
|
+
},
|
|
12855
|
+
"required": [
|
|
12856
|
+
"ignoreSelf"
|
|
12857
|
+
]
|
|
12858
|
+
},
|
|
12834
12859
|
"FilteredProductEvents": {
|
|
12835
12860
|
"title": "FilteredProductEvents",
|
|
12836
12861
|
"type": "array",
|
|
@@ -12842,18 +12867,9 @@
|
|
|
12842
12867
|
"type": "string"
|
|
12843
12868
|
},
|
|
12844
12869
|
"filter": {
|
|
12870
|
+
"$ref": "#/definitions/ProductEventsFilter",
|
|
12845
12871
|
"title": "filter",
|
|
12846
|
-
"type": "object"
|
|
12847
|
-
"properties": {
|
|
12848
|
-
"ignoreSelf": {
|
|
12849
|
-
"title": "ignoreSelf",
|
|
12850
|
-
"description": "The app will ignore events generated by itself",
|
|
12851
|
-
"type": "boolean"
|
|
12852
|
-
}
|
|
12853
|
-
},
|
|
12854
|
-
"required": [
|
|
12855
|
-
"ignoreSelf"
|
|
12856
|
-
]
|
|
12872
|
+
"type": "object"
|
|
12857
12873
|
}
|
|
12858
12874
|
},
|
|
12859
12875
|
"required": [
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -274,11 +274,13 @@ export interface Modules {
|
|
|
274
274
|
{
|
|
275
275
|
events: Events;
|
|
276
276
|
function: Function;
|
|
277
|
+
filter?: Filter1;
|
|
277
278
|
key: ModuleKeySchema;
|
|
278
279
|
},
|
|
279
280
|
...{
|
|
280
281
|
events: Events;
|
|
281
282
|
function: Function;
|
|
283
|
+
filter?: Filter1;
|
|
282
284
|
key: ModuleKeySchema;
|
|
283
285
|
}[]
|
|
284
286
|
];
|
|
@@ -543,7 +545,7 @@ export interface Modules {
|
|
|
543
545
|
};
|
|
544
546
|
resource: string;
|
|
545
547
|
resourceUploadId?: string;
|
|
546
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
548
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
547
549
|
displayConditions?: {
|
|
548
550
|
[k: string]: unknown;
|
|
549
551
|
};
|
|
@@ -583,7 +585,7 @@ export interface Modules {
|
|
|
583
585
|
};
|
|
584
586
|
resource: string;
|
|
585
587
|
resourceUploadId?: string;
|
|
586
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
588
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
587
589
|
displayConditions?: {
|
|
588
590
|
[k: string]: unknown;
|
|
589
591
|
};
|
|
@@ -727,7 +729,7 @@ export interface Modules {
|
|
|
727
729
|
};
|
|
728
730
|
resource: string;
|
|
729
731
|
resourceUploadId?: string;
|
|
730
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
732
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
731
733
|
displayConditions?: {
|
|
732
734
|
[k: string]: unknown;
|
|
733
735
|
};
|
|
@@ -767,7 +769,7 @@ export interface Modules {
|
|
|
767
769
|
};
|
|
768
770
|
resource: string;
|
|
769
771
|
resourceUploadId?: string;
|
|
770
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
772
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
771
773
|
displayConditions?: {
|
|
772
774
|
[k: string]: unknown;
|
|
773
775
|
};
|
|
@@ -1798,7 +1800,7 @@ export interface Modules {
|
|
|
1798
1800
|
};
|
|
1799
1801
|
resource: string;
|
|
1800
1802
|
resourceUploadId?: string;
|
|
1801
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
1803
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
1802
1804
|
displayConditions?: {
|
|
1803
1805
|
[k: string]: unknown;
|
|
1804
1806
|
};
|
|
@@ -1824,7 +1826,7 @@ export interface Modules {
|
|
|
1824
1826
|
};
|
|
1825
1827
|
resource: string;
|
|
1826
1828
|
resourceUploadId?: string;
|
|
1827
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
1829
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
1828
1830
|
displayConditions?: {
|
|
1829
1831
|
[k: string]: unknown;
|
|
1830
1832
|
};
|
|
@@ -1984,7 +1986,7 @@ export interface Modules {
|
|
|
1984
1986
|
};
|
|
1985
1987
|
resource: string;
|
|
1986
1988
|
resourceUploadId?: string;
|
|
1987
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
1989
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
1988
1990
|
displayConditions?: {
|
|
1989
1991
|
[k: string]: unknown;
|
|
1990
1992
|
};
|
|
@@ -2022,7 +2024,7 @@ export interface Modules {
|
|
|
2022
2024
|
};
|
|
2023
2025
|
resource: string;
|
|
2024
2026
|
resourceUploadId?: string;
|
|
2025
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
2027
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
2026
2028
|
displayConditions?: {
|
|
2027
2029
|
[k: string]: unknown;
|
|
2028
2030
|
};
|
|
@@ -2050,7 +2052,7 @@ export interface Modules {
|
|
|
2050
2052
|
};
|
|
2051
2053
|
resource: string;
|
|
2052
2054
|
resourceUploadId?: string;
|
|
2053
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
2055
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
2054
2056
|
displayConditions?: {
|
|
2055
2057
|
[k: string]: unknown;
|
|
2056
2058
|
};
|
|
@@ -2076,7 +2078,7 @@ export interface Modules {
|
|
|
2076
2078
|
};
|
|
2077
2079
|
resource: string;
|
|
2078
2080
|
resourceUploadId?: string;
|
|
2079
|
-
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge';
|
|
2081
|
+
viewportSize?: 'small' | 'medium' | 'large' | 'xlarge' | 'max';
|
|
2080
2082
|
displayConditions?: {
|
|
2081
2083
|
[k: string]: unknown;
|
|
2082
2084
|
};
|
|
@@ -5437,7 +5439,11 @@ export interface Modules {
|
|
|
5437
5439
|
[k: string]: unknown;
|
|
5438
5440
|
}
|
|
5439
5441
|
export interface Filter {
|
|
5440
|
-
ignoreSelf
|
|
5442
|
+
ignoreSelf?: IgnoreSelf;
|
|
5443
|
+
[k: string]: unknown;
|
|
5444
|
+
}
|
|
5445
|
+
export interface Filter1 {
|
|
5446
|
+
ignoreSelf?: IgnoreSelf;
|
|
5441
5447
|
[k: string]: unknown;
|
|
5442
5448
|
}
|
|
5443
5449
|
/**
|