react-native-stallion 2.0.1 → 2.1.0-alpha.1

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 (99) hide show
  1. package/android/src/main/AndroidManifest.xml +7 -1
  2. package/android/src/main/java/com/stallion/Stallion.java +16 -1
  3. package/android/src/main/java/com/stallion/StallionModule.java +8 -6
  4. package/android/src/main/java/com/stallion/events/StallionEventConstants.java +4 -1
  5. package/android/src/main/java/com/stallion/networkmanager/StallionStageManager.java +26 -1
  6. package/android/src/main/java/com/stallion/storage/StallionConfig.java +3 -2
  7. package/android/src/main/java/com/stallion/utils/ProcessPhoenix.java +100 -0
  8. package/ios/main/Stallion-Bridging-Header.h +1 -0
  9. package/ios/main/Stallion.m +2 -0
  10. package/ios/main/Stallion.swift +7 -1
  11. package/ios/main/StallionConstants.swift +3 -0
  12. package/ios/main/StallionModule.m +7 -1
  13. package/ios/main/StallionObjConstants.h +2 -0
  14. package/ios/main/StallionObjConstants.m +4 -0
  15. package/ios/main/StallionSlotManager.m +2 -2
  16. package/ios/main/StallionStageManager.swift +22 -1
  17. package/ios/main/StallionSyncHandler.swift +44 -19
  18. package/package.json +1 -1
  19. package/src/index.js +1 -1
  20. package/src/index.js.map +1 -1
  21. package/src/main/components/common/BackButton/index.js +54 -0
  22. package/src/main/components/common/BackButton/index.js.map +1 -0
  23. package/src/main/components/common/CrossButton/index.js +45 -0
  24. package/src/main/components/common/CrossButton/index.js.map +1 -0
  25. package/src/main/components/common/Footer/index.js +13 -5
  26. package/src/main/components/common/Footer/index.js.map +1 -1
  27. package/src/main/components/common/Footer/styles.js +16 -5
  28. package/src/main/components/common/Footer/styles.js.map +1 -1
  29. package/src/main/components/common/Header/index.js +9 -13
  30. package/src/main/components/common/Header/index.js.map +1 -1
  31. package/src/main/components/common/Header/styles.js +5 -5
  32. package/src/main/components/common/Header/styles.js.map +1 -1
  33. package/src/main/components/modules/listing/components/ConfigView.js +14 -4
  34. package/src/main/components/modules/listing/components/ConfigView.js.map +1 -1
  35. package/src/main/components/modules/listing/components/MetaCard.js +5 -4
  36. package/src/main/components/modules/listing/components/MetaCard.js.map +1 -1
  37. package/src/main/components/modules/listing/components/SlotView.js +47 -51
  38. package/src/main/components/modules/listing/components/SlotView.js.map +1 -1
  39. package/src/main/components/modules/listing/components/styles/index.js +27 -0
  40. package/src/main/components/modules/listing/components/styles/index.js.map +1 -1
  41. package/src/main/components/modules/listing/index.js +5 -6
  42. package/src/main/components/modules/listing/index.js.map +1 -1
  43. package/src/main/components/modules/listing/styles.js +5 -1
  44. package/src/main/components/modules/listing/styles.js.map +1 -1
  45. package/src/main/components/modules/modal/StallionModal.js +3 -3
  46. package/src/main/components/modules/modal/StallionModal.js.map +1 -1
  47. package/src/main/components/modules/modal/hooks/useStallionModal.js +6 -1
  48. package/src/main/components/modules/modal/hooks/useStallionModal.js.map +1 -1
  49. package/src/main/components/modules/prod/prod.js +1 -7
  50. package/src/main/components/modules/prod/prod.js.map +1 -1
  51. package/src/main/components/modules/prod/styles/index.js +4 -1
  52. package/src/main/components/modules/prod/styles/index.js.map +1 -1
  53. package/src/main/constants/appConstants.js +7 -3
  54. package/src/main/constants/appConstants.js.map +1 -1
  55. package/src/main/constants/colors.js +1 -0
  56. package/src/main/constants/colors.js.map +1 -1
  57. package/src/main/state/useStallionEvents.js +4 -1
  58. package/src/main/state/useStallionEvents.js.map +1 -1
  59. package/src/main/utils/StallionNativeUtils.js +1 -0
  60. package/src/main/utils/StallionNativeUtils.js.map +1 -1
  61. package/src/main/utils/getSize.js +11 -0
  62. package/src/main/utils/getSize.js.map +1 -0
  63. package/src/main/utils/useStallionUpdate.js +4 -2
  64. package/src/main/utils/useStallionUpdate.js.map +1 -1
  65. package/types/index.d.ts +1 -1
  66. package/types/index.d.ts.map +1 -1
  67. package/types/main/components/common/BackButton/index.d.ts +9 -0
  68. package/types/main/components/common/BackButton/index.d.ts.map +1 -0
  69. package/types/main/components/common/CrossButton/index.d.ts +9 -0
  70. package/types/main/components/common/CrossButton/index.d.ts.map +1 -0
  71. package/types/main/components/common/Footer/index.d.ts.map +1 -1
  72. package/types/main/components/common/Footer/styles.d.ts +12 -1
  73. package/types/main/components/common/Footer/styles.d.ts.map +1 -1
  74. package/types/main/components/common/Header/index.d.ts.map +1 -1
  75. package/types/main/components/common/Header/styles.d.ts +1 -1
  76. package/types/main/components/modules/listing/components/ConfigView.d.ts.map +1 -1
  77. package/types/main/components/modules/listing/components/MetaCard.d.ts.map +1 -1
  78. package/types/main/components/modules/listing/components/SlotView.d.ts.map +1 -1
  79. package/types/main/components/modules/listing/components/styles/index.d.ts +27 -0
  80. package/types/main/components/modules/listing/components/styles/index.d.ts.map +1 -1
  81. package/types/main/components/modules/listing/index.d.ts.map +1 -1
  82. package/types/main/components/modules/listing/styles.d.ts +4 -0
  83. package/types/main/components/modules/listing/styles.d.ts.map +1 -1
  84. package/types/main/components/modules/modal/StallionModal.d.ts.map +1 -1
  85. package/types/main/components/modules/modal/hooks/useStallionModal.d.ts +1 -0
  86. package/types/main/components/modules/modal/hooks/useStallionModal.d.ts.map +1 -1
  87. package/types/main/components/modules/prod/prod.d.ts.map +1 -1
  88. package/types/main/components/modules/prod/styles/index.d.ts +3 -0
  89. package/types/main/components/modules/prod/styles/index.d.ts.map +1 -1
  90. package/types/main/constants/appConstants.d.ts +7 -4
  91. package/types/main/constants/appConstants.d.ts.map +1 -1
  92. package/types/main/constants/colors.d.ts +1 -0
  93. package/types/main/constants/colors.d.ts.map +1 -1
  94. package/types/main/state/useStallionEvents.d.ts.map +1 -1
  95. package/types/main/utils/StallionNativeUtils.d.ts +1 -0
  96. package/types/main/utils/StallionNativeUtils.d.ts.map +1 -1
  97. package/types/main/utils/getSize.d.ts +2 -0
  98. package/types/main/utils/getSize.d.ts.map +1 -0
  99. package/types/main/utils/useStallionUpdate.d.ts.map +1 -1
@@ -20,6 +20,7 @@ declare const styles: {
20
20
  flex: number;
21
21
  justifyContent: "center";
22
22
  alignItems: "flex-end";
23
+ paddingHorizontal: number;
23
24
  };
24
25
  headerProfileButton: {
25
26
  height: number;
@@ -47,7 +48,6 @@ declare const styles: {
47
48
  fontSize: number;
48
49
  color: string;
49
50
  fontWeight: "bold";
50
- textDecorationLine: "underline";
51
51
  };
52
52
  alignStart: {
53
53
  alignItems: "flex-start";
@@ -1 +1 @@
1
- {"version":3,"file":"ConfigView.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/ConfigView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAExE,UAAU,WAAW;IACnB,MAAM,EAAE,mBAAmB,CAAC;CAC7B;AAED,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAWrC,CAAC;AAEF,eAAe,UAAU,CAAC"}
1
+ {"version":3,"file":"ConfigView.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/ConfigView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AAExE,UAAU,WAAW;IACnB,MAAM,EAAE,mBAAmB,CAAC;CAC7B;AAED,QAAA,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAiBrC,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"MetaCard.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/MetaCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAOvC,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAEpE,UAAU,SAAS;IACjB,IAAI,EAAE,WAAW,CAAC;CACnB;AAED,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAqBjC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
1
+ {"version":3,"file":"MetaCard.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/MetaCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAOvC,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAGpE,UAAU,SAAS;IACjB,IAAI,EAAE,WAAW,CAAC;CACnB;AAED,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA2BjC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"SlotView.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/SlotView.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EACL,iBAAiB,EAElB,MAAM,iCAAiC,CAAC;AAkDzC,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAiCzC,CAAC;AA2BF,eAAe,QAAQ,CAAC"}
1
+ {"version":3,"file":"SlotView.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/listing/components/SlotView.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EACL,iBAAiB,EAElB,MAAM,iCAAiC,CAAC;AA8CzC,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAoCzC,CAAC;AAwBF,eAAe,QAAQ,CAAC"}
@@ -21,6 +21,12 @@ declare const styles: {
21
21
  flex: number;
22
22
  alignItems: "center";
23
23
  };
24
+ justifyCenter: {
25
+ justifyContent: "center";
26
+ };
27
+ rowFlex: {
28
+ flexDirection: "row";
29
+ };
24
30
  rowContainer: {
25
31
  flexDirection: "row";
26
32
  justifyContent: "space-between";
@@ -35,6 +41,14 @@ declare const styles: {
35
41
  padding: number;
36
42
  borderRadius: number;
37
43
  };
44
+ configCardContainer: {
45
+ flex: number;
46
+ flexDirection: "row";
47
+ justifyContent: "flex-start";
48
+ alignItems: "center";
49
+ paddingHorizontal: number;
50
+ marginVertical: number;
51
+ };
38
52
  appliedText: {
39
53
  color: string;
40
54
  fontWeight: "bold";
@@ -58,6 +72,12 @@ declare const styles: {
58
72
  color: string;
59
73
  };
60
74
  titleText: {
75
+ flex: number;
76
+ fontSize: number;
77
+ color: string;
78
+ };
79
+ subTitleText: {
80
+ textAlign: "right";
61
81
  fontSize: number;
62
82
  color: string;
63
83
  };
@@ -81,6 +101,13 @@ declare const styles: {
81
101
  padding: number;
82
102
  backgroundColor: string;
83
103
  };
104
+ rightBorder: {
105
+ borderRightWidth: number;
106
+ borderColor: string;
107
+ };
108
+ flex: {
109
+ flex: number;
110
+ };
84
111
  };
85
112
  export default styles;
86
113
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/main/components/modules/listing/components/styles/index.ts"],"names":[],"mappings":"AAQA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4EV,CAAC;AAEH,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/main/components/modules/listing/components/styles/index.ts"],"names":[],"mappings":"AAQA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuGV,CAAC;AAEH,eAAe,MAAM,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/listing/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;;AAsEzD,wBAA6B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/listing/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;;AAkEzD,wBAA6B"}
@@ -4,6 +4,7 @@ declare const styles: {
4
4
  };
5
5
  mainListContainer: {
6
6
  flexGrow: number;
7
+ backgroundColor: string;
7
8
  };
8
9
  initalLoaderContainer: {
9
10
  width: string;
@@ -11,6 +12,9 @@ declare const styles: {
11
12
  justifyContent: "center";
12
13
  alignItems: "center";
13
14
  };
15
+ flex: {
16
+ flex: number;
17
+ };
14
18
  };
15
19
  export default styles;
16
20
  //# sourceMappingURL=styles.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/listing/styles.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;CAaV,CAAC;AAEH,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/listing/styles.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;CAiBV,CAAC;AAEH,eAAe,MAAM,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"StallionModal.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/modal/StallionModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAgB1C,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAe1B,CAAC;AA6DF,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"StallionModal.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/modal/StallionModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAgB1C,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAe1B,CAAC;AA0DF,eAAe,aAAa,CAAC"}
@@ -9,6 +9,7 @@ declare const useStallionModal: () => {
9
9
  downloadProgress: number;
10
10
  downloadError: string | null | undefined;
11
11
  handleSwitch: (newSwitchStatus: any) => void;
12
+ internalIsRestartRequired: boolean;
12
13
  };
13
14
  export default useStallionModal;
14
15
  //# sourceMappingURL=useStallionModal.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useStallionModal.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/modal/hooks/useStallionModal.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,gBAAgB;;;;;;;;;;;CAmErB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"useStallionModal.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/modal/hooks/useStallionModal.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,gBAAgB;;;;;;;;;;;;CA6ErB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"prod.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/prod/prod.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAS1C,QAAA,MAAM,IAAI,EAAE,KAAK,CAAC,EAyBjB,CAAC;AAEF,eAAe,IAAI,CAAC"}
1
+ {"version":3,"file":"prod.d.ts","sourceRoot":"","sources":["../../../../../../src/main/components/modules/prod/prod.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAO1C,QAAA,MAAM,IAAI,EAAE,KAAK,CAAC,EAqBjB,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -13,6 +13,9 @@ declare const styles: {
13
13
  };
14
14
  container: {
15
15
  flex: number;
16
+ height: string;
17
+ backgroundColor: string;
18
+ flexDirection: "column";
16
19
  };
17
20
  };
18
21
  export default styles;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/prod/styles/index.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;CAgBV,CAAC;AAEH,eAAe,MAAM,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/main/components/modules/prod/styles/index.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;CAmBV,CAAC;AAEH,eAAe,MAAM,CAAC"}
@@ -4,8 +4,6 @@ export declare const PROFILE_TITLE = "Profile";
4
4
  export declare const HEADER_SLAB_HEIGHT = 50;
5
5
  export declare const STD_MARGIN: number;
6
6
  export declare const END_REACH_THRESHOLD = 0;
7
- export declare const CLOSE_BUTTON_TEXT = "close";
8
- export declare const BACK_BUTTON_TEXT = "back";
9
7
  export declare const DOWNLOAD_BUTTON_TEXT = "Download";
10
8
  export declare const DOWNLOADED_TEXT = "Downloaded";
11
9
  export declare const APPLIED_TEXT = "Applied";
@@ -16,6 +14,10 @@ export declare enum SWITCH_TEXTS {
16
14
  ON = "Testing",
17
15
  OFF = "Production"
18
16
  }
17
+ export declare enum FOOTER_SUB_TEXTS {
18
+ PROD = "User facing version",
19
+ STAGE = "Internal sharing version"
20
+ }
19
21
  export declare const SWITCH_TITLE = "Switch ";
20
22
  export declare const BUCKET_CARD_UPDATED_TEXT = "Updated at: ";
21
23
  export declare const BUCKET_CARD_BUNDLE_COUNT_TEXT = "Bundles: ";
@@ -100,8 +102,9 @@ export declare enum NativeEventTypesProd {
100
102
  export declare enum NativeEventTypesStage {
101
103
  DOWNLOAD_ERROR_STAGE = "DOWNLOAD_ERROR_STAGE",
102
104
  DOWNLOAD_PROGRESS_STAGE = "DOWNLOAD_PROGRESS_STAGE",
103
- DOWNLOAD_COMPLETE_STAGE = "DOWNLOAD_COMPLETE_STAGE"
105
+ DOWNLOAD_COMPLETE_STAGE = "DOWNLOAD_COMPLETE_STAGE",
106
+ INSTALLED_STAGE = "INSTALLED_STAGE"
104
107
  }
105
108
  export declare const STALLION_NATIVE_EVENT = "STALLION_NATIVE_EVENT";
106
- export declare const RESTART_REQUIRED_MESSAGE = "Restart required. Bundle has changed";
109
+ export declare const RESTART_REQUIRED_MESSAGE = "Bundle change detected. Click to restart app.";
107
110
  //# sourceMappingURL=appConstants.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"appConstants.d.ts","sourceRoot":"","sources":["../../../../src/main/constants/appConstants.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"appConstants.d.ts","sourceRoot":"","sources":["../../../../src/main/constants/appConstants.ts"],"names":[],"mappings":"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"}
@@ -10,6 +10,7 @@ export declare const COLORS: {
10
10
  black2: string;
11
11
  black5: string;
12
12
  black1: string;
13
+ white7: string;
13
14
  orange: string;
14
15
  blue: string;
15
16
  text_major: string;
@@ -1 +1 @@
1
- {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../src/main/constants/colors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;CAgBlB,CAAC"}
1
+ {"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../../src/main/constants/colors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;CAiBlB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"useStallionEvents.d.ts","sourceRoot":"","sources":["../../../../src/main/state/useStallionEvents.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,oBAAoB,EAEpB,qBAAqB,EACtB,MAAM,2BAA2B,CAAC;AAQnC,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAc/D,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,oBAAoB,GAAG,qBAAqB,CAAC;IACnD,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAcD,eAAO,MAAM,iBAAiB,gBACf,MAAM,QAAQ,IAAI,CAAC,6BACL,MAAM,KAAK,IAAI,eAC7B,mBAAmB,SA2FjC,CAAC"}
1
+ {"version":3,"file":"useStallionEvents.d.ts","sourceRoot":"","sources":["../../../../src/main/state/useStallionEvents.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,oBAAoB,EAEpB,qBAAqB,EACtB,MAAM,2BAA2B,CAAC;AAQnC,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAiB/D,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,oBAAoB,GAAG,qBAAqB,CAAC;IACnD,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAcD,eAAO,MAAM,iBAAiB,gBACf,MAAM,QAAQ,IAAI,CAAC,6BACL,MAAM,KAAK,IAAI,eAC7B,mBAAmB,SA2FjC,CAAC"}
@@ -8,4 +8,5 @@ export declare const onLaunchNative: TOnLaunchBundleNative;
8
8
  export declare const sync: () => void;
9
9
  export declare const popEventsNative: () => Promise<string>;
10
10
  export declare const acknowledgeEventsNative: (eventIds: string) => Promise<string>;
11
+ export declare const restart: () => null;
11
12
  //# sourceMappingURL=StallionNativeUtils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"StallionNativeUtils.d.ts","sourceRoot":"","sources":["../../../../src/main/utils/StallionNativeUtils.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,sBAAsB,EACtB,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACzB,MAAM,uBAAuB,CAAC;AAE/B,eAAO,MAAM,iBAAiB,EAAE,kBACM,CAAC;AAEvC,eAAO,MAAM,qBAAqB,EAAE,sBAcnC,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,wBAcrC,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,2BACG,CAAC;AAE7C,eAAO,MAAM,oBAAoB,EAAE,qBACQ,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,qBACG,CAAC;AAEjC,eAAO,MAAM,IAAI,EAAE,MAAM,IAAiC,CAAC;AAE3D,eAAO,MAAM,eAAe,EAAE,MAAM,OAAO,CAAC,MAAM,CACjB,CAAC;AAElC,eAAO,MAAM,uBAAuB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CACjC,CAAC"}
1
+ {"version":3,"file":"StallionNativeUtils.d.ts","sourceRoot":"","sources":["../../../../src/main/utils/StallionNativeUtils.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,qBAAqB,EACrB,kBAAkB,EAClB,sBAAsB,EACtB,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACzB,MAAM,uBAAuB,CAAC;AAE/B,eAAO,MAAM,iBAAiB,EAAE,kBACM,CAAC;AAEvC,eAAO,MAAM,qBAAqB,EAAE,sBAcnC,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,wBAcrC,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,2BACG,CAAC;AAE7C,eAAO,MAAM,oBAAoB,EAAE,qBACQ,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,qBACG,CAAC;AAEjC,eAAO,MAAM,IAAI,EAAE,MAAM,IAAiC,CAAC;AAE3D,eAAO,MAAM,eAAe,EAAE,MAAM,OAAO,CAAC,MAAM,CACjB,CAAC;AAElC,eAAO,MAAM,uBAAuB,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CACjC,CAAC;AAE1C,eAAO,MAAM,OAAO,EAAE,MAAM,IAAoC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const getDigitalStorageSize: (sizeInBytes: number) => string;
2
+ //# sourceMappingURL=getSize.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getSize.d.ts","sourceRoot":"","sources":["../../../../src/main/utils/getSize.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,gBAAiB,MAAM,KAAG,MAc3D,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"useStallionUpdate.d.ts","sourceRoot":"","sources":["../../../../src/main/utils/useStallionUpdate.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,iBAAiB,QAAO,kBAOpC,CAAC"}
1
+ {"version":3,"file":"useStallionUpdate.d.ts","sourceRoot":"","sources":["../../../../src/main/utils/useStallionUpdate.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAG7D,eAAO,MAAM,iBAAiB,QAAO,kBAWpC,CAAC"}