tonder-web-sdk 1.12.0-beta.8 → 1.12.3

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.
package/webpack.config.js CHANGED
@@ -9,8 +9,19 @@ module.exports = (env, argv) => {
9
9
  const plugins = [
10
10
  new webpack.DefinePlugin({
11
11
  'process.env.BASE_URL': JSON.stringify(process.env.BASE_URL),
12
- })
12
+ }),
13
+ new webpack.IgnorePlugin({
14
+ resourceRegExp: /samples\//
15
+ }),
13
16
  ];
17
+
18
+ if (isProduction) {
19
+ plugins.push(
20
+ new webpack.IgnorePlugin({
21
+ resourceRegExp: /^@maskito\/core$/,
22
+ })
23
+ );
24
+ }
14
25
  if (!isProduction) {
15
26
  plugins.push(new HtmlWebpackPlugin({
16
27
  template: 'src/index.html'
package/.idea/aws.xml DELETED
@@ -1,17 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="accountSettings">
4
- <option name="activeProfile" value="profile:default" />
5
- <option name="activeRegion" value="us-east-1" />
6
- <option name="recentlyUsedProfiles">
7
- <list>
8
- <option value="profile:default" />
9
- </list>
10
- </option>
11
- <option name="recentlyUsedRegions">
12
- <list>
13
- <option value="us-east-1" />
14
- </list>
15
- </option>
16
- </component>
17
- </project>
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <settings>
3
- <option name="USE_PROJECT_PROFILE" value="false" />
4
- <version value="1.0" />
5
- </settings>
6
- </component>
package/.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12" project-jdk-type="Python SDK" />
4
- </project>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="PrettierConfiguration">
4
- <option name="myConfigurationMode" value="MANUAL" />
5
- </component>
6
- </project>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- </component>
6
- </project>
@@ -1,153 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="AutoImportSettings">
4
- <option name="autoReloadType" value="SELECTIVE" />
5
- </component>
6
- <component name="ChangeListManager">
7
- <list default="true" id="37fc62e5-7dd0-4a2e-b68c-304069cdf5bd" name="Changes" comment="">
8
- <change afterPath="$PROJECT_DIR$/src/shared/catalog/paymentMethodsCatalog.js" afterDir="false" />
9
- <change afterPath="$PROJECT_DIR$/types/card.ts" afterDir="false" />
10
- <change afterPath="$PROJECT_DIR$/types/checkout.ts" afterDir="false" />
11
- <change afterPath="$PROJECT_DIR$/types/common.ts" afterDir="false" />
12
- <change afterPath="$PROJECT_DIR$/types/customer.ts" afterDir="false" />
13
- <change afterPath="$PROJECT_DIR$/types/inlineCheckout.d.ts" afterDir="false" />
14
- <change afterPath="$PROJECT_DIR$/types/liteInlineCheckout.d.ts" afterDir="false" />
15
- <change afterPath="$PROJECT_DIR$/types/paymentMethod.ts" afterDir="false" />
16
- <change afterPath="$PROJECT_DIR$/types/transaction.ts" afterDir="false" />
17
- <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
18
- <change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" afterPath="$PROJECT_DIR$/package-lock.json" afterDir="false" />
19
- <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
20
- <change beforePath="$PROJECT_DIR$/src/classes/inlineCheckout.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/classes/inlineCheckout.js" afterDir="false" />
21
- <change beforePath="$PROJECT_DIR$/src/data/api.js" beforeDir="false" />
22
- <change beforePath="$PROJECT_DIR$/src/helpers/constants.js" beforeDir="false" />
23
- <change beforePath="$PROJECT_DIR$/src/helpers/skyflow.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/helpers/skyflow.js" afterDir="false" />
24
- <change beforePath="$PROJECT_DIR$/src/helpers/template.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/helpers/template.js" afterDir="false" />
25
- <change beforePath="$PROJECT_DIR$/src/helpers/utils.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/helpers/utils.js" afterDir="false" />
26
- <change beforePath="$PROJECT_DIR$/src/index-dev.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/index-dev.js" afterDir="false" />
27
- <change beforePath="$PROJECT_DIR$/src/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.html" afterDir="false" />
28
- <change beforePath="$PROJECT_DIR$/src/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.js" afterDir="false" />
29
- <change beforePath="$PROJECT_DIR$/v1/bundle.min.js" beforeDir="false" afterPath="$PROJECT_DIR$/v1/bundle.min.js" afterDir="false" />
30
- </list>
31
- <option name="SHOW_DIALOG" value="false" />
32
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
33
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
34
- <option name="LAST_RESOLUTION" value="IGNORE" />
35
- </component>
36
- <component name="FileTemplateManagerImpl">
37
- <option name="RECENT_TEMPLATES">
38
- <list>
39
- <option value="JavaScript File" />
40
- </list>
41
- </option>
42
- </component>
43
- <component name="Git.Settings">
44
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
45
- </component>
46
- <component name="MarkdownSettingsMigration">
47
- <option name="stateVersion" value="1" />
48
- </component>
49
- <component name="ProjectColorInfo">{
50
- &quot;customColor&quot;: &quot;&quot;,
51
- &quot;associatedIndex&quot;: 2
52
- }</component>
53
- <component name="ProjectId" id="2iy5RvaLleBBnn8yOfQNLpzKK66" />
54
- <component name="ProjectViewState">
55
- <option name="autoscrollFromSource" value="true" />
56
- <option name="autoscrollToSource" value="true" />
57
- <option name="hideEmptyMiddlePackages" value="true" />
58
- <option name="openDirectoriesWithSingleClick" value="true" />
59
- <option name="showLibraryContents" value="true" />
60
- </component>
61
- <component name="PropertiesComponent">{
62
- &quot;keyToString&quot;: {
63
- &quot;Node.js.index-dev.js.executor&quot;: &quot;Run&quot;,
64
- &quot;RunOnceActivity.OpenProjectViewOnStart&quot;: &quot;true&quot;,
65
- &quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
66
- &quot;SHARE_PROJECT_CONFIGURATION_FILES&quot;: &quot;true&quot;,
67
- &quot;git-widget-placeholder&quot;: &quot;develop&quot;,
68
- &quot;last_opened_file_path&quot;: &quot;/Users/davidhernandezalmagro/Desktop/Tonder/tonder-sdk/src/shared/constants&quot;,
69
- &quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
70
- &quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
71
- &quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
72
- &quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
73
- &quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
74
- &quot;prettierjs.PrettierConfiguration.Package&quot;: &quot;/Users/davidhernandezalmagro/Desktop/Tonder/tonder-sdk/node_modules/prettier&quot;,
75
- &quot;settings.editor.selected.configurable&quot;: &quot;settings.javascript.prettier&quot;,
76
- &quot;ts.external.directory.path&quot;: &quot;/Applications/WebStorm.app/Contents/plugins/javascript-impl/jsLanguageServicesImpl/external&quot;,
77
- &quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
78
- }
79
- }</component>
80
- <component name="RecentsManager">
81
- <key name="CopyFile.RECENT_KEYS">
82
- <recent name="$PROJECT_DIR$/src/shared/constants" />
83
- </key>
84
- <key name="MoveFile.RECENT_KEYS">
85
- <recent name="$PROJECT_DIR$/src/shared/constants" />
86
- <recent name="$PROJECT_DIR$/src/shared" />
87
- </key>
88
- </component>
89
- <component name="RunManager">
90
- <configuration name="index-dev.js" type="NodeJSConfigurationType" temporary="true" nameIsGenerated="true" path-to-js-file="$PROJECT_DIR$/src/index-dev.js" working-dir="$PROJECT_DIR$/src">
91
- <method v="2" />
92
- </configuration>
93
- <recent_temporary>
94
- <list>
95
- <item itemvalue="Node.js.index-dev.js" />
96
- </list>
97
- </recent_temporary>
98
- </component>
99
- <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
100
- <component name="TaskManager">
101
- <task active="true" id="Default" summary="Default task">
102
- <changelist id="37fc62e5-7dd0-4a2e-b68c-304069cdf5bd" name="Changes" comment="" />
103
- <created>1720449973301</created>
104
- <option name="number" value="Default" />
105
- <option name="presentableId" value="Default" />
106
- <updated>1720449973301</updated>
107
- <workItem from="1720449976262" duration="22000" />
108
- <workItem from="1723519348652" duration="9602000" />
109
- <workItem from="1723696656585" duration="1227000" />
110
- <workItem from="1723697920061" duration="3868000" />
111
- <workItem from="1723774667217" duration="11739000" />
112
- <workItem from="1723855727317" duration="20341000" />
113
- <workItem from="1723952592527" duration="17418000" />
114
- <workItem from="1724247675743" duration="32084000" />
115
- </task>
116
- <servers />
117
- </component>
118
- <component name="TypeScriptGeneratedFilesManager">
119
- <option name="version" value="3" />
120
- </component>
121
- <component name="Vcs.Log.Tabs.Properties">
122
- <option name="TAB_STATES">
123
- <map>
124
- <entry key="MAIN">
125
- <value>
126
- <State />
127
- </value>
128
- </entry>
129
- </map>
130
- </option>
131
- </component>
132
- <component name="XDebuggerManager">
133
- <breakpoint-manager>
134
- <breakpoints>
135
- <line-breakpoint enabled="true" type="javascript">
136
- <url>file://$PROJECT_DIR$/src/classes/inlineCheckout.js</url>
137
- <line>158</line>
138
- <option name="timeStamp" value="1" />
139
- </line-breakpoint>
140
- <line-breakpoint enabled="true" type="javascript">
141
- <url>file://$PROJECT_DIR$/src/shared/constants/paymentMethodAPM.js</url>
142
- <option name="timeStamp" value="15" />
143
- </line-breakpoint>
144
- <line-breakpoint enabled="true" type="javascript">
145
- <url>file://$PROJECT_DIR$/src/classes/inlineCheckout.js</url>
146
- <line>110</line>
147
- <properties lambdaOrdinal="-1" />
148
- <option name="timeStamp" value="17" />
149
- </line-breakpoint>
150
- </breakpoints>
151
- </breakpoint-manager>
152
- </component>
153
- </project>
File without changes
File without changes
File without changes