@cruglobal/godtools-shared 1.1.3-SNAPSHOT.1715 → 1.1.3-SNAPSHOT.1728

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.
@@ -75,7 +75,7 @@ export declare namespace org.cru.godtools.shared.tool.parser {
75
75
  withParseTips(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
76
76
  /** @deprecated Since v0.9.0, This setting is meant to workaround a knowgod.com image resource issue */
77
77
  withLegacyWebImageResources(enabled: boolean): org.cru.godtools.shared.tool.parser.ParserConfig;
78
- copy(deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?: kotlin.collections.KtSet<string>, parsePages?: boolean, parseTips?: boolean, legacyWebImageResources?: boolean, parserDispatcher?: any/* kotlinx.coroutines.CoroutineDispatcher */): org.cru.godtools.shared.tool.parser.ParserConfig;
78
+ static copy$default($this: org.cru.godtools.shared.tool.parser.ParserConfig, deviceType?: any/* org.cru.godtools.shared.tool.parser.model.DeviceType */, appVersion?: Nullable<any>/* Nullable<org.cru.godtools.shared.tool.parser.model.Version> */, supportedFeatures?: kotlin.collections.KtSet<string>, parsePages?: boolean, parseTips?: boolean, legacyWebImageResources?: boolean, parserDispatcher?: any/* kotlinx.coroutines.CoroutineDispatcher */): org.cru.godtools.shared.tool.parser.ParserConfig;
79
79
  toString(): string;
80
80
  hashCode(): number;
81
81
  equals(other: Nullable<any>): boolean;
@@ -127,28 +127,20 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
127
127
  namespace AnalyticsEvent {
128
128
  abstract class System {
129
129
  private constructor();
130
- static get APPSFLYER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
131
- get name(): "APPSFLYER";
132
- get ordinal(): 0;
133
- };
134
130
  static get FACEBOOK(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
135
131
  get name(): "FACEBOOK";
136
- get ordinal(): 1;
132
+ get ordinal(): 0;
137
133
  };
138
134
  static get FIREBASE(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
139
135
  get name(): "FIREBASE";
140
- get ordinal(): 2;
141
- };
142
- static get SNOWPLOW(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
143
- get name(): "SNOWPLOW";
144
- get ordinal(): 3;
136
+ get ordinal(): 1;
145
137
  };
146
138
  static get USER(): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System & {
147
139
  get name(): "USER";
148
- get ordinal(): 4;
140
+ get ordinal(): 2;
149
141
  };
150
- get name(): "APPSFLYER" | "FACEBOOK" | "FIREBASE" | "SNOWPLOW" | "USER";
151
- get ordinal(): 0 | 1 | 2 | 3 | 4;
142
+ get name(): "FACEBOOK" | "FIREBASE" | "USER";
143
+ get ordinal(): 0 | 1 | 2;
152
144
  static values(): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System>;
153
145
  static valueOf(value: string): org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.System;
154
146
  }
@@ -314,7 +306,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
314
306
  class Percent extends org.cru.godtools.shared.tool.parser.model.Dimension {
315
307
  private constructor();
316
308
  get value(): number;
317
- copy(value?: number): org.cru.godtools.shared.tool.parser.model.Dimension.Percent;
309
+ copy$default(value?: number): org.cru.godtools.shared.tool.parser.model.Dimension.Percent;
318
310
  toString(): string;
319
311
  hashCode(): number;
320
312
  equals(other: Nullable<any>): boolean;
@@ -322,7 +314,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
322
314
  class Pixels extends org.cru.godtools.shared.tool.parser.model.Dimension {
323
315
  private constructor();
324
316
  get value(): number;
325
- copy(value?: number): org.cru.godtools.shared.tool.parser.model.Dimension.Pixels;
317
+ copy$default(value?: number): org.cru.godtools.shared.tool.parser.model.Dimension.Pixels;
326
318
  toString(): string;
327
319
  hashCode(): number;
328
320
  equals(other: Nullable<any>): boolean;
@@ -331,7 +323,7 @@ export declare namespace org.cru.godtools.shared.tool.parser.model {
331
323
  }
332
324
  export declare namespace org.cru.godtools.shared.tool.parser.model {
333
325
  class EventId {
334
- private constructor();
326
+ constructor(namespace: Nullable<string> | undefined, name: string);
335
327
  get namespace(): Nullable<string>;
336
328
  get name(): string;
337
329
  resolve(state: org.cru.godtools.shared.tool.state.State): kotlin.collections.KtList<org.cru.godtools.shared.tool.parser.model.EventId>;
@@ -879,10 +871,16 @@ export declare namespace org.cru.godtools.shared.tool.parser.model.page {
879
871
  /* @ts-ignore: extends class with private primary constructor */
880
872
  class CardCollectionPage extends org.cru.godtools.shared.tool.parser.model.page.Page {
881
873
  private constructor();
874
+ get header(): Nullable<org.cru.godtools.shared.tool.parser.model.page.CardCollectionPage.Header>;
882
875
  get cards(): Array<org.cru.godtools.shared.tool.parser.model.page.CardCollectionPage.Card>;
883
876
  getAnalyticsEvents(type: org.cru.godtools.shared.tool.parser.model.AnalyticsEvent.Trigger): Array<org.cru.godtools.shared.tool.parser.model.AnalyticsEvent>;
884
877
  }
885
878
  namespace CardCollectionPage {
879
+ class Header /* 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 */ {
880
+ private constructor();
881
+ get content(): Array<org.cru.godtools.shared.tool.parser.model.Content>;
882
+ readonly __doNotUseOrImplementIt: org.cru.godtools.shared.tool.parser.model.Parent["__doNotUseOrImplementIt"];
883
+ }
886
884
  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 {
887
885
  private constructor();
888
886
  get page(): org.cru.godtools.shared.tool.parser.model.page.CardCollectionPage;
@@ -205,6 +205,11 @@
205
205
  initMetadataForClass(BufferedChannelIterator, 'BufferedChannelIterator', VOID, VOID, [Waiter], [0, 3]);
206
206
  initMetadataForCoroutine($sendCOROUTINE$3, CoroutineImpl);
207
207
  initMetadataForCoroutine($receiveCatchingCOROUTINE$5, CoroutineImpl);
208
+ function close$default(cause, $super) {
209
+ cause = cause === VOID ? null : cause;
210
+ return $super === VOID ? this.j11(cause) : $super.j11.call(this, cause);
211
+ }
212
+ initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
208
213
  function cancel$default_0(cause, $super) {
209
214
  cause = cause === VOID ? null : cause;
210
215
  var tmp;
@@ -217,12 +222,7 @@
217
222
  return tmp;
218
223
  }
219
224
  initMetadataForInterface(ReceiveChannel, 'ReceiveChannel', VOID, VOID, VOID, [0]);
220
- function close$default(cause, $super) {
221
- cause = cause === VOID ? null : cause;
222
- return $super === VOID ? this.j11(cause) : $super.j11.call(this, cause);
223
- }
224
- initMetadataForInterface(SendChannel, 'SendChannel', VOID, VOID, VOID, [1]);
225
- initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [ReceiveChannel, SendChannel], [1, 4, 0, 3]);
225
+ initMetadataForClass(BufferedChannel, 'BufferedChannel', VOID, VOID, [SendChannel, ReceiveChannel], [1, 4, 0, 3]);
226
226
  initMetadataForClass(WaiterEB, 'WaiterEB');
227
227
  initMetadataForClass(ReceiveCatching, 'ReceiveCatching', VOID, VOID, [Waiter]);
228
228
  initMetadataForObject(Factory, 'Factory');
@@ -232,7 +232,7 @@
232
232
  initMetadataForClass(ChannelResult, 'ChannelResult');
233
233
  initMetadataForClass(ClosedSendChannelException, 'ClosedSendChannelException', VOID, IllegalStateException);
234
234
  initMetadataForClass(ClosedReceiveChannelException, 'ClosedReceiveChannelException', VOID, NoSuchElementException);
235
- initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine, ReceiveChannel, SendChannel], [1, 0]);
235
+ initMetadataForClass(ChannelCoroutine, 'ChannelCoroutine', VOID, AbstractCoroutine, [AbstractCoroutine, SendChannel, ReceiveChannel], [1, 0]);
236
236
  initMetadataForClass(ConflatedBufferedChannel, 'ConflatedBufferedChannel', VOID, BufferedChannel, VOID, [1, 0]);
237
237
  initMetadataForInterface(ProducerScope, 'ProducerScope', VOID, VOID, [CoroutineScope, SendChannel], [1]);
238
238
  initMetadataForClass(ProducerCoroutine, 'ProducerCoroutine', VOID, ChannelCoroutine, [ChannelCoroutine, ProducerScope], [1, 0]);