@cruglobal/godtools-shared 0.9.0-PR412-SNAPSHOT.1180 → 0.9.0-PR423-SNAPSHOT.1189
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.
|
@@ -54,6 +54,111 @@ export declare namespace org.cru.godtools.shared.tool.parser {
|
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
58
|
+
class AnalyticsEvent /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ {
|
|
59
|
+
private constructor();
|
|
60
|
+
get action(): string;
|
|
61
|
+
get delay(): number;
|
|
62
|
+
get systems(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System> */;
|
|
63
|
+
get attributes(): any/* kotlin.collections.Map<string, string> */;
|
|
64
|
+
static createTestAnalyticsEvent(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, id?: Nullable<string>, action?: string, trigger?: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger, delay?: number, systems?: any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System> */, limit?: Nullable<number>, attributes?: any/* kotlin.collections.Map<string, string> */): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent;
|
|
65
|
+
isForSystem(system: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System): boolean;
|
|
66
|
+
shouldTrigger(state: org.cru.godtools.shared.tool.state.State): boolean;
|
|
67
|
+
recordTriggered(state: org.cru.godtools.shared.tool.state.State): void;
|
|
68
|
+
}
|
|
69
|
+
namespace AnalyticsEvent {
|
|
70
|
+
abstract class System {
|
|
71
|
+
private constructor();
|
|
72
|
+
static get ADOBE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
73
|
+
get name(): "ADOBE";
|
|
74
|
+
get ordinal(): 0;
|
|
75
|
+
};
|
|
76
|
+
static get APPSFLYER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
77
|
+
get name(): "APPSFLYER";
|
|
78
|
+
get ordinal(): 1;
|
|
79
|
+
};
|
|
80
|
+
static get FACEBOOK(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
81
|
+
get name(): "FACEBOOK";
|
|
82
|
+
get ordinal(): 2;
|
|
83
|
+
};
|
|
84
|
+
static get FIREBASE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
85
|
+
get name(): "FIREBASE";
|
|
86
|
+
get ordinal(): 3;
|
|
87
|
+
};
|
|
88
|
+
static get SNOWPLOW(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
89
|
+
get name(): "SNOWPLOW";
|
|
90
|
+
get ordinal(): 4;
|
|
91
|
+
};
|
|
92
|
+
static get USER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
|
|
93
|
+
get name(): "USER";
|
|
94
|
+
get ordinal(): 5;
|
|
95
|
+
};
|
|
96
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
|
|
97
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
|
|
98
|
+
get name(): "ADOBE" | "APPSFLYER" | "FACEBOOK" | "FIREBASE" | "SNOWPLOW" | "USER";
|
|
99
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
100
|
+
}
|
|
101
|
+
abstract class Trigger {
|
|
102
|
+
private constructor();
|
|
103
|
+
static get SELECTED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
104
|
+
get name(): "SELECTED";
|
|
105
|
+
get ordinal(): 0;
|
|
106
|
+
};
|
|
107
|
+
static get VISIBLE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
108
|
+
get name(): "VISIBLE";
|
|
109
|
+
get ordinal(): 1;
|
|
110
|
+
};
|
|
111
|
+
static get HIDDEN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
112
|
+
get name(): "HIDDEN";
|
|
113
|
+
get ordinal(): 2;
|
|
114
|
+
};
|
|
115
|
+
static get CLICKED(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
116
|
+
get name(): "CLICKED";
|
|
117
|
+
get ordinal(): 3;
|
|
118
|
+
};
|
|
119
|
+
static get DEFAULT(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
120
|
+
get name(): "DEFAULT";
|
|
121
|
+
get ordinal(): 4;
|
|
122
|
+
};
|
|
123
|
+
static get UNKNOWN(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger & {
|
|
124
|
+
get name(): "UNKNOWN";
|
|
125
|
+
get ordinal(): 5;
|
|
126
|
+
};
|
|
127
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger>;
|
|
128
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger;
|
|
129
|
+
get name(): "SELECTED" | "VISIBLE" | "HIDDEN" | "CLICKED" | "DEFAULT" | "UNKNOWN";
|
|
130
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
135
|
+
abstract class Content /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ /* implements org.cru.godtools.shared.tool.parser.model.Visibility */ {
|
|
136
|
+
get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
140
|
+
abstract class Dimension {
|
|
141
|
+
protected constructor();
|
|
142
|
+
}
|
|
143
|
+
namespace Dimension {
|
|
144
|
+
class Percent extends org.cru.godtools.shared.tool.parser.model.Dimension {
|
|
145
|
+
private constructor();
|
|
146
|
+
get value(): number;
|
|
147
|
+
copy(value?: number): org.cru.godtools.shared.tool.parser.model.Dimension.Percent;
|
|
148
|
+
toString(): string;
|
|
149
|
+
hashCode(): number;
|
|
150
|
+
equals(other: Nullable<any>): boolean;
|
|
151
|
+
}
|
|
152
|
+
class Pixels extends org.cru.godtools.shared.tool.parser.model.Dimension {
|
|
153
|
+
private constructor();
|
|
154
|
+
get value(): number;
|
|
155
|
+
copy(value?: number): org.cru.godtools.shared.tool.parser.model.Dimension.Pixels;
|
|
156
|
+
toString(): string;
|
|
157
|
+
hashCode(): number;
|
|
158
|
+
equals(other: Nullable<any>): boolean;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
57
162
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
58
163
|
class EventId {
|
|
59
164
|
private constructor();
|
|
@@ -68,6 +173,82 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
68
173
|
};
|
|
69
174
|
}
|
|
70
175
|
}
|
|
176
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
177
|
+
class Gravity {
|
|
178
|
+
constructor(horizontal: org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal, vertical: org.cru.godtools.shared.tool.parser.model.Gravity.Vertical);
|
|
179
|
+
get horizontal(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
180
|
+
get vertical(): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical;
|
|
181
|
+
get isStart(): boolean;
|
|
182
|
+
get isEnd(): boolean;
|
|
183
|
+
get isCenterX(): boolean;
|
|
184
|
+
get isTop(): boolean;
|
|
185
|
+
get isBottom(): boolean;
|
|
186
|
+
get isCenterY(): boolean;
|
|
187
|
+
get isCenter(): boolean;
|
|
188
|
+
static get Companion(): {
|
|
189
|
+
get CENTER(): org.cru.godtools.shared.tool.parser.model.Gravity;
|
|
190
|
+
};
|
|
191
|
+
}
|
|
192
|
+
namespace Gravity {
|
|
193
|
+
abstract class Horizontal {
|
|
194
|
+
private constructor();
|
|
195
|
+
static get START(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal & {
|
|
196
|
+
get name(): "START";
|
|
197
|
+
get ordinal(): 0;
|
|
198
|
+
};
|
|
199
|
+
static get CENTER(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal & {
|
|
200
|
+
get name(): "CENTER";
|
|
201
|
+
get ordinal(): 1;
|
|
202
|
+
};
|
|
203
|
+
static get END(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal & {
|
|
204
|
+
get name(): "END";
|
|
205
|
+
get ordinal(): 2;
|
|
206
|
+
};
|
|
207
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal>;
|
|
208
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
209
|
+
get name(): "START" | "CENTER" | "END";
|
|
210
|
+
get ordinal(): 0 | 1 | 2;
|
|
211
|
+
}
|
|
212
|
+
abstract class Vertical {
|
|
213
|
+
private constructor();
|
|
214
|
+
static get TOP(): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical & {
|
|
215
|
+
get name(): "TOP";
|
|
216
|
+
get ordinal(): 0;
|
|
217
|
+
};
|
|
218
|
+
static get CENTER(): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical & {
|
|
219
|
+
get name(): "CENTER";
|
|
220
|
+
get ordinal(): 1;
|
|
221
|
+
};
|
|
222
|
+
static get BOTTOM(): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical & {
|
|
223
|
+
get name(): "BOTTOM";
|
|
224
|
+
get ordinal(): 2;
|
|
225
|
+
};
|
|
226
|
+
static values(): Array<org.cru.godtools.shared.tool.parser.model.Gravity.Vertical>;
|
|
227
|
+
static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.Gravity.Vertical;
|
|
228
|
+
get name(): "TOP" | "CENTER" | "BOTTOM";
|
|
229
|
+
get ordinal(): 0 | 1 | 2;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
234
|
+
interface HasAnalyticsEvents {
|
|
235
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
|
|
236
|
+
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
237
|
+
readonly __doNotUseOrImplementIt: {
|
|
238
|
+
readonly "org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents": unique symbol;
|
|
239
|
+
};
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
243
|
+
/* @ts-ignore: extends class with private primary constructor */
|
|
244
|
+
class Image extends org.cru.godtools.shared.tool.parser.model.Content /* implements org.cru.godtools.shared.tool.parser.model.Clickable */ {
|
|
245
|
+
private constructor();
|
|
246
|
+
get resource(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
247
|
+
get gravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
|
|
248
|
+
get width(): org.cru.godtools.shared.tool.parser.model.Dimension;
|
|
249
|
+
static createTestImage(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, resource?: Nullable<string>, gravity?: org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal, width?: org.cru.godtools.shared.tool.parser.model.Dimension): org.cru.godtools.shared.tool.parser.model.Image;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
71
252
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
72
253
|
class Manifest /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ /* implements org.cru.godtools.shared.tool.parser.model.Styles */ {
|
|
73
254
|
private constructor();
|
|
@@ -118,6 +299,15 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
118
299
|
}
|
|
119
300
|
}
|
|
120
301
|
}
|
|
302
|
+
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
303
|
+
interface Parent /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
|
|
304
|
+
readonly _content: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
305
|
+
readonly content: Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
306
|
+
readonly __doNotUseOrImplementIt: {
|
|
307
|
+
readonly "org.cru.godtools.shared.tool.parser.model.Parent": unique symbol;
|
|
308
|
+
};
|
|
309
|
+
}
|
|
310
|
+
}
|
|
121
311
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
122
312
|
class Resource /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ {
|
|
123
313
|
private constructor();
|
|
@@ -126,7 +316,8 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
126
316
|
}
|
|
127
317
|
}
|
|
128
318
|
export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
129
|
-
class
|
|
319
|
+
/* @ts-ignore: extends class with private primary constructor */
|
|
320
|
+
class Text extends org.cru.godtools.shared.tool.parser.model.Content {
|
|
130
321
|
private constructor();
|
|
131
322
|
get text(): Nullable<string>;
|
|
132
323
|
get textStyles(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.Text.Style> */;
|
|
@@ -179,7 +370,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
|
|
|
179
370
|
}
|
|
180
371
|
}
|
|
181
372
|
export declare namespace org.cru.godtools.shared.tool.parser.model.page {
|
|
182
|
-
abstract class Page /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */
|
|
373
|
+
abstract class Page /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents/*, org.cru.godtools.shared.tool.parser.model.Styles */ {
|
|
183
374
|
get id(): string;
|
|
184
375
|
get position(): number;
|
|
185
376
|
get parentPage(): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
|
|
@@ -187,6 +378,9 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.page {
|
|
|
187
378
|
get listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
188
379
|
get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
189
380
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
381
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
|
|
382
|
+
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
383
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|
|
190
384
|
}
|
|
191
385
|
}
|
|
192
386
|
export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
@@ -206,20 +400,28 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
206
400
|
}
|
|
207
401
|
}
|
|
208
402
|
export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
209
|
-
class Hero /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */
|
|
403
|
+
class Hero /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents {
|
|
210
404
|
private constructor();
|
|
211
405
|
get heading(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
406
|
+
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
212
407
|
static createTestHero(page?: org.cru.godtools.shared.tool.parser.model.tract.TractPage, analyticsEvents?: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */, heading?: Nullable<(p0: any/* org.cru.godtools.shared.tool.parser.model.Base */) => Nullable<org.cru.godtools.shared.tool.parser.model.Text>>): org.cru.godtools.shared.tool.parser.model.tract.Hero;
|
|
408
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
|
|
409
|
+
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
410
|
+
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
411
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|
|
213
412
|
}
|
|
214
413
|
}
|
|
215
414
|
export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
216
|
-
class Modal /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */
|
|
415
|
+
class Modal /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent/*, org.cru.godtools.shared.tool.parser.model.Styles */ {
|
|
217
416
|
private constructor();
|
|
218
417
|
get page(): org.cru.godtools.shared.tool.parser.model.tract.TractPage;
|
|
219
418
|
get id(): string;
|
|
220
419
|
get title(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
420
|
+
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
221
421
|
get listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
222
422
|
get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
423
|
+
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
424
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
|
|
223
425
|
}
|
|
224
426
|
}
|
|
225
427
|
export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
@@ -231,14 +433,15 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
231
433
|
get hero(): Nullable<org.cru.godtools.shared.tool.parser.model.tract.Hero>;
|
|
232
434
|
get modals(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tract.Modal> */;
|
|
233
435
|
get callToAction(): org.cru.godtools.shared.tool.parser.model.tract.CallToAction;
|
|
234
|
-
static createTestTractPage(manifest?: org.cru.godtools.shared.tool.parser.model.Manifest, fileName?: Nullable<string>, backgroundColor?: string, backgroundImage?: Nullable<string>, primaryColor?: Nullable<string>, backgroundImageGravity?:
|
|
436
|
+
static createTestTractPage(manifest?: org.cru.godtools.shared.tool.parser.model.Manifest, fileName?: Nullable<string>, backgroundColor?: string, backgroundImage?: Nullable<string>, primaryColor?: Nullable<string>, backgroundImageGravity?: org.cru.godtools.shared.tool.parser.model.Gravity, backgroundImageScaleType?: any/* org.cru.godtools.shared.tool.parser.model.ImageScaleType */, textColor?: Nullable<string>, textScale?: number, cardBackgroundColor?: Nullable<string>, cardTextColor?: Nullable<string>, cards?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.TractPage) => Nullable<any>/* Nullable<kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card>> */>, callToAction?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.tract.TractPage) => Nullable<org.cru.godtools.shared.tool.parser.model.tract.CallToAction>>): org.cru.godtools.shared.tool.parser.model.tract.TractPage;
|
|
235
437
|
findModal(id: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.tract.Modal>;
|
|
236
438
|
get cards(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card> */;
|
|
237
439
|
get visibleCards(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tract.TractPage.Card> */;
|
|
238
440
|
get cardTextColor(): string;
|
|
441
|
+
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
239
442
|
}
|
|
240
443
|
namespace TractPage {
|
|
241
|
-
class Card /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */
|
|
444
|
+
class Card /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ implements org.cru.godtools.shared.tool.parser.model.Parent, org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents/*, org.cru.godtools.shared.tool.parser.model.Styles */ {
|
|
242
445
|
private constructor();
|
|
243
446
|
get page(): org.cru.godtools.shared.tool.parser.model.tract.TractPage;
|
|
244
447
|
get id(): string;
|
|
@@ -250,7 +453,12 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
|
|
|
250
453
|
get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
|
|
251
454
|
get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
|
|
252
455
|
get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
|
|
456
|
+
get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
|
|
253
457
|
get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
|
|
458
|
+
_getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
|
|
459
|
+
get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
|
|
460
|
+
getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
|
|
461
|
+
readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
|
|
254
462
|
}
|
|
255
463
|
}
|
|
256
464
|
}
|