@tivio/sdk-react 9.0.0 → 9.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +6 -1
- package/README.md.bak +6 -1
- package/dist/index.d.ts +1230 -151
- package/dist/index.js +1 -1
- package/dist/sdk-react.d.ts +1292 -167
- package/package.json +4 -4
package/README.md
CHANGED
@@ -6,6 +6,11 @@ settings in the administration of Tivio Studio while having the freedom to build
|
|
6
6
|
|
7
7
|
## Changelog
|
8
8
|
|
9
|
+
* 9.1.0
|
10
|
+
* minor: revert add originalPurchaseId to PurchaseEndpointPayload
|
11
|
+
* patch: add gateway to Purchase type
|
12
|
+
* minor: add QerkoPaymentWebhookByApiKeyRequest to exported types
|
13
|
+
|
9
14
|
* 9.0.0
|
10
15
|
* patch: remove i18next and react-i18next from externals and dependencies
|
11
16
|
* patch: do not send react-spring to core-react-dom bundle, remove react-spring from dependencies
|
@@ -502,7 +507,7 @@ Gets array of row items objects of specific row and subscribes to its changes.
|
|
502
507
|
* @param options - subscription options
|
503
508
|
*/
|
504
509
|
useItemsInRow: (rowId: string, options?: SubscribeToItemsInRowOptions) => {
|
505
|
-
pagination: PaginationInterface<
|
510
|
+
pagination: PaginationInterface<ItemInRow> | null
|
506
511
|
error: Error | null
|
507
512
|
}
|
508
513
|
```
|
package/README.md.bak
CHANGED
@@ -6,6 +6,11 @@ settings in the administration of Tivio Studio while having the freedom to build
|
|
6
6
|
|
7
7
|
## Changelog
|
8
8
|
|
9
|
+
* 9.1.0
|
10
|
+
* minor: revert add originalPurchaseId to PurchaseEndpointPayload
|
11
|
+
* patch: add gateway to Purchase type
|
12
|
+
* minor: add QerkoPaymentWebhookByApiKeyRequest to exported types
|
13
|
+
|
9
14
|
* 9.0.0
|
10
15
|
* patch: remove i18next and react-i18next from externals and dependencies
|
11
16
|
* patch: do not send react-spring to core-react-dom bundle, remove react-spring from dependencies
|
@@ -502,7 +507,7 @@ Gets array of row items objects of specific row and subscribes to its changes.
|
|
502
507
|
* @param options - subscription options
|
503
508
|
*/
|
504
509
|
useItemsInRow: (rowId: string, options?: SubscribeToItemsInRowOptions) => {
|
505
|
-
pagination: PaginationInterface<
|
510
|
+
pagination: PaginationInterface<ItemInRow> | null
|
506
511
|
error: Error | null
|
507
512
|
}
|
508
513
|
```
|