Skip to content

Commit 7d0c64f

Browse files
committed
Regenerate type definitions
1 parent 2530726 commit 7d0c64f

23 files changed

Lines changed: 535 additions & 501 deletions

lib/cjs/generated/browserProfiling.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
/**
55
* Schema of Browser SDK Profiling types.
66
*/
7-
export declare type BrowserProfiling = BrowserProfileEvent | BrowserProfilerTrace;
7+
export type BrowserProfiling = BrowserProfileEvent | BrowserProfilerTrace;
88
/**
99
* Schema of the Browser SDK Profile Event payload.
1010
*/
11-
export declare type BrowserProfileEvent = ProfileCommonProperties & {
11+
export type BrowserProfileEvent = ProfileCommonProperties & {
1212
/**
1313
* Profile data format.
1414
*/

lib/cjs/generated/browserSessionReplay.d.ts

Lines changed: 70 additions & 70 deletions
Large diffs are not rendered by default.

lib/cjs/generated/mobileProfiling.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Schema of the Mobile SDK Profile Event metadata.
66
*/
7-
export declare type MobileProfileEvent = ProfileCommonProperties & {
7+
export type MobileProfileEvent = ProfileCommonProperties & {
88
/**
99
* The RUM Vital this profile event is associated with.
1010
*/

lib/cjs/generated/mobileSessionReplay.d.ts

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Mobile-specific. Schema of a Session Replay data Segment.
66
*/
7-
export declare type MobileSegment = MobileSegmentMetadata & {
7+
export type MobileSegment = MobileSegmentMetadata & {
88
/**
99
* The records contained by this Segment.
1010
*/
@@ -13,7 +13,7 @@ export declare type MobileSegment = MobileSegmentMetadata & {
1313
/**
1414
* Mobile-specific. Schema of a Session Replay Segment metadata.
1515
*/
16-
export declare type MobileSegmentMetadata = SegmentContext & CommonSegmentMetadataSchema & {
16+
export type MobileSegmentMetadata = SegmentContext & CommonSegmentMetadataSchema & {
1717
/**
1818
* The source of this record
1919
*/
@@ -22,11 +22,11 @@ export declare type MobileSegmentMetadata = SegmentContext & CommonSegmentMetada
2222
/**
2323
* Mobile-specific. Schema of a Session Replay Record.
2424
*/
25-
export declare type MobileRecord = MobileFullSnapshotRecord | MobileIncrementalSnapshotRecord | MetaRecord | FocusRecord | ViewEndRecord | VisualViewportRecord;
25+
export type MobileRecord = MobileFullSnapshotRecord | MobileIncrementalSnapshotRecord | MetaRecord | FocusRecord | ViewEndRecord | VisualViewportRecord;
2626
/**
2727
* Mobile-specific. Schema of a Record type which contains the full snapshot of a screen.
2828
*/
29-
export declare type MobileFullSnapshotRecord = CommonRecordSchema & {
29+
export type MobileFullSnapshotRecord = CommonRecordSchema & {
3030
/**
3131
* The type of this Record.
3232
*/
@@ -41,11 +41,11 @@ export declare type MobileFullSnapshotRecord = CommonRecordSchema & {
4141
/**
4242
* Schema of a Wireframe type.
4343
*/
44-
export declare type Wireframe = ShapeWireframe | TextWireframe | ImageWireframe | PlaceholderWireframe | WebviewWireframe;
44+
export type Wireframe = ShapeWireframe | TextWireframe | ImageWireframe | PlaceholderWireframe | WebviewWireframe;
4545
/**
4646
* Schema of all properties of a ShapeWireframe.
4747
*/
48-
export declare type ShapeWireframe = CommonShapeWireframe & {
48+
export type ShapeWireframe = CommonShapeWireframe & {
4949
/**
5050
* The type of the wireframe.
5151
*/
@@ -58,14 +58,14 @@ export declare type ShapeWireframe = CommonShapeWireframe & {
5858
/**
5959
* Schema of common properties for ShapeWireframe events type and all its sub - types.
6060
*/
61-
export declare type CommonShapeWireframe = CommonWireframe & {
61+
export type CommonShapeWireframe = CommonWireframe & {
6262
shapeStyle?: ShapeStyle;
6363
border?: ShapeBorder;
6464
};
6565
/**
6666
* The style of this wireframe.
6767
*/
68-
export declare type ShapeStyle = {
68+
export type ShapeStyle = {
6969
/**
7070
* The background color for this wireframe as a String hexadecimal. Follows the #RRGGBBAA color format with the alpha value as optional. The default value is #FFFFFF00.
7171
*/
@@ -82,7 +82,7 @@ export declare type ShapeStyle = {
8282
/**
8383
* The border properties of this wireframe. The default value is null (no-border).
8484
*/
85-
export declare type ShapeBorder = {
85+
export type ShapeBorder = {
8686
/**
8787
* The border color as a String hexadecimal. Follows the #RRGGBBAA color format with the alpha value as optional.
8888
*/
@@ -95,7 +95,7 @@ export declare type ShapeBorder = {
9595
/**
9696
* Schema of all properties of a TextWireframe.
9797
*/
98-
export declare type TextWireframe = CommonShapeWireframe & {
98+
export type TextWireframe = CommonShapeWireframe & {
9999
/**
100100
* The type of the wireframe.
101101
*/
@@ -114,7 +114,7 @@ export declare type TextWireframe = CommonShapeWireframe & {
114114
/**
115115
* Schema of all properties of a TextStyle.
116116
*/
117-
export declare type TextStyle = {
117+
export type TextStyle = {
118118
/**
119119
* The preferred font family collection, ordered by preference and formatted as a String list: e.g. Century Gothic, Verdana, sans-serif
120120
*/
@@ -135,7 +135,7 @@ export declare type TextStyle = {
135135
/**
136136
* Schema of all properties of a TextPosition.
137137
*/
138-
export declare type TextPosition = {
138+
export type TextPosition = {
139139
readonly padding?: {
140140
/**
141141
* The top padding in pixels. The default value is 0.
@@ -168,7 +168,7 @@ export declare type TextPosition = {
168168
/**
169169
* Schema of all properties of a ImageWireframe.
170170
*/
171-
export declare type ImageWireframe = CommonShapeWireframe & {
171+
export type ImageWireframe = CommonShapeWireframe & {
172172
/**
173173
* The type of the wireframe.
174174
*/
@@ -197,7 +197,7 @@ export declare type ImageWireframe = CommonShapeWireframe & {
197197
/**
198198
* Schema of all properties of a PlaceholderWireframe.
199199
*/
200-
export declare type PlaceholderWireframe = CommonWireframe & {
200+
export type PlaceholderWireframe = CommonWireframe & {
201201
/**
202202
* The type of the wireframe.
203203
*/
@@ -214,7 +214,7 @@ export declare type PlaceholderWireframe = CommonWireframe & {
214214
/**
215215
* Schema of all properties of a WebviewWireframe.
216216
*/
217-
export declare type WebviewWireframe = CommonShapeWireframe & {
217+
export type WebviewWireframe = CommonShapeWireframe & {
218218
/**
219219
* The type of the wireframe.
220220
*/
@@ -235,7 +235,7 @@ export declare type WebviewWireframe = CommonShapeWireframe & {
235235
/**
236236
* Mobile-specific. Schema of a Record type which contains mutations of a screen.
237237
*/
238-
export declare type MobileIncrementalSnapshotRecord = CommonRecordSchema & {
238+
export type MobileIncrementalSnapshotRecord = CommonRecordSchema & {
239239
/**
240240
* The type of this Record.
241241
*/
@@ -245,11 +245,11 @@ export declare type MobileIncrementalSnapshotRecord = CommonRecordSchema & {
245245
/**
246246
* Mobile-specific. Schema of a Session Replay IncrementalData type.
247247
*/
248-
export declare type MobileIncrementalData = MobileMutationData | TouchData | ViewportResizeData | PointerInteractionData;
248+
export type MobileIncrementalData = MobileMutationData | TouchData | ViewportResizeData | PointerInteractionData;
249249
/**
250250
* Mobile-specific. Schema of a MutationData.
251251
*/
252-
export declare type MobileMutationData = {
252+
export type MobileMutationData = {
253253
/**
254254
* The source of this type of incremental data.
255255
*/
@@ -258,11 +258,11 @@ export declare type MobileMutationData = {
258258
/**
259259
* Schema of a WireframeUpdateMutation type.
260260
*/
261-
export declare type WireframeUpdateMutation = TextWireframeUpdate | ShapeWireframeUpdate | ImageWireframeUpdate | PlaceholderWireframeUpdate | WebviewWireframeUpdate;
261+
export type WireframeUpdateMutation = TextWireframeUpdate | ShapeWireframeUpdate | ImageWireframeUpdate | PlaceholderWireframeUpdate | WebviewWireframeUpdate;
262262
/**
263263
* Schema of all properties of a TextWireframeUpdate.
264264
*/
265-
export declare type TextWireframeUpdate = CommonShapeWireframeUpdate & {
265+
export type TextWireframeUpdate = CommonShapeWireframeUpdate & {
266266
/**
267267
* The type of the wireframe.
268268
*/
@@ -277,14 +277,14 @@ export declare type TextWireframeUpdate = CommonShapeWireframeUpdate & {
277277
/**
278278
* Schema of common properties for ShapeWireframeUpdate events type and all its sub - types.
279279
*/
280-
export declare type CommonShapeWireframeUpdate = CommonWireframeUpdate & {
280+
export type CommonShapeWireframeUpdate = CommonWireframeUpdate & {
281281
shapeStyle?: ShapeStyle;
282282
border?: ShapeBorder;
283283
};
284284
/**
285285
* Schema of a ShapeWireframeUpdate.
286286
*/
287-
export declare type ShapeWireframeUpdate = CommonShapeWireframeUpdate & {
287+
export type ShapeWireframeUpdate = CommonShapeWireframeUpdate & {
288288
/**
289289
* The type of the wireframe.
290290
*/
@@ -293,7 +293,7 @@ export declare type ShapeWireframeUpdate = CommonShapeWireframeUpdate & {
293293
/**
294294
* Schema of all properties of a ImageWireframeUpdate.
295295
*/
296-
export declare type ImageWireframeUpdate = CommonShapeWireframeUpdate & {
296+
export type ImageWireframeUpdate = CommonShapeWireframeUpdate & {
297297
/**
298298
* The type of the wireframe.
299299
*/
@@ -318,7 +318,7 @@ export declare type ImageWireframeUpdate = CommonShapeWireframeUpdate & {
318318
/**
319319
* Schema of all properties of a PlaceholderWireframe.
320320
*/
321-
export declare type PlaceholderWireframeUpdate = CommonWireframeUpdate & {
321+
export type PlaceholderWireframeUpdate = CommonWireframeUpdate & {
322322
/**
323323
* The type of the wireframe.
324324
*/
@@ -331,7 +331,7 @@ export declare type PlaceholderWireframeUpdate = CommonWireframeUpdate & {
331331
/**
332332
* Schema of all properties of a WebviewWireframeUpdate.
333333
*/
334-
export declare type WebviewWireframeUpdate = CommonShapeWireframeUpdate & {
334+
export type WebviewWireframeUpdate = CommonShapeWireframeUpdate & {
335335
/**
336336
* The type of the wireframe.
337337
*/
@@ -348,7 +348,7 @@ export declare type WebviewWireframeUpdate = CommonShapeWireframeUpdate & {
348348
/**
349349
* Schema of a TouchData.
350350
*/
351-
export declare type TouchData = {
351+
export type TouchData = {
352352
/**
353353
* The source of this type of incremental data.
354354
*/
@@ -378,7 +378,7 @@ export declare type TouchData = {
378378
/**
379379
* Schema of a ViewportResizeData.
380380
*/
381-
export declare type ViewportResizeData = {
381+
export type ViewportResizeData = {
382382
/**
383383
* The source of this type of incremental data.
384384
*/
@@ -387,7 +387,7 @@ export declare type ViewportResizeData = {
387387
/**
388388
* Schema of a PointerInteractionData.
389389
*/
390-
export declare type PointerInteractionData = {
390+
export type PointerInteractionData = {
391391
/**
392392
* The source of this type of incremental data.
393393
*/
@@ -396,7 +396,7 @@ export declare type PointerInteractionData = {
396396
/**
397397
* Schema of a Record which contains the screen properties.
398398
*/
399-
export declare type MetaRecord = SlotSupportedCommonRecordSchema & {
399+
export type MetaRecord = SlotSupportedCommonRecordSchema & {
400400
/**
401401
* The type of this Record.
402402
*/
@@ -422,7 +422,7 @@ export declare type MetaRecord = SlotSupportedCommonRecordSchema & {
422422
/**
423423
* Schema of common properties for a Record event type that is supported by slots.
424424
*/
425-
export declare type SlotSupportedCommonRecordSchema = CommonRecordSchema & {
425+
export type SlotSupportedCommonRecordSchema = CommonRecordSchema & {
426426
/**
427427
* Unique ID of the slot that generated this record.
428428
*/
@@ -431,7 +431,7 @@ export declare type SlotSupportedCommonRecordSchema = CommonRecordSchema & {
431431
/**
432432
* Schema of a Record type which contains focus information.
433433
*/
434-
export declare type FocusRecord = SlotSupportedCommonRecordSchema & {
434+
export type FocusRecord = SlotSupportedCommonRecordSchema & {
435435
/**
436436
* The type of this Record.
437437
*/
@@ -446,7 +446,7 @@ export declare type FocusRecord = SlotSupportedCommonRecordSchema & {
446446
/**
447447
* Schema of a Record which signifies that view lifecycle ended.
448448
*/
449-
export declare type ViewEndRecord = SlotSupportedCommonRecordSchema & {
449+
export type ViewEndRecord = SlotSupportedCommonRecordSchema & {
450450
/**
451451
* The type of this Record.
452452
*/
@@ -455,7 +455,7 @@ export declare type ViewEndRecord = SlotSupportedCommonRecordSchema & {
455455
/**
456456
* Schema of a Record which signifies that the viewport properties have changed.
457457
*/
458-
export declare type VisualViewportRecord = SlotSupportedCommonRecordSchema & {
458+
export type VisualViewportRecord = SlotSupportedCommonRecordSchema & {
459459
data: {
460460
height: number;
461461
offsetLeft: number;

lib/cjs/generated/profiling.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
/**
55
* Schema of RUM Profiling.
66
*/
7-
export declare type Profiling = BrowserProfileEvent | MobileProfileEvent;
7+
export type Profiling = BrowserProfileEvent | MobileProfileEvent;
88
/**
99
* Browser SDK profiling payload.
1010
*/
11-
export declare type BrowserProfileEvent = ProfileCommonProperties & {
11+
export type BrowserProfileEvent = ProfileCommonProperties & {
1212
/**
1313
* Profile data format.
1414
*/
@@ -56,7 +56,7 @@ export declare type BrowserProfileEvent = ProfileCommonProperties & {
5656
/**
5757
* Mobile SDK profiling event.
5858
*/
59-
export declare type MobileProfileEvent = ProfileCommonProperties & {
59+
export type MobileProfileEvent = ProfileCommonProperties & {
6060
/**
6161
* The RUM Vital this profile event is associated with.
6262
*/

0 commit comments

Comments
 (0)