@cruglobal/godtools-shared 0.9.0-SNAPSHOT.1188 → 0.9.0-SNAPSHOT.1200

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.
@@ -42,7 +42,8 @@ export declare namespace org.cru.godtools.shared.tool.parser {
42
42
  withParseRelated(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
43
43
  withParsePages(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
44
44
  withParseTips(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
45
- copy(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?: any/* kotlin.collections.Set<string> */, parsePages?: boolean, parseTips?: boolean, parserDispatcher?: any/* kotlinx.coroutines.CoroutineDispatcher */): org.cru.godtools.shared.tool.parser.ParserConfig;
45
+ withLegacyWebImageResources(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
46
+ copy(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?: any/* kotlin.collections.Set<string> */, parsePages?: boolean, parseTips?: boolean, legacyWebImageResources?: boolean, parserDispatcher?: any/* kotlinx.coroutines.CoroutineDispatcher */): org.cru.godtools.shared.tool.parser.ParserConfig;
46
47
  toString(): string;
47
48
  hashCode(): number;
48
49
  equals(other: Nullable<any>): boolean;
@@ -131,6 +132,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
131
132
  }
132
133
  }
133
134
  }
135
+ export declare namespace org.cru.godtools.shared.tool.parser.model {
136
+ interface Clickable /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
137
+ readonly isClickable: boolean;
138
+ readonly _events: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.EventId> */;
139
+ readonly url: Nullable<string>;
140
+ readonly events: Array<org.cru.godtools.shared.tool.parser.model.EventId>;
141
+ readonly __doNotUseOrImplementIt: {
142
+ readonly "org.cru.godtools.shared.tool.parser.model.Clickable": unique symbol;
143
+ };
144
+ }
145
+ }
134
146
  export declare namespace org.cru.godtools.shared.tool.parser.model {
135
147
  abstract class Content /* extends org.cru.godtools.shared.tool.parser.model.BaseModel */ /* implements org.cru.godtools.shared.tool.parser.model.Visibility */ {
136
148
  get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
@@ -241,12 +253,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
241
253
  }
242
254
  export declare namespace org.cru.godtools.shared.tool.parser.model {
243
255
  /* @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 */ {
256
+ class Image extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Clickable {
245
257
  private constructor();
258
+ get _events(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.EventId> */;
259
+ get url(): Nullable<string>;
246
260
  get resource(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
247
261
  get gravity(): org.cru.godtools.shared.tool.parser.model.Gravity.Horizontal;
248
262
  get width(): org.cru.godtools.shared.tool.parser.model.Dimension;
249
263
  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;
264
+ get isClickable(): boolean;
265
+ get events(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
266
+ readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Clickable["__doNotUseOrImplementIt"];
250
267
  }
251
268
  }
252
269
  export declare namespace org.cru.godtools.shared.tool.parser.model {
@@ -255,7 +272,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
255
272
  get code(): Nullable<string>;
256
273
  get locale(): Nullable<string>;
257
274
  get type(): org.cru.godtools.shared.tool.parser.model.Manifest.Type;
258
- get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
275
+ get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
259
276
  get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
260
277
  get title(): Nullable<string>;
261
278
  get aemImports(): any/* kotlin.collections.List<string> */;
@@ -267,6 +284,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
267
284
  static createTestManifest(config?: org.cru.godtools.shared.tool.parser.ParserConfig, type?: org.cru.godtools.shared.tool.parser.model.Manifest.Type, code?: Nullable<string>, locale?: Nullable<string>, primaryColor?: string, primaryTextColor?: string, navBarColor?: Nullable<string>, navBarControlColor?: Nullable<string>, backgroundColor?: string, cardBackgroundColor?: Nullable<string>, categoryLabelColor?: Nullable<string>, pageControlColor?: string, multiselectOptionSelectedColor?: Nullable<string>, textColor?: string, textScale?: number, resources?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Resource> */>, shareables?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.shareable.Shareable> */>, tips?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */>, pages?: Nullable<(p0: org.cru.godtools.shared.tool.parser.model.Manifest) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.page.Page> */>): org.cru.godtools.shared.tool.parser.model.Manifest;
268
285
  get hasTips(): boolean;
269
286
  findPage(id: Nullable<string>): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
287
+ get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
270
288
  get pages(): Array<org.cru.godtools.shared.tool.parser.model.page.Page>;
271
289
  }
272
290
  namespace Manifest {
@@ -299,6 +317,17 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
299
317
  }
300
318
  }
301
319
  }
320
+ export declare namespace org.cru.godtools.shared.tool.parser.model {
321
+ /* @ts-ignore: extends class with private primary constructor */
322
+ class Paragraph extends org.cru.godtools.shared.tool.parser.model.Content implements org.cru.godtools.shared.tool.parser.model.Parent {
323
+ private constructor();
324
+ get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
325
+ get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
326
+ static createTestParagraph(parent?: any/* org.cru.godtools.shared.tool.parser.model.Base */, content?: (p0: org.cru.godtools.shared.tool.parser.model.Paragraph) => any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */): org.cru.godtools.shared.tool.parser.model.Paragraph;
327
+ get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
328
+ readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
329
+ }
330
+ }
302
331
  export declare namespace org.cru.godtools.shared.tool.parser.model {
303
332
  interface Parent /* extends org.cru.godtools.shared.tool.parser.model.Base */ {
304
333
  readonly _content: any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
@@ -375,10 +404,12 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.page {
375
404
  get position(): number;
376
405
  get parentPage(): Nullable<org.cru.godtools.shared.tool.parser.model.page.Page>;
377
406
  get isHidden(): boolean;
378
- get listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
379
- get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
407
+ get _listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
408
+ get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
380
409
  get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
381
410
  _getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
411
+ get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
412
+ get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
382
413
  getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
383
414
  readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];
384
415
  }
@@ -449,13 +480,15 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.tract {
449
480
  get visiblePosition(): Nullable<number>;
450
481
  get isLastVisibleCard(): boolean;
451
482
  get isHidden(): boolean;
452
- get listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
453
- get dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
483
+ get _listeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
484
+ get _dismissListeners(): any/* kotlin.collections.Set<org.cru.godtools.shared.tool.parser.model.EventId> */;
454
485
  get backgroundImage(): Nullable<org.cru.godtools.shared.tool.parser.model.Resource>;
455
486
  get label(): Nullable<org.cru.godtools.shared.tool.parser.model.Text>;
456
487
  get _content(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.Content> */;
457
488
  get tips(): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.tips.Tip> */;
458
489
  _getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): any/* kotlin.collections.List<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent> */;
490
+ get dismissListeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
491
+ get listeners(): Array<org.cru.godtools.shared.tool.parser.model.EventId>;
459
492
  get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
460
493
  getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
461
494
  readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"] & org.cru.godtools.shared.tool.parser.model.HasAnalyticsEvents["__doNotUseOrImplementIt"];