@tivio/sdk-react 9.1.0-alpha.0 → 9.1.0
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/README.md +5 -3
- package/README.md.bak +5 -3
- package/dist/index.d.ts +1231 -160
- package/dist/index.js +1 -1
- package/dist/sdk-react.d.ts +1304 -187
- package/package.json +4 -4
package/README.md
CHANGED
@@ -6,8 +6,10 @@ 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: add
|
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
|
11
13
|
|
12
14
|
* 9.0.0
|
13
15
|
* patch: remove i18next and react-i18next from externals and dependencies
|
@@ -505,7 +507,7 @@ Gets array of row items objects of specific row and subscribes to its changes.
|
|
505
507
|
* @param options - subscription options
|
506
508
|
*/
|
507
509
|
useItemsInRow: (rowId: string, options?: SubscribeToItemsInRowOptions) => {
|
508
|
-
pagination: PaginationInterface<
|
510
|
+
pagination: PaginationInterface<ItemInRow> | null
|
509
511
|
error: Error | null
|
510
512
|
}
|
511
513
|
```
|
package/README.md.bak
CHANGED
@@ -6,8 +6,10 @@ 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: add
|
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
|
11
13
|
|
12
14
|
* 9.0.0
|
13
15
|
* patch: remove i18next and react-i18next from externals and dependencies
|
@@ -505,7 +507,7 @@ Gets array of row items objects of specific row and subscribes to its changes.
|
|
505
507
|
* @param options - subscription options
|
506
508
|
*/
|
507
509
|
useItemsInRow: (rowId: string, options?: SubscribeToItemsInRowOptions) => {
|
508
|
-
pagination: PaginationInterface<
|
510
|
+
pagination: PaginationInterface<ItemInRow> | null
|
509
511
|
error: Error | null
|
510
512
|
}
|
511
513
|
```
|