@tivio/sdk-react 9.1.0-alpha.0 → 9.1.1
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 +7 -3
- package/README.md.bak +7 -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,12 @@ settings in the administration of Tivio Studio while having the freedom to build
|
|
|
6
6
|
|
|
7
7
|
## Changelog
|
|
8
8
|
|
|
9
|
-
* 9.1.
|
|
10
|
-
|
|
9
|
+
* 9.1.1
|
|
10
|
+
* patch: fix changelog
|
|
11
|
+
|
|
12
|
+
* 9.1.0
|
|
13
|
+
* patch: add gateway to Purchase type
|
|
14
|
+
* minor: add QerkoPaymentWebhookByApiKeyRequest to exported types
|
|
11
15
|
|
|
12
16
|
* 9.0.0
|
|
13
17
|
* patch: remove i18next and react-i18next from externals and dependencies
|
|
@@ -505,7 +509,7 @@ Gets array of row items objects of specific row and subscribes to its changes.
|
|
|
505
509
|
* @param options - subscription options
|
|
506
510
|
*/
|
|
507
511
|
useItemsInRow: (rowId: string, options?: SubscribeToItemsInRowOptions) => {
|
|
508
|
-
pagination: PaginationInterface<
|
|
512
|
+
pagination: PaginationInterface<ItemInRow> | null
|
|
509
513
|
error: Error | null
|
|
510
514
|
}
|
|
511
515
|
```
|
package/README.md.bak
CHANGED
|
@@ -6,8 +6,12 @@ settings in the administration of Tivio Studio while having the freedom to build
|
|
|
6
6
|
|
|
7
7
|
## Changelog
|
|
8
8
|
|
|
9
|
-
* 9.1.
|
|
10
|
-
|
|
9
|
+
* 9.1.1
|
|
10
|
+
* patch: fix changelog
|
|
11
|
+
|
|
12
|
+
* 9.1.0
|
|
13
|
+
* patch: add gateway to Purchase type
|
|
14
|
+
* minor: add QerkoPaymentWebhookByApiKeyRequest to exported types
|
|
11
15
|
|
|
12
16
|
* 9.0.0
|
|
13
17
|
* patch: remove i18next and react-i18next from externals and dependencies
|
|
@@ -505,7 +509,7 @@ Gets array of row items objects of specific row and subscribes to its changes.
|
|
|
505
509
|
* @param options - subscription options
|
|
506
510
|
*/
|
|
507
511
|
useItemsInRow: (rowId: string, options?: SubscribeToItemsInRowOptions) => {
|
|
508
|
-
pagination: PaginationInterface<
|
|
512
|
+
pagination: PaginationInterface<ItemInRow> | null
|
|
509
513
|
error: Error | null
|
|
510
514
|
}
|
|
511
515
|
```
|