@waffo/pancake-ts 0.10.0 → 0.11.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/CHANGELOG.md +24 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -537,9 +537,9 @@ interface CreateOnetimeProductParams {
|
|
|
537
537
|
storeId: string;
|
|
538
538
|
name: string;
|
|
539
539
|
prices: Prices;
|
|
540
|
-
description?: string;
|
|
540
|
+
description?: string | null;
|
|
541
541
|
media?: MediaItem[];
|
|
542
|
-
successUrl?: string;
|
|
542
|
+
successUrl?: string | null;
|
|
543
543
|
metadata?: Record<string, unknown>;
|
|
544
544
|
}
|
|
545
545
|
/**
|
|
@@ -550,9 +550,9 @@ interface UpdateOnetimeProductParams {
|
|
|
550
550
|
id: string;
|
|
551
551
|
name?: string;
|
|
552
552
|
prices?: Prices;
|
|
553
|
-
description?: string;
|
|
553
|
+
description?: string | null;
|
|
554
554
|
media?: MediaItem[];
|
|
555
|
-
successUrl?: string;
|
|
555
|
+
successUrl?: string | null;
|
|
556
556
|
metadata?: Record<string, unknown>;
|
|
557
557
|
}
|
|
558
558
|
/** Parameters for publishing a one-time product's test version to production. */
|
|
@@ -595,9 +595,9 @@ interface CreateSubscriptionProductParams {
|
|
|
595
595
|
name: string;
|
|
596
596
|
billingPeriod: BillingPeriod;
|
|
597
597
|
prices: Prices;
|
|
598
|
-
description?: string;
|
|
598
|
+
description?: string | null;
|
|
599
599
|
media?: MediaItem[];
|
|
600
|
-
successUrl?: string;
|
|
600
|
+
successUrl?: string | null;
|
|
601
601
|
metadata?: Record<string, unknown>;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
@@ -609,9 +609,9 @@ interface UpdateSubscriptionProductParams {
|
|
|
609
609
|
name?: string;
|
|
610
610
|
billingPeriod?: BillingPeriod;
|
|
611
611
|
prices?: Prices;
|
|
612
|
-
description?: string;
|
|
612
|
+
description?: string | null;
|
|
613
613
|
media?: MediaItem[];
|
|
614
|
-
successUrl?: string;
|
|
614
|
+
successUrl?: string | null;
|
|
615
615
|
metadata?: Record<string, unknown>;
|
|
616
616
|
}
|
|
617
617
|
/** Parameters for publishing a subscription product's test version to production. */
|
package/dist/index.d.ts
CHANGED
|
@@ -537,9 +537,9 @@ interface CreateOnetimeProductParams {
|
|
|
537
537
|
storeId: string;
|
|
538
538
|
name: string;
|
|
539
539
|
prices: Prices;
|
|
540
|
-
description?: string;
|
|
540
|
+
description?: string | null;
|
|
541
541
|
media?: MediaItem[];
|
|
542
|
-
successUrl?: string;
|
|
542
|
+
successUrl?: string | null;
|
|
543
543
|
metadata?: Record<string, unknown>;
|
|
544
544
|
}
|
|
545
545
|
/**
|
|
@@ -550,9 +550,9 @@ interface UpdateOnetimeProductParams {
|
|
|
550
550
|
id: string;
|
|
551
551
|
name?: string;
|
|
552
552
|
prices?: Prices;
|
|
553
|
-
description?: string;
|
|
553
|
+
description?: string | null;
|
|
554
554
|
media?: MediaItem[];
|
|
555
|
-
successUrl?: string;
|
|
555
|
+
successUrl?: string | null;
|
|
556
556
|
metadata?: Record<string, unknown>;
|
|
557
557
|
}
|
|
558
558
|
/** Parameters for publishing a one-time product's test version to production. */
|
|
@@ -595,9 +595,9 @@ interface CreateSubscriptionProductParams {
|
|
|
595
595
|
name: string;
|
|
596
596
|
billingPeriod: BillingPeriod;
|
|
597
597
|
prices: Prices;
|
|
598
|
-
description?: string;
|
|
598
|
+
description?: string | null;
|
|
599
599
|
media?: MediaItem[];
|
|
600
|
-
successUrl?: string;
|
|
600
|
+
successUrl?: string | null;
|
|
601
601
|
metadata?: Record<string, unknown>;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
@@ -609,9 +609,9 @@ interface UpdateSubscriptionProductParams {
|
|
|
609
609
|
name?: string;
|
|
610
610
|
billingPeriod?: BillingPeriod;
|
|
611
611
|
prices?: Prices;
|
|
612
|
-
description?: string;
|
|
612
|
+
description?: string | null;
|
|
613
613
|
media?: MediaItem[];
|
|
614
|
-
successUrl?: string;
|
|
614
|
+
successUrl?: string | null;
|
|
615
615
|
metadata?: Record<string, unknown>;
|
|
616
616
|
}
|
|
617
617
|
/** Parameters for publishing a subscription product's test version to production. */
|