@plaidev/karte-action-sdk 1.1.208-28223142.6bbd2434 → 1.1.209-28223230.0a8e06d1
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/dist/hydrate/index.es.js +11 -6
- package/dist/index.es.js +11 -6
- package/package.json +1 -1
package/dist/hydrate/index.es.js
CHANGED
@@ -1991,21 +1991,26 @@ async function runScript$1(options = {
|
|
1991
1991
|
}) {
|
1992
1992
|
if (!options.onCreate)
|
1993
1993
|
return;
|
1994
|
-
|
1994
|
+
let data = {
|
1995
1995
|
...options.props,
|
1996
1996
|
...options.variables,
|
1997
1997
|
...getVariables(),
|
1998
1998
|
};
|
1999
|
-
const actionProps = {
|
2000
|
-
send: options.send,
|
2001
|
-
publish: options.publish,
|
2002
|
-
data,
|
2003
|
-
};
|
2004
1999
|
initialize({ send: options.send, initialState: data.initial_state });
|
2005
2000
|
initActionTable(options.localVariablesQuery);
|
2006
2001
|
const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key);
|
2007
2002
|
if (!success)
|
2008
2003
|
return;
|
2004
|
+
// Action Tableの取得結果を反映する
|
2005
|
+
data = {
|
2006
|
+
...data,
|
2007
|
+
...getVariables(),
|
2008
|
+
};
|
2009
|
+
const actionProps = {
|
2010
|
+
send: options.send,
|
2011
|
+
publish: options.publish,
|
2012
|
+
data,
|
2013
|
+
};
|
2009
2014
|
options.send('script_fired');
|
2010
2015
|
// 旧Widget API IFの処理
|
2011
2016
|
const { onCreateHandlers } = getInternalHandlers();
|
package/dist/index.es.js
CHANGED
@@ -2050,21 +2050,26 @@ async function runScript$1(options = {
|
|
2050
2050
|
}) {
|
2051
2051
|
if (!options.onCreate)
|
2052
2052
|
return;
|
2053
|
-
|
2053
|
+
let data = {
|
2054
2054
|
...options.props,
|
2055
2055
|
...options.variables,
|
2056
2056
|
...getVariables(),
|
2057
2057
|
};
|
2058
|
-
const actionProps = {
|
2059
|
-
send: options.send,
|
2060
|
-
publish: options.publish,
|
2061
|
-
data,
|
2062
|
-
};
|
2063
2058
|
initialize({ send: options.send, initialState: data.initial_state });
|
2064
2059
|
initActionTable(options.localVariablesQuery);
|
2065
2060
|
const { success } = await setupActionTable(options.localVariablesQuery, data, data.api_key);
|
2066
2061
|
if (!success)
|
2067
2062
|
return;
|
2063
|
+
// Action Tableの取得結果を反映する
|
2064
|
+
data = {
|
2065
|
+
...data,
|
2066
|
+
...getVariables(),
|
2067
|
+
};
|
2068
|
+
const actionProps = {
|
2069
|
+
send: options.send,
|
2070
|
+
publish: options.publish,
|
2071
|
+
data,
|
2072
|
+
};
|
2068
2073
|
options.send('script_fired');
|
2069
2074
|
// 旧Widget API IFの処理
|
2070
2075
|
const { onCreateHandlers } = getInternalHandlers();
|