@sap/ux-specification 1.136.16 → 1.136.17

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.
Files changed (67) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ListReportNew.html +2 -2
  6. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  7. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  8. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  9. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  10. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  11. package/dist/documentation/v4/v4-ListReport.html +2 -2
  12. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  13. package/dist/index-min.js +273 -271
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v4/BuildingBlocksConfig.json +52 -4
  16. package/dist/specification/package.json +6 -6
  17. package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
  18. package/dist/specification/scripts/macros/corrections.js +33 -1
  19. package/dist/specification/scripts/macros/corrections.js.map +1 -1
  20. package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
  21. package/dist/specification/scripts/macros/schema.js +13 -0
  22. package/dist/specification/scripts/macros/schema.js.map +1 -1
  23. package/dist/specification/src/i18n/i18n.d.ts.map +1 -1
  24. package/dist/specification/src/i18n/i18n.js +2 -1
  25. package/dist/specification/src/i18n/i18n.js.map +1 -1
  26. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts +8 -1
  27. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
  28. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +10 -6
  29. package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
  30. package/dist/specification/src/sync/common/decoration/decorators.d.ts +6 -40
  31. package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
  32. package/dist/specification/src/sync/common/decoration/decorators.js +26 -91
  33. package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
  34. package/dist/specification/src/sync/common/rules.d.ts +20 -0
  35. package/dist/specification/src/sync/common/rules.d.ts.map +1 -1
  36. package/dist/specification/src/sync/common/rules.js +22 -2
  37. package/dist/specification/src/sync/common/rules.js.map +1 -1
  38. package/dist/specification/src/sync/v2/generate/analyticalListReport.js +7 -7
  39. package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  40. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  41. package/dist/specification/src/sync/v2/generate/objectPage.js +56 -2
  42. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  43. package/dist/specification/src/sync/v4/application.d.ts +11 -0
  44. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  45. package/dist/specification/src/sync/v4/application.js +18 -3
  46. package/dist/specification/src/sync/v4/application.js.map +1 -1
  47. package/dist/specification/src/sync/v4/export/controls/Table.d.ts +8 -2
  48. package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
  49. package/dist/specification/src/sync/v4/export/controls/Table.js +44 -12
  50. package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
  51. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
  52. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +2 -2
  53. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
  54. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
  55. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +19 -11
  56. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  57. package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts +6 -2
  58. package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -1
  59. package/dist/specification/src/sync/v4/generate/list-report/listReport.js +79 -95
  60. package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -1
  61. package/dist/specification/src/sync/v4/generate/objectPage.js +26 -23
  62. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  63. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +119 -127
  64. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
  65. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +168 -168
  66. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
  67. package/package.json +7 -7
@@ -15,15 +15,15 @@ export declare class BaseConstruct {
15
15
  protected readonly page: Page;
16
16
  protected readonly logger?: ExtensionLogger;
17
17
  /**
18
- * Constructor for BaseConstruct.
18
+ * Creates the base construct with access to the app schema, app/page configuration, and logger.
19
19
  *
20
- * @param settings - General settings including appSchema, app, page, and logger
20
+ * @param settings - Shared context (appSchema, app, page, logger) passed to all decorator classes
21
21
  */
22
22
  constructor(settings?: GeneralSettings);
23
23
  /**
24
- * Gets the general settings.
24
+ * Returns the shared context (appSchema, app, page, logger) for use by subclasses or callers.
25
25
  *
26
- * @returns The general settings object
26
+ * @returns The current settings object
27
27
  */
28
28
  getSettings(): GeneralSettings;
29
29
  }
@@ -34,64 +34,57 @@ export interface Base {
34
34
  export declare class BaseClass extends BaseConstruct {
35
35
  private readonly base;
36
36
  /**
37
- * Creates an instance of BaseClass.
37
+ * Looks up the matching schema definition by class name and stores it as the base.
38
38
  *
39
- * @param settings - General settings including appSchema, app, page, and logger
39
+ * @param settings - Shared context (appSchema, app, page, logger) passed to all decorator classes
40
40
  */
41
41
  constructor(settings?: GeneralSettings);
42
42
  /**
43
- * Gets the class name.
43
+ * Returns the class name used to look up the matching schema definition.
44
44
  *
45
- * @returns The name of the class
45
+ * @returns The constructor name of this class
46
46
  */
47
47
  getClassName(): string;
48
48
  /**
49
- * Gets the base name.
49
+ * Returns the name stored at construction time for the schema definition lookup.
50
50
  *
51
- * @returns The base name
51
+ * @returns The base definition name
52
52
  */
53
53
  getBaseName(): string;
54
54
  /**
55
- * Gets the base definition.
55
+ * Returns the schema definition that decorators are applied to.
56
56
  *
57
- * @returns The base definition
57
+ * @returns The JSON schema definition for this class
58
58
  */
59
59
  getBase(): Definition;
60
60
  /**
61
- * Creates an annotation path for schema based on entity type, term, and qualifier.
61
+ * Builds an annotation path like `/<EntityType>/@<Term>#<Qualifier>` and stores it on the schema definition.
62
62
  *
63
- * @param entityTypeName - Entity type name.
64
- * @param term - Annotation term.
65
- * @param qualifier - Annotation qualifier (optional).
66
- * @returns Annotation path based on received params
63
+ * @param entityTypeName - The OData entity type name (e.g. "SalesOrderItem")
64
+ * @param term - The annotation term (e.g. "com.sap.vocabularies.UI.v1.LineItem")
65
+ * @param qualifier - Optional qualifier to disambiguate multiple annotations of the same term
66
+ * @returns The built annotation path, or undefined if entityTypeName is empty
67
67
  */
68
68
  createAnnotationPath(entityTypeName: string, term: string, qualifier?: string): string | undefined;
69
69
  }
70
70
  export declare class Decorator extends BaseClass {
71
71
  /**
72
- * Context for decorator condition evaluation.
73
- * Contains 'config' (auto-injected from page.config) and any custom context sources.
74
- * Defined as non-enumerable to hide from serialization.
72
+ * Evaluation context built from app config, page config, and optional custom values.
73
+ * Non-enumerable to stay hidden from serialization.
75
74
  */
76
75
  private decoratorContext;
77
76
  /**
78
- * Creates an instance of Decorator.
77
+ * Sets up the decorator context as non-enumerable so it stays hidden from serialization.
79
78
  *
80
- * @param settings - General settings including appSchema, app, page, and logger
79
+ * @param settings - Shared context (appSchema, app, page, logger) passed to all decorator classes
81
80
  */
82
81
  constructor(settings?: GeneralSettings);
83
82
  /**
84
- * Initializes the decorator by applying all decorators to the schema definition.
83
+ * Builds the decorator context from app, page, and custom values, then applies all
84
+ * decorators (enums, message, hide, readonly) to the schema definition.
85
85
  *
86
- * The decorator context is structured as:
87
- * - `app`: The App configuration (from `this.app.config`, includes manifest)
88
- * - `page`: The Page configuration (from `this.page.config`)
89
- * - `custom`: Custom context provided by the caller.
90
- *
91
- * @param customContext - Optional custom context for decorator conditions.
92
- * Use this for runtime-specific conditions like table state, section state, etc.
93
- * @param definition - Optional custom definition to apply decorators to.
94
- * If provided, decorators are applied to this definition instead of the one from appSchema.
86
+ * @param customContext - Specific values (e.g. table state, section state) used for condition evaluation
87
+ * @param definition - Override the schema definition to decorate (defaults to getBase())
95
88
  * @example
96
89
  * ```typescript
97
90
  * // Basic initialization (app and page auto-injected)
@@ -108,12 +101,12 @@ export declare class Decorator extends BaseClass {
108
101
  */
109
102
  init(customContext?: Record<string, unknown>, definition?: Definition): void;
110
103
  /**
111
- * Gets property value from the decorator context using a property path.
112
- *
113
- * The path must include an explicit source prefix ('app', 'page', or 'custom').
104
+ * Resolves a dotted property path (e.g. `page.isALP`, `custom.items[0].name`) against
105
+ * the decorator context using JSONPath. The path must start with a known source prefix
106
+ * (`app`, `page`, or `custom`).
114
107
  *
115
- * @param propertyPath - The property path with explicit source prefix - supports full jsonpath syntax
116
- * @returns Object containing the final key and its value, or undefined if not found
108
+ * @param propertyPath - Dotted path with source prefix, supports full JSONPath syntax
109
+ * @returns The resolved `{ key, value }` pair, or undefined if the path does not resolve
117
110
  * @example
118
111
  * ```typescript
119
112
  * // With decoratorContext = {
@@ -131,170 +124,169 @@ export declare class Decorator extends BaseClass {
131
124
  */
132
125
  private getPropertyKeyValue;
133
126
  /**
134
- * Evaluates a single dependency condition.
135
- *
136
- * @param condition - The single condition to evaluate
137
- * @param condition.path - The property path to check
138
- * @param condition.dependsOn - Optional custom condition function
139
- * @param condition.expectedValue - Optional expected value for equality check
140
- * @param condition.negate - Optional flag to invert the condition result
141
- * @returns Object containing whether condition passed and the dependency value
127
+ * Evaluates one condition: resolves the path, applies the check (custom function,
128
+ * equality, or truthy), and optionally negates the result (for `not()` conditions).
129
+ *
130
+ * @param condition - A single condition with path, expected value, and optional negate flag
131
+ * @returns Whether the condition passed along with the resolved value and key
142
132
  */
143
133
  private evaluateSingleCondition;
144
134
  /**
145
- * Helper method to add a message to the schema property based on value condition.
146
- *
147
- * @param condition - DecoratorMetadata or EnumValueCondition object containing condition details
148
- * @param syncRuleProviderInstance - The instance of the sync rule provider
149
- * @param definition - The schema property definition
150
- * @param i18nProperties - i18n properties for message translation
151
- * @param i18nProperties.propertyName - The property name for the message
152
- * @param i18nProperties.context - The context for the message
135
+ * Translates and attaches a message to a schema property.
136
+ * Supports both the new `MessageConfig` format (from `msg()` helper) and the legacy `DependsOnMessage` format.
137
+ *
138
+ * @param condition - The decorator metadata or enum value condition containing the message definition
139
+ * @param decoratedClass - The decorated class instance, used for legacy function-based message text
140
+ * @param definition - The schema property definition to attach the message to
141
+ * @param i18nProperties - Context for i18n translation (propertyName, evaluation context)
142
+ * @param i18nProperties.propertyName - The property name used as i18n parameter
143
+ * @param i18nProperties.context - The evaluation context string used as i18n parameter
153
144
  */
154
145
  private addConditionalMessage;
155
146
  /**
156
- * Resolves PathNode values in message params to their actual values from the decorator context.
147
+ * Resolves any `PathNode` values in message params to their actual values from the decorator context.
157
148
  *
158
- * @param params - The message params potentially containing PathNode values
159
- * @returns The params with PathNode values resolved to actual values
149
+ * @param params - Message parameters that may contain PathNode references
150
+ * @returns A new params object with PathNode values replaced by their resolved context values
160
151
  */
161
152
  private resolveMessageParams;
162
153
  /**
163
- * Gets the context message from evaluation results.
154
+ * Builds a human-readable context string from the evaluation results that did not pass.
155
+ * Used for diagnostic messages showing which conditions were unmet.
164
156
  *
165
- * @param results - The evaluation results
166
- * @returns The context message string
157
+ * @param results - The condition evaluation results to summarize
158
+ * @returns A comma-separated string of `key: value` pairs for failed conditions
167
159
  */
168
160
  private getContextForMessage;
169
161
  /**
170
- * Evaluates an AND condition item which can be either a single condition or a nested OR group.
162
+ * Evaluates one item inside an AND group either a single condition or a nested OR group.
171
163
  *
172
- * @param conditionItem - The condition item to evaluate
173
- * @returns Object containing whether condition passed and evaluation details
164
+ * @param conditionItem - A single condition or a nested `{ __orConditions }` group
165
+ * @returns Whether the item passed and the detailed evaluation results
174
166
  */
175
167
  private evaluateAndConditionItem;
176
168
  /**
177
- * Evaluates OR conditions (at least one condition must match).
178
- * Supports both single conditions and nested AND groups.
169
+ * Evaluates OR conditions — passes when at least one item (single condition or nested AND group) matches.
170
+ * Short-circuits on the first passing item.
179
171
  *
180
- * @param orConditions - Array of condition items (single conditions or AND groups)
181
- * @returns Object containing whether any condition passed and evaluation details
172
+ * @param orConditions - Array of conditions or nested AND groups to evaluate
173
+ * @returns Whether any condition passed and the collected evaluation results
182
174
  */
183
175
  private evaluateOrConditions;
184
176
  /**
185
- * Evaluates AND conditions (all conditions must match).
186
- * Supports both single conditions and nested OR groups.
177
+ * Evaluates AND conditions — passes only when every item (single condition or nested OR group) matches.
178
+ * Continues even after a failure to collect all results for diagnostic context.
187
179
  *
188
- * @param andConditions - Array of condition items (single conditions or OR groups)
189
- * @returns Object containing whether all conditions passed and evaluation details
180
+ * @param andConditions - Array of conditions or nested OR groups that must all pass
181
+ * @returns Whether all conditions passed and the collected evaluation results
190
182
  */
191
183
  private evaluateAndConditions;
192
184
  /**
193
- * Evaluates condition metadata and returns whether the condition is met and the context.
185
+ * Entry point for condition evaluation. Dispatches to OR, AND, or single evaluation
186
+ * depending on the shape of the condition metadata.
194
187
  *
195
- * @param conditionInfo - The condition metadata
196
- * @returns Object with passed (boolean) and context (string)
188
+ * @param conditionInfo - The decorator condition metadata (single, AND, or OR)
189
+ * @returns Whether the condition passed and a diagnostic context string
197
190
  */
198
191
  private evaluateCondition;
199
192
  /**
200
- * Iterates over schema properties and yields property info for decorator processing.
201
- * Centralizes the guard clause and property iteration logic.
193
+ * Yields each property from a schema definition for decorator processing.
194
+ * Returns early if the definition has no properties or the target is falsy.
202
195
  *
203
- * @param schemaDefinition - The schema definition to process
204
- * @param target - The target object (used for guard clause validation)
205
- * @yields Property name and definition for each property in the schema
196
+ * @param schemaDefinition - The schema definition whose properties to iterate
197
+ * @param target - Guard object iteration is skipped if falsy
198
+ * @yields Property name and its definition for each property in the schema
206
199
  */
207
200
  private iterateProperties;
208
201
  /**
209
- * Applies the hide decorator to the schema definition.
210
- * Hides properties when their condition evaluates to true, but only if
211
- * the message decorator did not add any messages to the property.
202
+ * Hides properties whose `@hide` conditions pass.
203
+ * Multiple `@hide` decorators use OR semantics any passing condition hides the property.
204
+ * Skipped when the `@message` decorator already added messages to the property.
212
205
  *
213
- * @param schemaDefinition - The schema definition to apply the decorator to
214
- * @param syncRuleProviderInstance - The sync rule provider instance
206
+ * @param schemaDefinition - The schema definition to process
207
+ * @param decoratedClass - The decorated class instance carrying `@hide` metadata
215
208
  */
216
209
  private applyHideDecorator;
217
210
  /**
218
- * Applies the message decorator to the schema definition.
219
- * Shows messages when their condition evaluates to true.
211
+ * Shows messages on properties whose `@message` conditions pass.
212
+ * Must run before `applyHideDecorator` so hide can detect existing messages.
220
213
  *
221
- * @param schemaDefinition - The schema definition to apply the decorator to
222
- * @param syncRuleProviderInstance - The sync rule provider instance
214
+ * @param schemaDefinition - The schema definition to process
215
+ * @param decoratedClass - The decorated class instance carrying `@message` metadata
223
216
  */
224
217
  private applyMessageDecorator;
225
218
  /**
226
- * Applies the readonly decorator to the schema definition.
227
- * Marks properties as readonly when their condition evaluates to true.
219
+ * Marks properties as read-only whose `@readonly` conditions pass.
220
+ * Multiple `@readonly` decorators use OR semantics — any passing condition makes the property read-only.
228
221
  *
229
- * @param schemaDefinition - The schema definition to apply the decorator to
230
- * @param syncRuleProviderInstance - The sync rule provider instance
222
+ * @param schemaDefinition - The schema definition to process
223
+ * @param decoratedClass - The decorated class instance carrying `@readonly` metadata
231
224
  */
232
225
  private applyReadonlyDecorator;
233
226
  /**
234
- * Applies the enums decorator to the schema definition.
235
- * Restricts enum values when their condition evaluates to true.
236
- * If multiple @enums decorators exist on the same property, the first matching condition wins.
227
+ * Restricts enum values on properties whose `@enums` conditions pass.
228
+ * When multiple `@enums` decorators exist on the same property, the first matching condition wins.
237
229
  *
238
- * @param schemaDefinition - The schema definition to apply the decorator to
239
- * @param syncRuleProviderInstance - The sync rule provider instance
230
+ * @param schemaDefinition - The schema definition to process
231
+ * @param decoratedClass - The decorated class instance carrying `@enums` metadata
240
232
  */
241
233
  private applyEnumsDecorator;
242
234
  /**
243
- * Gets the validity metadata for a property.
235
+ * Reads the `@validity` metadata stored on a property of the decorated class.
244
236
  *
245
- * @param target - The target object
246
- * @param propertyName - The property name
247
- * @returns The validity metadata or undefined
237
+ * @param target - The decorated class instance
238
+ * @param propertyName - The property to read validity metadata from
239
+ * @returns The validity constraints (since, enum restrictions), or undefined if none
248
240
  */
249
241
  private getValidityMetadata;
250
242
  /**
251
- * Resolves an enum array from a property definition.
252
- * Handles both inline enums and $ref to enum definitions.
243
+ * Returns the enum values from a property definition, resolving `$ref` to a shared enum definition if needed.
253
244
  *
254
- * @param property - The property definition
255
- * @returns The enum array or undefined if not found
245
+ * @param property - The schema property definition (may have inline `enum` or a `$ref`)
246
+ * @returns The enum values array, or undefined if the property is not an enum
256
247
  */
257
248
  private resolveEnumFromProperty;
258
249
  /**
259
- * Applies filtered enum values to a property.
260
- * For $ref properties, inlines the filtered enum, copies the type from the referenced definition, and removes the $ref.
261
- * For inline enum properties, updates the enum directly.
250
+ * Writes filtered enum values to a property definition.
251
+ * For `$ref` properties, inlines the enum, copies the type, and removes the `$ref`.
262
252
  *
263
- * @param property - The property definition to update
264
- * @param filteredEnum - The filtered enum values
253
+ * @param property - The schema property definition to update
254
+ * @param filteredEnum - The allowed enum values after filtering
265
255
  */
266
256
  private applyFilteredEnumToProperty;
267
257
  /**
268
- * Applies the validity decorator to the schema definition based on the sync rule provider instance and minimum UI5 version.
258
+ * Hides properties and filters enum values that require a UI5 version higher than the app's minimum.
269
259
  *
270
- * @param schemaDefinition The schema definition to apply the validity decorator to
271
- * @param syncRuleProviderInstance The instance of the sync rule provider
272
- * @param minUI5Version The minimum UI5 version to consider for validity checks
260
+ * @param schemaDefinition - The schema definition to process
261
+ * @param decoratedClass - The decorated class instance carrying `@validity` metadata
262
+ * @param minUI5Version - The app's minimum UI5 version to check against
273
263
  */
274
264
  private applyValidityDecorator;
275
265
  /**
276
- * Applies the isViewNode decorator to the schema definition based on the target and property name.
266
+ * Marks the schema definition as a view node if the `@isViewNode` decorator is present on the target.
277
267
  *
278
- * @param schemaDefinition The schema definition to apply the isViewNode decorator to
279
- * @param target The target object or function
280
- * @param propertyName The property name (optional)
268
+ * @param schemaDefinition - The schema definition to tag
269
+ * @param target - The class constructor or prototype carrying the decorator
270
+ * @param propertyName - Optional property name for property-level decorators
281
271
  */
282
272
  private applyIsViewNodeDecorator;
283
273
  /**
284
- * Applies the description decorator to the schema definition.
274
+ * Sets the schema `description` field from the `@description` decorator if present on the target.
285
275
  *
286
- * @param schemaDefinition - The schema definition to apply the decorator to
287
- * @param target - The target object or function
288
- * @param propertyName - The property name (optional)
276
+ * @param schemaDefinition - The schema definition to update
277
+ * @param target - The class constructor or prototype carrying the decorator
278
+ * @param propertyName - Optional property name for property-level decorators
289
279
  */
290
280
  private applyDescriptionDecorator;
291
281
  /**
292
- * Applies all decorators to the schema definition.
293
- *
294
- * @param minUi5Version - The minimum UI5 version (optional)
295
- * @param propertyName - The property name (optional)
296
- * @param customDefinition - Optional custom definition to apply decorators to (overrides getBase())
297
- * @returns Object containing the definition
282
+ * Applies all decorators to the schema in the correct order:
283
+ * description → isViewNode → validity → enums → message → hide → readonly.
284
+ * Message runs before hide so that hide can skip properties that already have messages.
285
+ *
286
+ * @param minUi5Version - The app's minimum UI5 version for validity checks
287
+ * @param propertyName - Optional property name when decorating a single property
288
+ * @param customDefinition - Override the schema definition (defaults to `getBase()`)
289
+ * @returns The decorated schema definition
298
290
  */
299
291
  applyDecorators(minUi5Version?: string, propertyName?: string, customDefinition?: Definition): {
300
292
  definition: Definition;
@@ -1 +1 @@
1
- {"version":3,"file":"DecoratorClass.d.ts","sourceRoot":"","sources":["../../../../../../src/sync/v4/sync-rules/DecoratorClass.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"DecoratorClass.d.ts","sourceRoot":"","sources":["../../../../../../src/sync/v4/sync-rules/DecoratorClass.ts"],"names":[],"mappings":"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"}