@parra/parra-js-sdk 0.3.509 → 0.3.511
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 +15 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1433,8 +1433,23 @@ export interface MarketingContentOfferingSection {
|
|
1433
1433
|
type: string;
|
1434
1434
|
offerings: Array<MarketingContentOffering>;
|
1435
1435
|
}
|
1436
|
+
export type AnyPrice = Price | UnitPrice;
|
1437
|
+
export interface ProductFeatureStub {
|
1438
|
+
id: string;
|
1439
|
+
title: string;
|
1440
|
+
}
|
1441
|
+
export interface PricingTableItemCta {
|
1442
|
+
label?: string;
|
1443
|
+
url?: string;
|
1444
|
+
}
|
1436
1445
|
export interface PricingTableItem {
|
1437
1446
|
id: string;
|
1447
|
+
title: string;
|
1448
|
+
description?: string;
|
1449
|
+
price?: AnyPrice;
|
1450
|
+
icon?: ImageAssetStub | null;
|
1451
|
+
features?: Array<ProductFeatureStub>;
|
1452
|
+
cta?: PricingTableItemCta | null;
|
1438
1453
|
}
|
1439
1454
|
export interface PricingTable {
|
1440
1455
|
id: string;
|