@getyetty-sdk/pennylane 2026.4.15 → 2026.4.16
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/index.d.mts +6 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2912,7 +2912,7 @@ type BillingSubscriptionsResponse = {
|
|
|
2912
2912
|
/**
|
|
2913
2913
|
* The subscription start date
|
|
2914
2914
|
*/
|
|
2915
|
-
start: string;
|
|
2915
|
+
start: string | null;
|
|
2916
2916
|
/**
|
|
2917
2917
|
* The date of the last occurrence of the subscription
|
|
2918
2918
|
*/
|
|
@@ -11706,7 +11706,7 @@ type GetBillingSubscriptionsResponses = {
|
|
|
11706
11706
|
/**
|
|
11707
11707
|
* The subscription start date
|
|
11708
11708
|
*/
|
|
11709
|
-
start: string;
|
|
11709
|
+
start: string | null;
|
|
11710
11710
|
/**
|
|
11711
11711
|
* The date of the last occurrence of the subscription
|
|
11712
11712
|
*/
|
|
@@ -12109,7 +12109,7 @@ type PostBillingSubscriptionsResponses = {
|
|
|
12109
12109
|
/**
|
|
12110
12110
|
* The subscription start date
|
|
12111
12111
|
*/
|
|
12112
|
-
start: string;
|
|
12112
|
+
start: string | null;
|
|
12113
12113
|
/**
|
|
12114
12114
|
* The date of the last occurrence of the subscription
|
|
12115
12115
|
*/
|
|
@@ -12349,7 +12349,7 @@ type GetBillingSubscriptionResponses = {
|
|
|
12349
12349
|
/**
|
|
12350
12350
|
* The subscription start date
|
|
12351
12351
|
*/
|
|
12352
|
-
start: string;
|
|
12352
|
+
start: string | null;
|
|
12353
12353
|
/**
|
|
12354
12354
|
* The date of the last occurrence of the subscription
|
|
12355
12355
|
*/
|
|
@@ -12877,7 +12877,7 @@ type PutBillingSubscriptionsResponses = {
|
|
|
12877
12877
|
/**
|
|
12878
12878
|
* The subscription start date
|
|
12879
12879
|
*/
|
|
12880
|
-
start: string;
|
|
12880
|
+
start: string | null;
|
|
12881
12881
|
/**
|
|
12882
12882
|
* The date of the last occurrence of the subscription
|
|
12883
12883
|
*/
|
|
@@ -35226,6 +35226,7 @@ declare const BillingSubscriptions__ResponseSchema: {
|
|
|
35226
35226
|
readonly description: "The subscription start date";
|
|
35227
35227
|
readonly type: "string";
|
|
35228
35228
|
readonly format: "date";
|
|
35229
|
+
readonly nullable: true;
|
|
35229
35230
|
readonly example: "2023-01-01";
|
|
35230
35231
|
};
|
|
35231
35232
|
readonly finish: {
|