@plaidev/karte-action-sdk 1.1.222 → 1.1.224-28341417.bf1b2188
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.d.ts +10 -22
- package/dist/hydrate/index.es.js +148 -129
- package/dist/index.es.d.ts +10 -22
- package/dist/index.es.js +148 -129
- package/package.json +10 -10
package/dist/index.es.d.ts
CHANGED
@@ -192,25 +192,19 @@ type ActionTableQueryParams = {
|
|
192
192
|
/**
|
193
193
|
* アクションテーブルの設定情報
|
194
194
|
*
|
195
|
-
* @
|
195
|
+
* @param api_key - API Key
|
196
|
+
* @param table - テーブル名
|
197
|
+
* @param endpoint - エンドポイント / 指定がない場合はデフォルトのエンドポイントを使用します。検証用途以外での通常利用では指定なしで大丈夫です。
|
196
198
|
*/
|
197
199
|
type CollectionConfig = {
|
198
|
-
/**
|
199
|
-
* APIキー
|
200
|
-
*/
|
201
200
|
api_key: string;
|
202
|
-
/**
|
203
|
-
* テーブル名
|
204
|
-
*/
|
205
201
|
table: string;
|
206
|
-
|
207
|
-
* エンドポイント
|
208
|
-
*/ endpoint?: string;
|
202
|
+
endpoint?: string;
|
209
203
|
};
|
210
204
|
/**
|
211
205
|
* アクションテーブルを管理するメソッドを取得する
|
212
206
|
*
|
213
|
-
* @param config -
|
207
|
+
* @param config - アクションテーブル設定情報
|
214
208
|
*
|
215
209
|
* @returns メソッドを返します
|
216
210
|
*
|
@@ -1761,25 +1755,19 @@ declare namespace widget {
|
|
1761
1755
|
/**
|
1762
1756
|
* アクションテーブルの設定情報
|
1763
1757
|
*
|
1764
|
-
* @
|
1758
|
+
* @param api_key - API Key
|
1759
|
+
* @param table - テーブル名
|
1760
|
+
* @param endpoint - エンドポイント / 指定がない場合はデフォルトのエンドポイントを使用します。検証用途以外での通常利用では指定なしで大丈夫です。
|
1765
1761
|
*/
|
1766
1762
|
type CollectionConfig = {
|
1767
|
-
/**
|
1768
|
-
* APIキー
|
1769
|
-
*/
|
1770
1763
|
api_key: string;
|
1771
|
-
/**
|
1772
|
-
* テーブル名
|
1773
|
-
*/
|
1774
1764
|
table: string;
|
1775
|
-
|
1776
|
-
* エンドポイント
|
1777
|
-
*/ endpoint?: string;
|
1765
|
+
endpoint?: string;
|
1778
1766
|
};
|
1779
1767
|
/**
|
1780
1768
|
* アクションテーブルを管理するメソッドを取得する
|
1781
1769
|
*
|
1782
|
-
* @param config -
|
1770
|
+
* @param config - アクションテーブル設定情報
|
1783
1771
|
*
|
1784
1772
|
* @returns メソッドを返します
|
1785
1773
|
*
|