expo-iap 3.1.38 → 3.3.0-rc.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 (49) hide show
  1. package/.prettierignore +1 -0
  2. package/android/src/main/java/expo/modules/iap/ExpoIapModule.kt +124 -0
  3. package/build/index.d.ts +15 -6
  4. package/build/index.d.ts.map +1 -1
  5. package/build/index.js +30 -17
  6. package/build/index.js.map +1 -1
  7. package/build/modules/android.d.ts +53 -1
  8. package/build/modules/android.d.ts.map +1 -1
  9. package/build/modules/android.js +61 -0
  10. package/build/modules/android.js.map +1 -1
  11. package/build/types.d.ts +255 -11
  12. package/build/types.d.ts.map +1 -1
  13. package/build/types.js.map +1 -1
  14. package/build/useIAP.d.ts.map +1 -1
  15. package/build/useIAP.js +2 -0
  16. package/build/useIAP.js.map +1 -1
  17. package/coverage/clover.xml +147 -139
  18. package/coverage/coverage-final.json +5 -5
  19. package/coverage/lcov-report/block-navigation.js +1 -1
  20. package/coverage/lcov-report/index.html +23 -23
  21. package/coverage/lcov-report/sorter.js +7 -21
  22. package/coverage/lcov-report/src/ExpoIap.types.ts.html +1396 -0
  23. package/coverage/lcov-report/src/helpers/index.html +116 -0
  24. package/coverage/lcov-report/src/helpers/subscription.ts.html +499 -0
  25. package/coverage/lcov-report/src/index.html +14 -14
  26. package/coverage/lcov-report/src/index.ts.html +64 -25
  27. package/coverage/lcov-report/src/modules/android.ts.html +233 -8
  28. package/coverage/lcov-report/src/modules/index.html +15 -15
  29. package/coverage/lcov-report/src/modules/ios.ts.html +1 -1
  30. package/coverage/lcov-report/src/onside/ExpoOnsideMarketplaceAvailabilityModule.ts.html +145 -0
  31. package/coverage/lcov-report/src/onside/index.html +131 -0
  32. package/coverage/lcov-report/src/onside/index.ts.html +253 -0
  33. package/coverage/lcov-report/src/types/ExpoIapAndroid.types.ts.html +502 -0
  34. package/coverage/lcov-report/src/types/index.html +116 -0
  35. package/coverage/lcov-report/src/useIAP.ts.html +1654 -0
  36. package/coverage/lcov-report/src/utils/constants.ts.html +127 -0
  37. package/coverage/lcov-report/src/utils/debug.ts.html +1 -1
  38. package/coverage/lcov-report/src/utils/errorMapping.ts.html +1 -1
  39. package/coverage/lcov-report/src/utils/index.html +1 -1
  40. package/coverage/lcov.info +249 -232
  41. package/ios/expoiap.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  42. package/ios/expoiap.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  43. package/openiap-versions.json +3 -3
  44. package/package.json +1 -1
  45. package/plugin/tsconfig.tsbuildinfo +1 -1
  46. package/src/index.ts +30 -17
  47. package/src/modules/android.ts +75 -0
  48. package/src/types.ts +273 -12
  49. package/src/useIAP.ts +2 -0
@@ -1,11 +1,11 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1765096810756" clover="3.2.0">
3
- <project timestamp="1765096810756" name="All files">
4
- <metrics statements="466" coveredstatements="438" conditionals="257" coveredconditionals="223" methods="97" coveredmethods="77" elements="820" coveredelements="738" complexity="0" loc="466" ncloc="466" packages="3" files="5" classes="5"/>
2
+ <coverage generated="1765468528987" clover="3.2.0">
3
+ <project timestamp="1765468528987" name="All files">
4
+ <metrics statements="474" coveredstatements="446" conditionals="260" coveredconditionals="226" methods="100" coveredmethods="80" elements="834" coveredelements="752" complexity="0" loc="474" ncloc="474" packages="3" files="5" classes="5"/>
5
5
  <package name="src">
6
- <metrics statements="205" coveredstatements="199" conditionals="105" coveredconditionals="95" methods="43" coveredmethods="34"/>
7
- <file name="index.ts" path="/home/runner/work/expo-iap/expo-iap/src/index.ts">
8
- <metrics statements="205" coveredstatements="199" conditionals="105" coveredconditionals="95" methods="43" coveredmethods="34"/>
6
+ <metrics statements="207" coveredstatements="201" conditionals="108" coveredconditionals="98" methods="43" coveredmethods="34"/>
7
+ <file name="index.ts" path="/Users/crossplatformkorea/Github/hyochan/expo-iap/src/index.ts">
8
+ <metrics statements="207" coveredstatements="201" conditionals="108" coveredconditionals="98" methods="43" coveredmethods="34"/>
9
9
  <line num="2" count="2" type="stmt"/>
10
10
  <line num="3" count="2" type="stmt"/>
11
11
  <line num="6" count="2" type="stmt"/>
@@ -120,150 +120,158 @@
120
120
  <line num="396" count="2" type="cond" truecount="2" falsecount="1"/>
121
121
  <line num="397" count="0" type="stmt"/>
122
122
  <line num="399" count="2" type="stmt"/>
123
- <line num="428" count="10" type="cond" truecount="2" falsecount="0"/>
124
- <line num="462" count="2" type="stmt"/>
125
- <line num="465" count="13" type="stmt"/>
126
- <line num="466" count="13" type="stmt"/>
127
- <line num="467" count="12" type="stmt"/>
128
- <line num="469" count="12" type="cond" truecount="1" falsecount="0"/>
129
- <line num="470" count="6" type="stmt"/>
130
- <line num="472" count="6" type="cond" truecount="1" falsecount="0"/>
131
- <line num="473" count="1" type="stmt"/>
132
- <line num="487" count="5" type="cond" truecount="3" falsecount="0"/>
133
- <line num="488" count="1" type="stmt"/>
134
- <line num="491" count="4" type="stmt"/>
135
- <line num="497" count="4" type="stmt"/>
136
- <line num="502" count="4" type="cond" truecount="1" falsecount="0"/>
137
- <line num="503" count="1" type="stmt"/>
138
- <line num="506" count="3" type="cond" truecount="1" falsecount="0"/>
139
- <line num="507" count="2" type="stmt"/>
140
- <line num="510" count="1" type="cond" truecount="1" falsecount="1"/>
141
- <line num="513" count="6" type="cond" truecount="1" falsecount="0"/>
142
- <line num="514" count="5" type="cond" truecount="1" falsecount="0"/>
143
- <line num="515" count="2" type="stmt"/>
144
- <line num="520" count="2" type="cond" truecount="1" falsecount="0"/>
145
- <line num="521" count="1" type="stmt"/>
146
- <line num="540" count="1" type="stmt"/>
147
- <line num="542" count="1" type="stmt"/>
123
+ <line num="429" count="10" type="cond" truecount="1" falsecount="0"/>
124
+ <line num="430" count="6" type="cond" truecount="2" falsecount="0"/>
125
+ <line num="432" count="4" type="cond" truecount="2" falsecount="0"/>
126
+ <line num="475" count="2" type="stmt"/>
127
+ <line num="478" count="13" type="stmt"/>
128
+ <line num="479" count="13" type="stmt"/>
129
+ <line num="480" count="12" type="stmt"/>
130
+ <line num="482" count="12" type="cond" truecount="1" falsecount="0"/>
131
+ <line num="483" count="6" type="stmt"/>
132
+ <line num="485" count="6" type="cond" truecount="1" falsecount="0"/>
133
+ <line num="486" count="1" type="stmt"/>
134
+ <line num="500" count="5" type="cond" truecount="3" falsecount="0"/>
135
+ <line num="501" count="1" type="stmt"/>
136
+ <line num="504" count="4" type="stmt"/>
137
+ <line num="510" count="4" type="stmt"/>
138
+ <line num="515" count="4" type="cond" truecount="1" falsecount="0"/>
139
+ <line num="516" count="1" type="stmt"/>
140
+ <line num="519" count="3" type="cond" truecount="1" falsecount="0"/>
141
+ <line num="520" count="2" type="stmt"/>
142
+ <line num="523" count="1" type="cond" truecount="1" falsecount="1"/>
143
+ <line num="526" count="6" type="cond" truecount="1" falsecount="0"/>
144
+ <line num="527" count="5" type="cond" truecount="1" falsecount="0"/>
145
+ <line num="528" count="2" type="stmt"/>
146
+ <line num="533" count="2" type="cond" truecount="1" falsecount="0"/>
147
+ <line num="534" count="1" type="stmt"/>
148
148
  <line num="553" count="1" type="stmt"/>
149
- <line num="556" count="3" type="cond" truecount="1" falsecount="0"/>
150
- <line num="557" count="2" type="stmt"/>
151
- <line num="562" count="2" type="cond" truecount="1" falsecount="0"/>
152
- <line num="563" count="1" type="stmt"/>
153
- <line num="585" count="1" type="stmt"/>
154
- <line num="587" count="1" type="cond" truecount="1" falsecount="1"/>
155
- <line num="588" count="1" type="cond" truecount="2" falsecount="0"/>
156
- <line num="589" count="1" type="cond" truecount="2" falsecount="0"/>
157
- <line num="591" count="1" type="stmt"/>
158
- <line num="599" count="1" type="stmt"/>
159
- <line num="605" count="1" type="stmt"/>
160
- <line num="608" count="1" type="stmt"/>
161
- <line num="613" count="1" type="stmt"/>
162
- <line num="616" count="2" type="stmt"/>
163
- <line num="620" count="6" type="cond" truecount="1" falsecount="0"/>
164
- <line num="621" count="2" type="stmt"/>
165
- <line num="622" count="2" type="stmt"/>
166
- <line num="625" count="4" type="cond" truecount="1" falsecount="0"/>
167
- <line num="626" count="3" type="cond" truecount="2" falsecount="0"/>
168
- <line num="628" count="3" type="cond" truecount="1" falsecount="0"/>
169
- <line num="629" count="1" type="stmt"/>
170
- <line num="637" count="2" type="cond" truecount="1" falsecount="0"/>
171
- <line num="638" count="1" type="stmt"/>
172
- <line num="639" count="1" type="stmt"/>
149
+ <line num="555" count="1" type="stmt"/>
150
+ <line num="566" count="1" type="stmt"/>
151
+ <line num="569" count="3" type="cond" truecount="1" falsecount="0"/>
152
+ <line num="570" count="2" type="stmt"/>
153
+ <line num="575" count="2" type="cond" truecount="1" falsecount="0"/>
154
+ <line num="576" count="1" type="stmt"/>
155
+ <line num="598" count="1" type="stmt"/>
156
+ <line num="600" count="1" type="cond" truecount="1" falsecount="1"/>
157
+ <line num="601" count="1" type="cond" truecount="2" falsecount="0"/>
158
+ <line num="602" count="1" type="cond" truecount="2" falsecount="0"/>
159
+ <line num="604" count="1" type="stmt"/>
160
+ <line num="612" count="1" type="stmt"/>
161
+ <line num="618" count="1" type="stmt"/>
162
+ <line num="621" count="1" type="stmt"/>
163
+ <line num="626" count="1" type="stmt"/>
164
+ <line num="629" count="2" type="stmt"/>
165
+ <line num="633" count="6" type="cond" truecount="1" falsecount="0"/>
166
+ <line num="634" count="2" type="stmt"/>
167
+ <line num="635" count="2" type="stmt"/>
168
+ <line num="638" count="4" type="cond" truecount="1" falsecount="0"/>
169
+ <line num="639" count="3" type="cond" truecount="2" falsecount="0"/>
170
+ <line num="641" count="3" type="cond" truecount="1" falsecount="0"/>
173
171
  <line num="642" count="1" type="stmt"/>
174
- <line num="643" count="1" type="stmt"/>
175
- <line num="646" count="1" type="stmt"/>
176
- <line num="659" count="2" type="stmt"/>
177
- <line num="660" count="1" type="cond" truecount="1" falsecount="0"/>
178
- <line num="661" count="1" type="stmt"/>
179
- <line num="664" count="1" type="stmt"/>
180
- <line num="688" count="2" type="stmt"/>
181
- <line num="690" count="2" type="stmt"/>
182
- <line num="691" count="5" type="cond" truecount="1" falsecount="0"/>
183
- <line num="692" count="1" type="stmt"/>
184
- <line num="693" count="1" type="stmt"/>
185
- <line num="696" count="4" type="cond" truecount="1" falsecount="0"/>
186
- <line num="697" count="3" type="cond" truecount="1" falsecount="1"/>
187
- <line num="698" count="1" type="stmt"/>
188
- <line num="701" count="1" type="stmt"/>
189
- <line num="714" count="2" type="stmt"/>
190
- <line num="717" count="4" type="stmt"/>
191
- <line num="719" count="4" type="cond" truecount="1" falsecount="0"/>
192
- <line num="720" count="1" type="stmt"/>
193
- <line num="723" count="3" type="cond" truecount="1" falsecount="0"/>
194
- <line num="724" count="2" type="cond" truecount="1" falsecount="0"/>
195
- <line num="730" count="1" type="stmt"/>
196
- <line num="734" count="1" type="stmt"/>
172
+ <line num="650" count="2" type="cond" truecount="1" falsecount="0"/>
173
+ <line num="651" count="1" type="stmt"/>
174
+ <line num="652" count="1" type="stmt"/>
175
+ <line num="655" count="1" type="stmt"/>
176
+ <line num="656" count="1" type="stmt"/>
177
+ <line num="659" count="1" type="stmt"/>
178
+ <line num="672" count="2" type="stmt"/>
179
+ <line num="673" count="1" type="cond" truecount="1" falsecount="0"/>
180
+ <line num="674" count="1" type="stmt"/>
181
+ <line num="677" count="1" type="stmt"/>
182
+ <line num="701" count="2" type="stmt"/>
183
+ <line num="703" count="2" type="stmt"/>
184
+ <line num="704" count="5" type="cond" truecount="1" falsecount="0"/>
185
+ <line num="705" count="1" type="stmt"/>
186
+ <line num="706" count="1" type="stmt"/>
187
+ <line num="709" count="4" type="cond" truecount="1" falsecount="0"/>
188
+ <line num="710" count="3" type="cond" truecount="1" falsecount="1"/>
189
+ <line num="711" count="1" type="stmt"/>
190
+ <line num="714" count="1" type="stmt"/>
191
+ <line num="727" count="2" type="stmt"/>
192
+ <line num="730" count="4" type="stmt"/>
193
+ <line num="732" count="4" type="cond" truecount="1" falsecount="0"/>
194
+ <line num="733" count="1" type="stmt"/>
195
+ <line num="736" count="3" type="cond" truecount="1" falsecount="0"/>
196
+ <line num="737" count="2" type="cond" truecount="1" falsecount="0"/>
197
197
  <line num="743" count="1" type="stmt"/>
198
- <line num="755" count="2" type="stmt"/>
199
- <line num="758" count="3" type="cond" truecount="3" falsecount="0"/>
200
- <line num="759" count="2" type="stmt"/>
201
- <line num="762" count="1" type="stmt"/>
202
- <line num="790" count="2" type="stmt"/>
203
- <line num="792" count="2" type="stmt"/>
204
- <line num="793" count="13" type="cond" truecount="3" falsecount="0"/>
205
- <line num="794" count="12" type="stmt"/>
206
- <line num="797" count="1" type="stmt"/>
207
- <line num="800" count="2" type="stmt"/>
208
- <line num="801" count="2" type="stmt"/>
209
- <line num="802" count="2" type="stmt"/>
198
+ <line num="747" count="1" type="stmt"/>
199
+ <line num="756" count="1" type="stmt"/>
200
+ <line num="768" count="2" type="stmt"/>
201
+ <line num="771" count="3" type="cond" truecount="3" falsecount="0"/>
202
+ <line num="772" count="2" type="stmt"/>
203
+ <line num="775" count="1" type="stmt"/>
210
204
  <line num="803" count="2" type="stmt"/>
211
- <line num="804" count="2" type="stmt"/>
212
205
  <line num="805" count="2" type="stmt"/>
213
- <line num="811" count="2" type="stmt"/>
206
+ <line num="806" count="13" type="cond" truecount="3" falsecount="0"/>
207
+ <line num="807" count="12" type="stmt"/>
208
+ <line num="810" count="1" type="stmt"/>
209
+ <line num="813" count="2" type="stmt"/>
210
+ <line num="814" count="2" type="stmt"/>
211
+ <line num="815" count="2" type="stmt"/>
212
+ <line num="816" count="2" type="stmt"/>
213
+ <line num="817" count="2" type="stmt"/>
214
+ <line num="818" count="2" type="stmt"/>
215
+ <line num="824" count="2" type="stmt"/>
214
216
  </file>
215
217
  </package>
216
218
  <package name="src.modules">
217
- <metrics statements="136" coveredstatements="128" conditionals="55" coveredconditionals="54" methods="30" coveredmethods="24"/>
218
- <file name="android.ts" path="/home/runner/work/expo-iap/expo-iap/src/modules/android.ts">
219
- <metrics statements="45" coveredstatements="42" conditionals="22" coveredconditionals="21" methods="8" coveredmethods="5"/>
219
+ <metrics statements="142" coveredstatements="134" conditionals="55" coveredconditionals="54" methods="33" coveredmethods="27"/>
220
+ <file name="android.ts" path="/Users/crossplatformkorea/Github/hyochan/expo-iap/src/modules/android.ts">
221
+ <metrics statements="51" coveredstatements="48" conditionals="22" coveredconditionals="21" methods="11" coveredmethods="8"/>
220
222
  <line num="2" count="3" type="stmt"/>
221
223
  <line num="5" count="3" type="stmt"/>
222
- <line num="22" count="3" type="stmt"/>
223
- <line num="25" count="3" type="stmt"/>
224
- <line num="28" count="8" type="stmt"/>
225
- <line num="52" count="3" type="stmt"/>
226
- <line num="55" count="5" type="cond" truecount="2" falsecount="0"/>
227
- <line num="56" count="5" type="cond" truecount="2" falsecount="0"/>
228
- <line num="59" count="5" type="cond" truecount="1" falsecount="0"/>
229
- <line num="60" count="1" type="stmt"/>
230
- <line num="67" count="4" type="cond" truecount="1" falsecount="0"/>
231
- <line num="68" count="3" type="stmt"/>
232
- <line num="72" count="1" type="stmt"/>
233
- <line num="75" count="1" type="cond" truecount="1" falsecount="1"/>
224
+ <line num="26" count="3" type="stmt"/>
225
+ <line num="29" count="3" type="stmt"/>
226
+ <line num="32" count="8" type="stmt"/>
227
+ <line num="56" count="3" type="stmt"/>
228
+ <line num="59" count="5" type="cond" truecount="2" falsecount="0"/>
229
+ <line num="60" count="5" type="cond" truecount="2" falsecount="0"/>
230
+ <line num="63" count="5" type="cond" truecount="1" falsecount="0"/>
231
+ <line num="64" count="1" type="stmt"/>
232
+ <line num="71" count="4" type="cond" truecount="1" falsecount="0"/>
233
+ <line num="72" count="3" type="stmt"/>
234
234
  <line num="76" count="1" type="stmt"/>
235
- <line num="93" count="3" type="stmt"/>
236
- <line num="106" count="2" type="cond" truecount="2" falsecount="0"/>
237
- <line num="109" count="2" type="stmt"/>
235
+ <line num="79" count="1" type="cond" truecount="1" falsecount="1"/>
236
+ <line num="80" count="1" type="stmt"/>
237
+ <line num="97" count="3" type="stmt"/>
238
+ <line num="110" count="2" type="cond" truecount="2" falsecount="0"/>
238
239
  <line num="113" count="2" type="stmt"/>
239
- <line num="121" count="2" type="cond" truecount="1" falsecount="0"/>
240
- <line num="122" count="1" type="stmt"/>
241
- <line num="127" count="1" type="stmt"/>
242
- <line num="136" count="3" type="stmt"/>
243
- <line num="138" count="3" type="stmt"/>
244
- <line num="139" count="5" type="stmt"/>
245
- <line num="141" count="5" type="cond" truecount="1" falsecount="0"/>
246
- <line num="142" count="1" type="stmt"/>
247
- <line num="145" count="4" type="cond" truecount="3" falsecount="0"/>
248
- <line num="146" count="3" type="stmt"/>
249
- <line num="147" count="3" type="cond" truecount="1" falsecount="0"/>
250
- <line num="148" count="1" type="stmt"/>
251
- <line num="150" count="2" type="cond" truecount="1" falsecount="0"/>
252
- <line num="151" count="2" type="stmt"/>
253
- <line num="155" count="1" type="stmt"/>
254
- <line num="165" count="3" type="stmt"/>
255
- <line num="166" count="1" type="stmt"/>
256
- <line num="186" count="3" type="stmt"/>
257
- <line num="188" count="3" type="stmt"/>
258
- <line num="189" count="0" type="stmt"/>
259
- <line num="216" count="3" type="stmt"/>
260
- <line num="218" count="3" type="stmt"/>
261
- <line num="219" count="0" type="stmt"/>
262
- <line num="246" count="3" type="stmt"/>
263
- <line num="248" count="3" type="stmt"/>
264
- <line num="249" count="0" type="stmt"/>
240
+ <line num="117" count="2" type="stmt"/>
241
+ <line num="125" count="2" type="cond" truecount="1" falsecount="0"/>
242
+ <line num="126" count="1" type="stmt"/>
243
+ <line num="131" count="1" type="stmt"/>
244
+ <line num="140" count="3" type="stmt"/>
245
+ <line num="142" count="3" type="stmt"/>
246
+ <line num="143" count="5" type="stmt"/>
247
+ <line num="145" count="5" type="cond" truecount="1" falsecount="0"/>
248
+ <line num="146" count="1" type="stmt"/>
249
+ <line num="149" count="4" type="cond" truecount="3" falsecount="0"/>
250
+ <line num="150" count="3" type="stmt"/>
251
+ <line num="151" count="3" type="cond" truecount="1" falsecount="0"/>
252
+ <line num="152" count="1" type="stmt"/>
253
+ <line num="154" count="2" type="cond" truecount="1" falsecount="0"/>
254
+ <line num="155" count="2" type="stmt"/>
255
+ <line num="159" count="1" type="stmt"/>
256
+ <line num="169" count="3" type="stmt"/>
257
+ <line num="170" count="1" type="stmt"/>
258
+ <line num="190" count="3" type="stmt"/>
259
+ <line num="192" count="3" type="stmt"/>
260
+ <line num="193" count="0" type="stmt"/>
261
+ <line num="220" count="3" type="stmt"/>
262
+ <line num="222" count="3" type="stmt"/>
263
+ <line num="223" count="0" type="stmt"/>
264
+ <line num="250" count="3" type="stmt"/>
265
+ <line num="252" count="3" type="stmt"/>
266
+ <line num="253" count="0" type="stmt"/>
267
+ <line num="275" count="3" type="stmt"/>
268
+ <line num="278" count="4" type="stmt"/>
269
+ <line num="298" count="3" type="stmt"/>
270
+ <line num="301" count="5" type="stmt"/>
271
+ <line num="321" count="3" type="stmt"/>
272
+ <line num="324" count="3" type="stmt"/>
265
273
  </file>
266
- <file name="ios.ts" path="/home/runner/work/expo-iap/expo-iap/src/modules/ios.ts">
274
+ <file name="ios.ts" path="/Users/crossplatformkorea/Github/hyochan/expo-iap/src/modules/ios.ts">
267
275
  <metrics statements="91" coveredstatements="86" conditionals="33" coveredconditionals="33" methods="22" coveredmethods="19"/>
268
276
  <line num="5" count="3" type="stmt"/>
269
277
  <line num="21" count="3" type="stmt"/>
@@ -360,7 +368,7 @@
360
368
  </package>
361
369
  <package name="src.utils">
362
370
  <metrics statements="125" coveredstatements="111" conditionals="97" coveredconditionals="74" methods="24" coveredmethods="19"/>
363
- <file name="debug.ts" path="/home/runner/work/expo-iap/expo-iap/src/utils/debug.ts">
371
+ <file name="debug.ts" path="/Users/crossplatformkorea/Github/hyochan/expo-iap/src/utils/debug.ts">
364
372
  <metrics statements="16" coveredstatements="8" conditionals="9" coveredconditionals="4" methods="7" coveredmethods="4"/>
365
373
  <line num="9" count="2" type="stmt"/>
366
374
  <line num="14" count="9" type="cond" truecount="0" falsecount="1"/>
@@ -379,7 +387,7 @@
379
387
  <line num="59" count="0" type="stmt"/>
380
388
  <line num="66" count="2" type="stmt"/>
381
389
  </file>
382
- <file name="errorMapping.ts" path="/home/runner/work/expo-iap/expo-iap/src/utils/errorMapping.ts">
390
+ <file name="errorMapping.ts" path="/Users/crossplatformkorea/Github/hyochan/expo-iap/src/utils/errorMapping.ts">
383
391
  <metrics statements="109" coveredstatements="103" conditionals="88" coveredconditionals="70" methods="17" coveredmethods="15"/>
384
392
  <line num="7" count="4" type="stmt"/>
385
393
  <line num="8" count="4" type="stmt"/>