@parra/parra-js-sdk 0.3.616 → 0.3.618
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/ParraAPI.d.ts +8 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1700,6 +1700,8 @@ export interface CreateDigitalProductRequestBody {
|
|
1700
1700
|
description?: string | null;
|
1701
1701
|
icon_asset_id?: string | null;
|
1702
1702
|
image_asset_id?: string | null;
|
1703
|
+
cta_title?: string | null;
|
1704
|
+
cta_url?: string | null;
|
1703
1705
|
}
|
1704
1706
|
export interface CreateExternalProductRequestBody {
|
1705
1707
|
type: string;
|
@@ -1708,8 +1710,9 @@ export interface CreateExternalProductRequestBody {
|
|
1708
1710
|
description?: string | null;
|
1709
1711
|
icon_asset_id?: string | null;
|
1710
1712
|
image_asset_id?: string | null;
|
1711
|
-
|
1712
|
-
|
1713
|
+
price?: AnyPrice | null;
|
1714
|
+
cta_title: string | null;
|
1715
|
+
cta_url: string;
|
1713
1716
|
}
|
1714
1717
|
export type CreateProductRequestBody = CreateDigitalProductRequestBody | CreateExternalProductRequestBody;
|
1715
1718
|
export interface ProductEntitlement {
|
@@ -1751,6 +1754,9 @@ export interface UpdateProductRequestBody {
|
|
1751
1754
|
title?: string;
|
1752
1755
|
key?: string;
|
1753
1756
|
description?: string | null;
|
1757
|
+
disabled?: boolean;
|
1758
|
+
icon_asset_id?: string | null;
|
1759
|
+
image_asset_id?: string | null;
|
1754
1760
|
}
|
1755
1761
|
export interface CreateProductEntitlementRequestBody {
|
1756
1762
|
entitlement_id: string;
|