@paydock/client-sdk 1.79.1-beta → 1.79.2

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 (3) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
  3. package/slate.md +3 -3
package/README.md CHANGED
@@ -2663,7 +2663,7 @@ list.load();
2663
2663
  ```javascript--es2015
2664
2664
  // ES2015 | TypeScript
2665
2665
 
2666
- import { HtmlPaymentSourceWidget } from '@paydock/client-sdk/widget';
2666
+ import { HtmlPaymentSourceWidget } from '@paydock/client-sdk/payment-source-widget';
2667
2667
 
2668
2668
  var list = new HtmlPaymentSourceWidget('#list', 'publicKey', 'queryToken');
2669
2669
  list.load();
@@ -2684,7 +2684,7 @@ Then write only need 2 lines of code in js to initialize widget
2684
2684
  </head>
2685
2685
  <body>
2686
2686
  <div id="list"></div>
2687
- <script src="https://app-sandbox.paydock.com/v1/widget.umd.js" ></script>
2687
+ <script src="https://widget.paydock.com/sdk/latest/widget.umd.js" ></script>
2688
2688
  <script>
2689
2689
  var list = new paydock.HtmlPaymentSourceWidget('#list', 'publicKey', 'queryToken');
2690
2690
  list.load();
@@ -2739,7 +2739,7 @@ This example shows how you can use a lot of other methods to settings your form
2739
2739
  <body>
2740
2740
  <div id="list"></div>
2741
2741
  <input type="text" name="ps_id" />
2742
- <script src="https://app-sandbox.paydock.com/v1/widget.umd.js" ></script>
2742
+ <script src="https://widget.paydock.com/sdk/latest/widget.umd.js" ></script>
2743
2743
  <script>
2744
2744
  var list = new paydock.HtmlPaymentSourceWidget('#list', 'publicKey', 'queryToken');
2745
2745
  list.filterByTypes(['card', 'checkout']);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@paydock/client-sdk",
3
3
  "description": "Paydock client sdk",
4
- "version": "1.79.1-beta",
4
+ "version": "1.79.2",
5
5
  "homepage": "https://paydock.com",
6
6
  "author": {},
7
7
  "bugs": {
package/slate.md CHANGED
@@ -265,7 +265,7 @@ list.load();
265
265
  ```javascript--es2015
266
266
  // ES2015 | TypeScript
267
267
 
268
- import { HtmlPaymentSourceWidget } from '@paydock/client-sdk/widget';
268
+ import { HtmlPaymentSourceWidget } from '@paydock/client-sdk/payment-source-widget';
269
269
 
270
270
  var list = new HtmlPaymentSourceWidget('#list', 'publicKey', 'queryToken');
271
271
  list.load();
@@ -286,7 +286,7 @@ Then write only need 2 lines of code in js to initialize widget
286
286
  </head>
287
287
  <body>
288
288
  <div id="list"></div>
289
- <script src="https://app-sandbox.paydock.com/v1/widget.umd.js" ></script>
289
+ <script src="https://widget.paydock.com/sdk/latest/widget.umd.js" ></script>
290
290
  <script>
291
291
  var list = new paydock.HtmlPaymentSourceWidget('#list', 'publicKey', 'queryToken');
292
292
  list.load();
@@ -341,7 +341,7 @@ This example shows how you can use a lot of other methods to settings your form
341
341
  <body>
342
342
  <div id="list"></div>
343
343
  <input type="text" name="ps_id" />
344
- <script src="https://app-sandbox.paydock.com/v1/widget.umd.js" ></script>
344
+ <script src="https://widget.paydock.com/sdk/latest/widget.umd.js" ></script>
345
345
  <script>
346
346
  var list = new paydock.HtmlPaymentSourceWidget('#list', 'publicKey', 'queryToken');
347
347
  list.filterByTypes(['card', 'checkout']);