atmn 2.0.0 → 2.0.2
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/bin.js +242 -26
- package/dist/index.js +40 -0
- package/package.json +3 -2
- package/src/generated/apiRoutes.ts +164 -14
- package/src/generated/client.ts +1015 -0
- package/src/generated/emit.ts +25 -0
- package/src/generated/licenses.ts +5 -0
- package/src/generated/lintRules.ts +40 -0
- package/src/generated/plans.ts +27 -2
- package/src/generated/skills.ts +11 -11
- package/src/generated/variants.ts +16 -1
package/src/generated/client.ts
CHANGED
|
@@ -199,6 +199,12 @@ quantity?: number;
|
|
|
199
199
|
}>;
|
|
200
200
|
} | null;
|
|
201
201
|
} | null;
|
|
202
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
203
|
+
baseVariantId?: string | null;
|
|
204
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
205
|
+
baseVersion?: number | null;
|
|
206
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
207
|
+
baseVersionSlug?: string | null;
|
|
202
208
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
203
209
|
freeTrial?: {
|
|
204
210
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -490,6 +496,11 @@ expiryDurationType: "month" | "forever";
|
|
|
490
496
|
/** Number of periods before expiry. */
|
|
491
497
|
expiryDurationLength?: number;
|
|
492
498
|
};
|
|
499
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
500
|
+
expiry?: {
|
|
501
|
+
duration: "day" | "week" | "month" | "year";
|
|
502
|
+
length: number;
|
|
503
|
+
} | null;
|
|
493
504
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
494
505
|
featureOverride?: {
|
|
495
506
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -687,6 +698,11 @@ expiryDurationType: "month" | "forever";
|
|
|
687
698
|
/** Number of periods before expiry. */
|
|
688
699
|
expiryDurationLength?: number;
|
|
689
700
|
};
|
|
701
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
702
|
+
expiry?: {
|
|
703
|
+
duration: "day" | "week" | "month" | "year";
|
|
704
|
+
length: number;
|
|
705
|
+
};
|
|
690
706
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
691
707
|
featureOverride?: {
|
|
692
708
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -993,6 +1009,11 @@ expiryDurationType: "month" | "forever";
|
|
|
993
1009
|
/** Number of periods before expiry. */
|
|
994
1010
|
expiryDurationLength?: number;
|
|
995
1011
|
};
|
|
1012
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
1013
|
+
expiry?: {
|
|
1014
|
+
duration: "day" | "week" | "month" | "year";
|
|
1015
|
+
length: number;
|
|
1016
|
+
};
|
|
996
1017
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
997
1018
|
featureOverride?: {
|
|
998
1019
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -1219,6 +1240,11 @@ expiryDurationType: "month" | "forever";
|
|
|
1219
1240
|
/** Number of periods before expiry. */
|
|
1220
1241
|
expiryDurationLength?: number;
|
|
1221
1242
|
};
|
|
1243
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
1244
|
+
expiry?: {
|
|
1245
|
+
duration: "day" | "week" | "month" | "year";
|
|
1246
|
+
length: number;
|
|
1247
|
+
};
|
|
1222
1248
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
1223
1249
|
featureOverride?: {
|
|
1224
1250
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -1391,6 +1417,12 @@ quantity?: number;
|
|
|
1391
1417
|
}>;
|
|
1392
1418
|
} | null;
|
|
1393
1419
|
} | null;
|
|
1420
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
1421
|
+
baseVariantId?: string | null;
|
|
1422
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
1423
|
+
baseVersion?: number | null;
|
|
1424
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
1425
|
+
baseVersionSlug?: string | null;
|
|
1394
1426
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
1395
1427
|
freeTrial?: {
|
|
1396
1428
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -1682,6 +1714,11 @@ expiryDurationType: "month" | "forever";
|
|
|
1682
1714
|
/** Number of periods before expiry. */
|
|
1683
1715
|
expiryDurationLength?: number;
|
|
1684
1716
|
};
|
|
1717
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
1718
|
+
expiry?: {
|
|
1719
|
+
duration: "day" | "week" | "month" | "year";
|
|
1720
|
+
length: number;
|
|
1721
|
+
} | null;
|
|
1685
1722
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
1686
1723
|
featureOverride?: {
|
|
1687
1724
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -1879,6 +1916,11 @@ expiryDurationType: "month" | "forever";
|
|
|
1879
1916
|
/** Number of periods before expiry. */
|
|
1880
1917
|
expiryDurationLength?: number;
|
|
1881
1918
|
};
|
|
1919
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
1920
|
+
expiry?: {
|
|
1921
|
+
duration: "day" | "week" | "month" | "year";
|
|
1922
|
+
length: number;
|
|
1923
|
+
};
|
|
1882
1924
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
1883
1925
|
featureOverride?: {
|
|
1884
1926
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -2185,6 +2227,11 @@ expiryDurationType: "month" | "forever";
|
|
|
2185
2227
|
/** Number of periods before expiry. */
|
|
2186
2228
|
expiryDurationLength?: number;
|
|
2187
2229
|
};
|
|
2230
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
2231
|
+
expiry?: {
|
|
2232
|
+
duration: "day" | "week" | "month" | "year";
|
|
2233
|
+
length: number;
|
|
2234
|
+
};
|
|
2188
2235
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
2189
2236
|
featureOverride?: {
|
|
2190
2237
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -2418,6 +2465,12 @@ quantity?: number;
|
|
|
2418
2465
|
}>;
|
|
2419
2466
|
} | null;
|
|
2420
2467
|
} | null;
|
|
2468
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
2469
|
+
baseVariantId?: string | null;
|
|
2470
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
2471
|
+
baseVersion?: number | null;
|
|
2472
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
2473
|
+
baseVersionSlug?: string | null;
|
|
2421
2474
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
2422
2475
|
freeTrial?: {
|
|
2423
2476
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -2709,6 +2762,11 @@ expiryDurationType: "month" | "forever";
|
|
|
2709
2762
|
/** Number of periods before expiry. */
|
|
2710
2763
|
expiryDurationLength?: number;
|
|
2711
2764
|
};
|
|
2765
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
2766
|
+
expiry?: {
|
|
2767
|
+
duration: "day" | "week" | "month" | "year";
|
|
2768
|
+
length: number;
|
|
2769
|
+
} | null;
|
|
2712
2770
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
2713
2771
|
featureOverride?: {
|
|
2714
2772
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -2906,6 +2964,11 @@ expiryDurationType: "month" | "forever";
|
|
|
2906
2964
|
/** Number of periods before expiry. */
|
|
2907
2965
|
expiryDurationLength?: number;
|
|
2908
2966
|
};
|
|
2967
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
2968
|
+
expiry?: {
|
|
2969
|
+
duration: "day" | "week" | "month" | "year";
|
|
2970
|
+
length: number;
|
|
2971
|
+
};
|
|
2909
2972
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
2910
2973
|
featureOverride?: {
|
|
2911
2974
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -3212,6 +3275,11 @@ expiryDurationType: "month" | "forever";
|
|
|
3212
3275
|
/** Number of periods before expiry. */
|
|
3213
3276
|
expiryDurationLength?: number;
|
|
3214
3277
|
};
|
|
3278
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
3279
|
+
expiry?: {
|
|
3280
|
+
duration: "day" | "week" | "month" | "year";
|
|
3281
|
+
length: number;
|
|
3282
|
+
};
|
|
3215
3283
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
3216
3284
|
featureOverride?: {
|
|
3217
3285
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -3434,6 +3502,11 @@ expiryDurationType: "month" | "forever";
|
|
|
3434
3502
|
/** Number of periods before expiry. */
|
|
3435
3503
|
expiryDurationLength?: number;
|
|
3436
3504
|
};
|
|
3505
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
3506
|
+
expiry?: {
|
|
3507
|
+
duration: "day" | "week" | "month" | "year";
|
|
3508
|
+
length: number;
|
|
3509
|
+
};
|
|
3437
3510
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
3438
3511
|
featureOverride?: {
|
|
3439
3512
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -3606,6 +3679,12 @@ quantity?: number;
|
|
|
3606
3679
|
}>;
|
|
3607
3680
|
} | null;
|
|
3608
3681
|
} | null;
|
|
3682
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
3683
|
+
baseVariantId?: string | null;
|
|
3684
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
3685
|
+
baseVersion?: number | null;
|
|
3686
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
3687
|
+
baseVersionSlug?: string | null;
|
|
3609
3688
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
3610
3689
|
freeTrial?: {
|
|
3611
3690
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -3897,6 +3976,11 @@ expiryDurationType: "month" | "forever";
|
|
|
3897
3976
|
/** Number of periods before expiry. */
|
|
3898
3977
|
expiryDurationLength?: number;
|
|
3899
3978
|
};
|
|
3979
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
3980
|
+
expiry?: {
|
|
3981
|
+
duration: "day" | "week" | "month" | "year";
|
|
3982
|
+
length: number;
|
|
3983
|
+
} | null;
|
|
3900
3984
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
3901
3985
|
featureOverride?: {
|
|
3902
3986
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -4090,6 +4174,11 @@ expiryDurationType: "month" | "forever";
|
|
|
4090
4174
|
/** Number of periods before expiry. */
|
|
4091
4175
|
expiryDurationLength?: number;
|
|
4092
4176
|
};
|
|
4177
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
4178
|
+
expiry?: {
|
|
4179
|
+
duration: "day" | "week" | "month" | "year";
|
|
4180
|
+
length: number;
|
|
4181
|
+
};
|
|
4093
4182
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
4094
4183
|
featureOverride?: {
|
|
4095
4184
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -4392,6 +4481,11 @@ expiryDurationType: "month" | "forever";
|
|
|
4392
4481
|
/** Number of periods before expiry. */
|
|
4393
4482
|
expiryDurationLength?: number;
|
|
4394
4483
|
};
|
|
4484
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
4485
|
+
expiry?: {
|
|
4486
|
+
duration: "day" | "week" | "month" | "year";
|
|
4487
|
+
length: number;
|
|
4488
|
+
};
|
|
4395
4489
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
4396
4490
|
featureOverride?: {
|
|
4397
4491
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -4599,6 +4693,12 @@ quantity?: number;
|
|
|
4599
4693
|
}>;
|
|
4600
4694
|
} | null;
|
|
4601
4695
|
} | null;
|
|
4696
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
4697
|
+
baseVariantId?: string | null;
|
|
4698
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
4699
|
+
baseVersion?: number | null;
|
|
4700
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
4701
|
+
baseVersionSlug?: string | null;
|
|
4602
4702
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
4603
4703
|
freeTrial?: {
|
|
4604
4704
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -4890,6 +4990,11 @@ expiryDurationType: "month" | "forever";
|
|
|
4890
4990
|
/** Number of periods before expiry. */
|
|
4891
4991
|
expiryDurationLength?: number;
|
|
4892
4992
|
};
|
|
4993
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
4994
|
+
expiry?: {
|
|
4995
|
+
duration: "day" | "week" | "month" | "year";
|
|
4996
|
+
length: number;
|
|
4997
|
+
} | null;
|
|
4893
4998
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
4894
4999
|
featureOverride?: {
|
|
4895
5000
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -5087,6 +5192,11 @@ expiryDurationType: "month" | "forever";
|
|
|
5087
5192
|
/** Number of periods before expiry. */
|
|
5088
5193
|
expiryDurationLength?: number;
|
|
5089
5194
|
};
|
|
5195
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
5196
|
+
expiry?: {
|
|
5197
|
+
duration: "day" | "week" | "month" | "year";
|
|
5198
|
+
length: number;
|
|
5199
|
+
};
|
|
5090
5200
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
5091
5201
|
featureOverride?: {
|
|
5092
5202
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -5393,6 +5503,11 @@ expiryDurationType: "month" | "forever";
|
|
|
5393
5503
|
/** Number of periods before expiry. */
|
|
5394
5504
|
expiryDurationLength?: number;
|
|
5395
5505
|
};
|
|
5506
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
5507
|
+
expiry?: {
|
|
5508
|
+
duration: "day" | "week" | "month" | "year";
|
|
5509
|
+
length: number;
|
|
5510
|
+
};
|
|
5396
5511
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
5397
5512
|
featureOverride?: {
|
|
5398
5513
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -5599,6 +5714,11 @@ expiryDurationType: "month" | "forever";
|
|
|
5599
5714
|
/** Number of periods before expiry. */
|
|
5600
5715
|
expiryDurationLength?: number;
|
|
5601
5716
|
};
|
|
5717
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
5718
|
+
expiry?: {
|
|
5719
|
+
duration: "day" | "week" | "month" | "year";
|
|
5720
|
+
length: number;
|
|
5721
|
+
};
|
|
5602
5722
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
5603
5723
|
featureOverride?: {
|
|
5604
5724
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -5761,6 +5881,12 @@ quantity?: number;
|
|
|
5761
5881
|
}>;
|
|
5762
5882
|
} | null;
|
|
5763
5883
|
} | null;
|
|
5884
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
5885
|
+
baseVariantId?: string | null;
|
|
5886
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
5887
|
+
baseVersion?: number | null;
|
|
5888
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
5889
|
+
baseVersionSlug?: string | null;
|
|
5764
5890
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
5765
5891
|
freeTrial?: {
|
|
5766
5892
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -6052,6 +6178,11 @@ expiryDurationType: "month" | "forever";
|
|
|
6052
6178
|
/** Number of periods before expiry. */
|
|
6053
6179
|
expiryDurationLength?: number;
|
|
6054
6180
|
};
|
|
6181
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
6182
|
+
expiry?: {
|
|
6183
|
+
duration: "day" | "week" | "month" | "year";
|
|
6184
|
+
length: number;
|
|
6185
|
+
} | null;
|
|
6055
6186
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
6056
6187
|
featureOverride?: {
|
|
6057
6188
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -6229,6 +6360,11 @@ expiryDurationType: "month" | "forever";
|
|
|
6229
6360
|
/** Number of periods before expiry. */
|
|
6230
6361
|
expiryDurationLength?: number;
|
|
6231
6362
|
};
|
|
6363
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
6364
|
+
expiry?: {
|
|
6365
|
+
duration: "day" | "week" | "month" | "year";
|
|
6366
|
+
length: number;
|
|
6367
|
+
};
|
|
6232
6368
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
6233
6369
|
featureOverride?: {
|
|
6234
6370
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -6508,6 +6644,11 @@ expiryDurationType: "month" | "forever";
|
|
|
6508
6644
|
/** Number of periods before expiry. */
|
|
6509
6645
|
expiryDurationLength?: number;
|
|
6510
6646
|
};
|
|
6647
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
6648
|
+
expiry?: {
|
|
6649
|
+
duration: "day" | "week" | "month" | "year";
|
|
6650
|
+
length: number;
|
|
6651
|
+
};
|
|
6511
6652
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
6512
6653
|
featureOverride?: {
|
|
6513
6654
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -6709,6 +6850,12 @@ quantity?: number;
|
|
|
6709
6850
|
}>;
|
|
6710
6851
|
} | null;
|
|
6711
6852
|
} | null;
|
|
6853
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
6854
|
+
baseVariantId?: string | null;
|
|
6855
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
6856
|
+
baseVersion?: number | null;
|
|
6857
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
6858
|
+
baseVersionSlug?: string | null;
|
|
6712
6859
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
6713
6860
|
freeTrial?: {
|
|
6714
6861
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -7000,6 +7147,11 @@ expiryDurationType: "month" | "forever";
|
|
|
7000
7147
|
/** Number of periods before expiry. */
|
|
7001
7148
|
expiryDurationLength?: number;
|
|
7002
7149
|
};
|
|
7150
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
7151
|
+
expiry?: {
|
|
7152
|
+
duration: "day" | "week" | "month" | "year";
|
|
7153
|
+
length: number;
|
|
7154
|
+
} | null;
|
|
7003
7155
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
7004
7156
|
featureOverride?: {
|
|
7005
7157
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -7187,6 +7339,11 @@ expiryDurationType: "month" | "forever";
|
|
|
7187
7339
|
/** Number of periods before expiry. */
|
|
7188
7340
|
expiryDurationLength?: number;
|
|
7189
7341
|
};
|
|
7342
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
7343
|
+
expiry?: {
|
|
7344
|
+
duration: "day" | "week" | "month" | "year";
|
|
7345
|
+
length: number;
|
|
7346
|
+
};
|
|
7190
7347
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
7191
7348
|
featureOverride?: {
|
|
7192
7349
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -7480,6 +7637,11 @@ expiryDurationType: "month" | "forever";
|
|
|
7480
7637
|
/** Number of periods before expiry. */
|
|
7481
7638
|
expiryDurationLength?: number;
|
|
7482
7639
|
};
|
|
7640
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
7641
|
+
expiry?: {
|
|
7642
|
+
duration: "day" | "week" | "month" | "year";
|
|
7643
|
+
length: number;
|
|
7644
|
+
};
|
|
7483
7645
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
7484
7646
|
featureOverride?: {
|
|
7485
7647
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -7649,6 +7811,11 @@ expiryDurationType: "month" | "forever";
|
|
|
7649
7811
|
/** Number of periods before expiry. */
|
|
7650
7812
|
expiryDurationLength?: number;
|
|
7651
7813
|
};
|
|
7814
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
7815
|
+
expiry?: {
|
|
7816
|
+
duration: "day" | "week" | "month" | "year";
|
|
7817
|
+
length: number;
|
|
7818
|
+
};
|
|
7652
7819
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
7653
7820
|
featureOverride?: {
|
|
7654
7821
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -7775,6 +7942,12 @@ quantity?: number;
|
|
|
7775
7942
|
}>;
|
|
7776
7943
|
} | null;
|
|
7777
7944
|
} | null;
|
|
7945
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
7946
|
+
baseVariantId?: string | null;
|
|
7947
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
7948
|
+
baseVersion?: number | null;
|
|
7949
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
7950
|
+
baseVersionSlug?: string | null;
|
|
7778
7951
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
7779
7952
|
freeTrial?: {
|
|
7780
7953
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -8063,6 +8236,11 @@ expiryDurationType: "month" | "forever";
|
|
|
8063
8236
|
/** Number of periods before expiry. */
|
|
8064
8237
|
expiryDurationLength?: number;
|
|
8065
8238
|
};
|
|
8239
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
8240
|
+
expiry?: {
|
|
8241
|
+
duration: "day" | "week" | "month" | "year";
|
|
8242
|
+
length: number;
|
|
8243
|
+
} | null;
|
|
8066
8244
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
8067
8245
|
featureOverride?: {
|
|
8068
8246
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -8200,6 +8378,11 @@ expiryDurationType: "month" | "forever";
|
|
|
8200
8378
|
/** Number of periods before expiry. */
|
|
8201
8379
|
expiryDurationLength?: number;
|
|
8202
8380
|
};
|
|
8381
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
8382
|
+
expiry?: {
|
|
8383
|
+
duration: "day" | "week" | "month" | "year";
|
|
8384
|
+
length: number;
|
|
8385
|
+
};
|
|
8203
8386
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
8204
8387
|
featureOverride?: {
|
|
8205
8388
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -8432,6 +8615,11 @@ expiryDurationType: "month" | "forever";
|
|
|
8432
8615
|
/** Number of periods before expiry. */
|
|
8433
8616
|
expiryDurationLength?: number;
|
|
8434
8617
|
};
|
|
8618
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
8619
|
+
expiry?: {
|
|
8620
|
+
duration: "day" | "week" | "month" | "year";
|
|
8621
|
+
length: number;
|
|
8622
|
+
};
|
|
8435
8623
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
8436
8624
|
featureOverride?: {
|
|
8437
8625
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -8601,6 +8789,12 @@ quantity?: number;
|
|
|
8601
8789
|
}>;
|
|
8602
8790
|
} | null;
|
|
8603
8791
|
} | null;
|
|
8792
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
8793
|
+
baseVariantId?: string | null;
|
|
8794
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
8795
|
+
baseVersion?: number | null;
|
|
8796
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
8797
|
+
baseVersionSlug?: string | null;
|
|
8604
8798
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
8605
8799
|
freeTrial?: {
|
|
8606
8800
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -8892,6 +9086,11 @@ expiryDurationType: "month" | "forever";
|
|
|
8892
9086
|
/** Number of periods before expiry. */
|
|
8893
9087
|
expiryDurationLength?: number;
|
|
8894
9088
|
};
|
|
9089
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
9090
|
+
expiry?: {
|
|
9091
|
+
duration: "day" | "week" | "month" | "year";
|
|
9092
|
+
length: number;
|
|
9093
|
+
} | null;
|
|
8895
9094
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
8896
9095
|
featureOverride?: {
|
|
8897
9096
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -9089,6 +9288,11 @@ expiryDurationType: "month" | "forever";
|
|
|
9089
9288
|
/** Number of periods before expiry. */
|
|
9090
9289
|
expiryDurationLength?: number;
|
|
9091
9290
|
};
|
|
9291
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
9292
|
+
expiry?: {
|
|
9293
|
+
duration: "day" | "week" | "month" | "year";
|
|
9294
|
+
length: number;
|
|
9295
|
+
};
|
|
9092
9296
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
9093
9297
|
featureOverride?: {
|
|
9094
9298
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -9395,6 +9599,11 @@ expiryDurationType: "month" | "forever";
|
|
|
9395
9599
|
/** Number of periods before expiry. */
|
|
9396
9600
|
expiryDurationLength?: number;
|
|
9397
9601
|
};
|
|
9602
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
9603
|
+
expiry?: {
|
|
9604
|
+
duration: "day" | "week" | "month" | "year";
|
|
9605
|
+
length: number;
|
|
9606
|
+
};
|
|
9398
9607
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
9399
9608
|
featureOverride?: {
|
|
9400
9609
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -9601,6 +9810,11 @@ expiryDurationType: "month" | "forever";
|
|
|
9601
9810
|
/** Number of periods before expiry. */
|
|
9602
9811
|
expiryDurationLength?: number;
|
|
9603
9812
|
};
|
|
9813
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
9814
|
+
expiry?: {
|
|
9815
|
+
duration: "day" | "week" | "month" | "year";
|
|
9816
|
+
length: number;
|
|
9817
|
+
};
|
|
9604
9818
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
9605
9819
|
featureOverride?: {
|
|
9606
9820
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -9763,6 +9977,12 @@ quantity?: number;
|
|
|
9763
9977
|
}>;
|
|
9764
9978
|
} | null;
|
|
9765
9979
|
} | null;
|
|
9980
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
9981
|
+
baseVariantId?: string | null;
|
|
9982
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
9983
|
+
baseVersion?: number | null;
|
|
9984
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
9985
|
+
baseVersionSlug?: string | null;
|
|
9766
9986
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
9767
9987
|
freeTrial?: {
|
|
9768
9988
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -10054,6 +10274,11 @@ expiryDurationType: "month" | "forever";
|
|
|
10054
10274
|
/** Number of periods before expiry. */
|
|
10055
10275
|
expiryDurationLength?: number;
|
|
10056
10276
|
};
|
|
10277
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
10278
|
+
expiry?: {
|
|
10279
|
+
duration: "day" | "week" | "month" | "year";
|
|
10280
|
+
length: number;
|
|
10281
|
+
} | null;
|
|
10057
10282
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
10058
10283
|
featureOverride?: {
|
|
10059
10284
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -10231,6 +10456,11 @@ expiryDurationType: "month" | "forever";
|
|
|
10231
10456
|
/** Number of periods before expiry. */
|
|
10232
10457
|
expiryDurationLength?: number;
|
|
10233
10458
|
};
|
|
10459
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
10460
|
+
expiry?: {
|
|
10461
|
+
duration: "day" | "week" | "month" | "year";
|
|
10462
|
+
length: number;
|
|
10463
|
+
};
|
|
10234
10464
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
10235
10465
|
featureOverride?: {
|
|
10236
10466
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -10510,6 +10740,11 @@ expiryDurationType: "month" | "forever";
|
|
|
10510
10740
|
/** Number of periods before expiry. */
|
|
10511
10741
|
expiryDurationLength?: number;
|
|
10512
10742
|
};
|
|
10743
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
10744
|
+
expiry?: {
|
|
10745
|
+
duration: "day" | "week" | "month" | "year";
|
|
10746
|
+
length: number;
|
|
10747
|
+
};
|
|
10513
10748
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
10514
10749
|
featureOverride?: {
|
|
10515
10750
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -10709,6 +10944,12 @@ quantity?: number;
|
|
|
10709
10944
|
}>;
|
|
10710
10945
|
} | null;
|
|
10711
10946
|
} | null;
|
|
10947
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
10948
|
+
baseVariantId?: string | null;
|
|
10949
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
10950
|
+
baseVersion?: number | null;
|
|
10951
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
10952
|
+
baseVersionSlug?: string | null;
|
|
10712
10953
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
10713
10954
|
freeTrial?: {
|
|
10714
10955
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -11000,6 +11241,11 @@ expiryDurationType: "month" | "forever";
|
|
|
11000
11241
|
/** Number of periods before expiry. */
|
|
11001
11242
|
expiryDurationLength?: number;
|
|
11002
11243
|
};
|
|
11244
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
11245
|
+
expiry?: {
|
|
11246
|
+
duration: "day" | "week" | "month" | "year";
|
|
11247
|
+
length: number;
|
|
11248
|
+
} | null;
|
|
11003
11249
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
11004
11250
|
featureOverride?: {
|
|
11005
11251
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -11187,6 +11433,11 @@ expiryDurationType: "month" | "forever";
|
|
|
11187
11433
|
/** Number of periods before expiry. */
|
|
11188
11434
|
expiryDurationLength?: number;
|
|
11189
11435
|
};
|
|
11436
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
11437
|
+
expiry?: {
|
|
11438
|
+
duration: "day" | "week" | "month" | "year";
|
|
11439
|
+
length: number;
|
|
11440
|
+
};
|
|
11190
11441
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
11191
11442
|
featureOverride?: {
|
|
11192
11443
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -11480,6 +11731,11 @@ expiryDurationType: "month" | "forever";
|
|
|
11480
11731
|
/** Number of periods before expiry. */
|
|
11481
11732
|
expiryDurationLength?: number;
|
|
11482
11733
|
};
|
|
11734
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
11735
|
+
expiry?: {
|
|
11736
|
+
duration: "day" | "week" | "month" | "year";
|
|
11737
|
+
length: number;
|
|
11738
|
+
};
|
|
11483
11739
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
11484
11740
|
featureOverride?: {
|
|
11485
11741
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -11649,6 +11905,11 @@ expiryDurationType: "month" | "forever";
|
|
|
11649
11905
|
/** Number of periods before expiry. */
|
|
11650
11906
|
expiryDurationLength?: number;
|
|
11651
11907
|
};
|
|
11908
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
11909
|
+
expiry?: {
|
|
11910
|
+
duration: "day" | "week" | "month" | "year";
|
|
11911
|
+
length: number;
|
|
11912
|
+
};
|
|
11652
11913
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
11653
11914
|
featureOverride?: {
|
|
11654
11915
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -11775,6 +12036,12 @@ quantity?: number;
|
|
|
11775
12036
|
}>;
|
|
11776
12037
|
} | null;
|
|
11777
12038
|
} | null;
|
|
12039
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
12040
|
+
baseVariantId?: string | null;
|
|
12041
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
12042
|
+
baseVersion?: number | null;
|
|
12043
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
12044
|
+
baseVersionSlug?: string | null;
|
|
11778
12045
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
11779
12046
|
freeTrial?: {
|
|
11780
12047
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -12063,6 +12330,11 @@ expiryDurationType: "month" | "forever";
|
|
|
12063
12330
|
/** Number of periods before expiry. */
|
|
12064
12331
|
expiryDurationLength?: number;
|
|
12065
12332
|
};
|
|
12333
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
12334
|
+
expiry?: {
|
|
12335
|
+
duration: "day" | "week" | "month" | "year";
|
|
12336
|
+
length: number;
|
|
12337
|
+
} | null;
|
|
12066
12338
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
12067
12339
|
featureOverride?: {
|
|
12068
12340
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -12200,6 +12472,11 @@ expiryDurationType: "month" | "forever";
|
|
|
12200
12472
|
/** Number of periods before expiry. */
|
|
12201
12473
|
expiryDurationLength?: number;
|
|
12202
12474
|
};
|
|
12475
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
12476
|
+
expiry?: {
|
|
12477
|
+
duration: "day" | "week" | "month" | "year";
|
|
12478
|
+
length: number;
|
|
12479
|
+
};
|
|
12203
12480
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
12204
12481
|
featureOverride?: {
|
|
12205
12482
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -12432,6 +12709,11 @@ expiryDurationType: "month" | "forever";
|
|
|
12432
12709
|
/** Number of periods before expiry. */
|
|
12433
12710
|
expiryDurationLength?: number;
|
|
12434
12711
|
};
|
|
12712
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
12713
|
+
expiry?: {
|
|
12714
|
+
duration: "day" | "week" | "month" | "year";
|
|
12715
|
+
length: number;
|
|
12716
|
+
};
|
|
12435
12717
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
12436
12718
|
featureOverride?: {
|
|
12437
12719
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -12609,6 +12891,12 @@ quantity?: number;
|
|
|
12609
12891
|
}>;
|
|
12610
12892
|
} | null;
|
|
12611
12893
|
} | null;
|
|
12894
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
12895
|
+
baseVariantId?: string | null;
|
|
12896
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
12897
|
+
baseVersion?: number | null;
|
|
12898
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
12899
|
+
baseVersionSlug?: string | null;
|
|
12612
12900
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
12613
12901
|
freeTrial?: {
|
|
12614
12902
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -12900,6 +13188,11 @@ expiryDurationType: "month" | "forever";
|
|
|
12900
13188
|
/** Number of periods before expiry. */
|
|
12901
13189
|
expiryDurationLength?: number;
|
|
12902
13190
|
};
|
|
13191
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
13192
|
+
expiry?: {
|
|
13193
|
+
duration: "day" | "week" | "month" | "year";
|
|
13194
|
+
length: number;
|
|
13195
|
+
} | null;
|
|
12903
13196
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
12904
13197
|
featureOverride?: {
|
|
12905
13198
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -13097,6 +13390,11 @@ expiryDurationType: "month" | "forever";
|
|
|
13097
13390
|
/** Number of periods before expiry. */
|
|
13098
13391
|
expiryDurationLength?: number;
|
|
13099
13392
|
};
|
|
13393
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
13394
|
+
expiry?: {
|
|
13395
|
+
duration: "day" | "week" | "month" | "year";
|
|
13396
|
+
length: number;
|
|
13397
|
+
};
|
|
13100
13398
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
13101
13399
|
featureOverride?: {
|
|
13102
13400
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -13403,6 +13701,11 @@ expiryDurationType: "month" | "forever";
|
|
|
13403
13701
|
/** Number of periods before expiry. */
|
|
13404
13702
|
expiryDurationLength?: number;
|
|
13405
13703
|
};
|
|
13704
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
13705
|
+
expiry?: {
|
|
13706
|
+
duration: "day" | "week" | "month" | "year";
|
|
13707
|
+
length: number;
|
|
13708
|
+
};
|
|
13406
13709
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
13407
13710
|
featureOverride?: {
|
|
13408
13711
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -13625,6 +13928,11 @@ expiryDurationType: "month" | "forever";
|
|
|
13625
13928
|
/** Number of periods before expiry. */
|
|
13626
13929
|
expiryDurationLength?: number;
|
|
13627
13930
|
};
|
|
13931
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
13932
|
+
expiry?: {
|
|
13933
|
+
duration: "day" | "week" | "month" | "year";
|
|
13934
|
+
length: number;
|
|
13935
|
+
};
|
|
13628
13936
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
13629
13937
|
featureOverride?: {
|
|
13630
13938
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -13797,6 +14105,12 @@ quantity?: number;
|
|
|
13797
14105
|
}>;
|
|
13798
14106
|
} | null;
|
|
13799
14107
|
} | null;
|
|
14108
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
14109
|
+
baseVariantId?: string | null;
|
|
14110
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
14111
|
+
baseVersion?: number | null;
|
|
14112
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
14113
|
+
baseVersionSlug?: string | null;
|
|
13800
14114
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
13801
14115
|
freeTrial?: {
|
|
13802
14116
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -14088,6 +14402,11 @@ expiryDurationType: "month" | "forever";
|
|
|
14088
14402
|
/** Number of periods before expiry. */
|
|
14089
14403
|
expiryDurationLength?: number;
|
|
14090
14404
|
};
|
|
14405
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
14406
|
+
expiry?: {
|
|
14407
|
+
duration: "day" | "week" | "month" | "year";
|
|
14408
|
+
length: number;
|
|
14409
|
+
} | null;
|
|
14091
14410
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
14092
14411
|
featureOverride?: {
|
|
14093
14412
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -14281,6 +14600,11 @@ expiryDurationType: "month" | "forever";
|
|
|
14281
14600
|
/** Number of periods before expiry. */
|
|
14282
14601
|
expiryDurationLength?: number;
|
|
14283
14602
|
};
|
|
14603
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
14604
|
+
expiry?: {
|
|
14605
|
+
duration: "day" | "week" | "month" | "year";
|
|
14606
|
+
length: number;
|
|
14607
|
+
};
|
|
14284
14608
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
14285
14609
|
featureOverride?: {
|
|
14286
14610
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -14583,6 +14907,11 @@ expiryDurationType: "month" | "forever";
|
|
|
14583
14907
|
/** Number of periods before expiry. */
|
|
14584
14908
|
expiryDurationLength?: number;
|
|
14585
14909
|
};
|
|
14910
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
14911
|
+
expiry?: {
|
|
14912
|
+
duration: "day" | "week" | "month" | "year";
|
|
14913
|
+
length: number;
|
|
14914
|
+
};
|
|
14586
14915
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
14587
14916
|
featureOverride?: {
|
|
14588
14917
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -14804,6 +15133,12 @@ quantity?: number;
|
|
|
14804
15133
|
}>;
|
|
14805
15134
|
} | null;
|
|
14806
15135
|
} | null;
|
|
15136
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
15137
|
+
baseVariantId?: string | null;
|
|
15138
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
15139
|
+
baseVersion?: number | null;
|
|
15140
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
15141
|
+
baseVersionSlug?: string | null;
|
|
14807
15142
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
14808
15143
|
freeTrial?: {
|
|
14809
15144
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -15095,6 +15430,11 @@ expiryDurationType: "month" | "forever";
|
|
|
15095
15430
|
/** Number of periods before expiry. */
|
|
15096
15431
|
expiryDurationLength?: number;
|
|
15097
15432
|
};
|
|
15433
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
15434
|
+
expiry?: {
|
|
15435
|
+
duration: "day" | "week" | "month" | "year";
|
|
15436
|
+
length: number;
|
|
15437
|
+
} | null;
|
|
15098
15438
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
15099
15439
|
featureOverride?: {
|
|
15100
15440
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -15292,6 +15632,11 @@ expiryDurationType: "month" | "forever";
|
|
|
15292
15632
|
/** Number of periods before expiry. */
|
|
15293
15633
|
expiryDurationLength?: number;
|
|
15294
15634
|
};
|
|
15635
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
15636
|
+
expiry?: {
|
|
15637
|
+
duration: "day" | "week" | "month" | "year";
|
|
15638
|
+
length: number;
|
|
15639
|
+
};
|
|
15295
15640
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
15296
15641
|
featureOverride?: {
|
|
15297
15642
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -15598,6 +15943,11 @@ expiryDurationType: "month" | "forever";
|
|
|
15598
15943
|
/** Number of periods before expiry. */
|
|
15599
15944
|
expiryDurationLength?: number;
|
|
15600
15945
|
};
|
|
15946
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
15947
|
+
expiry?: {
|
|
15948
|
+
duration: "day" | "week" | "month" | "year";
|
|
15949
|
+
length: number;
|
|
15950
|
+
};
|
|
15601
15951
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
15602
15952
|
featureOverride?: {
|
|
15603
15953
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -15804,6 +16154,11 @@ expiryDurationType: "month" | "forever";
|
|
|
15804
16154
|
/** Number of periods before expiry. */
|
|
15805
16155
|
expiryDurationLength?: number;
|
|
15806
16156
|
};
|
|
16157
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
16158
|
+
expiry?: {
|
|
16159
|
+
duration: "day" | "week" | "month" | "year";
|
|
16160
|
+
length: number;
|
|
16161
|
+
};
|
|
15807
16162
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
15808
16163
|
featureOverride?: {
|
|
15809
16164
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -15966,6 +16321,12 @@ quantity?: number;
|
|
|
15966
16321
|
}>;
|
|
15967
16322
|
} | null;
|
|
15968
16323
|
} | null;
|
|
16324
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
16325
|
+
baseVariantId?: string | null;
|
|
16326
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
16327
|
+
baseVersion?: number | null;
|
|
16328
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
16329
|
+
baseVersionSlug?: string | null;
|
|
15969
16330
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
15970
16331
|
freeTrial?: {
|
|
15971
16332
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -16257,6 +16618,11 @@ expiryDurationType: "month" | "forever";
|
|
|
16257
16618
|
/** Number of periods before expiry. */
|
|
16258
16619
|
expiryDurationLength?: number;
|
|
16259
16620
|
};
|
|
16621
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
16622
|
+
expiry?: {
|
|
16623
|
+
duration: "day" | "week" | "month" | "year";
|
|
16624
|
+
length: number;
|
|
16625
|
+
} | null;
|
|
16260
16626
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
16261
16627
|
featureOverride?: {
|
|
16262
16628
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -16434,6 +16800,11 @@ expiryDurationType: "month" | "forever";
|
|
|
16434
16800
|
/** Number of periods before expiry. */
|
|
16435
16801
|
expiryDurationLength?: number;
|
|
16436
16802
|
};
|
|
16803
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
16804
|
+
expiry?: {
|
|
16805
|
+
duration: "day" | "week" | "month" | "year";
|
|
16806
|
+
length: number;
|
|
16807
|
+
};
|
|
16437
16808
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
16438
16809
|
featureOverride?: {
|
|
16439
16810
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -16713,6 +17084,11 @@ expiryDurationType: "month" | "forever";
|
|
|
16713
17084
|
/** Number of periods before expiry. */
|
|
16714
17085
|
expiryDurationLength?: number;
|
|
16715
17086
|
};
|
|
17087
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
17088
|
+
expiry?: {
|
|
17089
|
+
duration: "day" | "week" | "month" | "year";
|
|
17090
|
+
length: number;
|
|
17091
|
+
};
|
|
16716
17092
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
16717
17093
|
featureOverride?: {
|
|
16718
17094
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -16904,6 +17280,12 @@ quantity?: number;
|
|
|
16904
17280
|
}>;
|
|
16905
17281
|
} | null;
|
|
16906
17282
|
} | null;
|
|
17283
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
17284
|
+
baseVariantId?: string | null;
|
|
17285
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
17286
|
+
baseVersion?: number | null;
|
|
17287
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
17288
|
+
baseVersionSlug?: string | null;
|
|
16907
17289
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
16908
17290
|
freeTrial?: {
|
|
16909
17291
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -17195,6 +17577,11 @@ expiryDurationType: "month" | "forever";
|
|
|
17195
17577
|
/** Number of periods before expiry. */
|
|
17196
17578
|
expiryDurationLength?: number;
|
|
17197
17579
|
};
|
|
17580
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
17581
|
+
expiry?: {
|
|
17582
|
+
duration: "day" | "week" | "month" | "year";
|
|
17583
|
+
length: number;
|
|
17584
|
+
} | null;
|
|
17198
17585
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
17199
17586
|
featureOverride?: {
|
|
17200
17587
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -17392,6 +17779,11 @@ expiryDurationType: "month" | "forever";
|
|
|
17392
17779
|
/** Number of periods before expiry. */
|
|
17393
17780
|
expiryDurationLength?: number;
|
|
17394
17781
|
};
|
|
17782
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
17783
|
+
expiry?: {
|
|
17784
|
+
duration: "day" | "week" | "month" | "year";
|
|
17785
|
+
length: number;
|
|
17786
|
+
};
|
|
17395
17787
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
17396
17788
|
featureOverride?: {
|
|
17397
17789
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -17698,6 +18090,11 @@ expiryDurationType: "month" | "forever";
|
|
|
17698
18090
|
/** Number of periods before expiry. */
|
|
17699
18091
|
expiryDurationLength?: number;
|
|
17700
18092
|
};
|
|
18093
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
18094
|
+
expiry?: {
|
|
18095
|
+
duration: "day" | "week" | "month" | "year";
|
|
18096
|
+
length: number;
|
|
18097
|
+
};
|
|
17701
18098
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
17702
18099
|
featureOverride?: {
|
|
17703
18100
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -17920,6 +18317,11 @@ expiryDurationType: "month" | "forever";
|
|
|
17920
18317
|
/** Number of periods before expiry. */
|
|
17921
18318
|
expiryDurationLength?: number;
|
|
17922
18319
|
};
|
|
18320
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
18321
|
+
expiry?: {
|
|
18322
|
+
duration: "day" | "week" | "month" | "year";
|
|
18323
|
+
length: number;
|
|
18324
|
+
};
|
|
17923
18325
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
17924
18326
|
featureOverride?: {
|
|
17925
18327
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -18092,6 +18494,12 @@ quantity?: number;
|
|
|
18092
18494
|
}>;
|
|
18093
18495
|
} | null;
|
|
18094
18496
|
} | null;
|
|
18497
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
18498
|
+
baseVariantId?: string | null;
|
|
18499
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
18500
|
+
baseVersion?: number | null;
|
|
18501
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
18502
|
+
baseVersionSlug?: string | null;
|
|
18095
18503
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
18096
18504
|
freeTrial?: {
|
|
18097
18505
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -18383,6 +18791,11 @@ expiryDurationType: "month" | "forever";
|
|
|
18383
18791
|
/** Number of periods before expiry. */
|
|
18384
18792
|
expiryDurationLength?: number;
|
|
18385
18793
|
};
|
|
18794
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
18795
|
+
expiry?: {
|
|
18796
|
+
duration: "day" | "week" | "month" | "year";
|
|
18797
|
+
length: number;
|
|
18798
|
+
} | null;
|
|
18386
18799
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
18387
18800
|
featureOverride?: {
|
|
18388
18801
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -18576,6 +18989,11 @@ expiryDurationType: "month" | "forever";
|
|
|
18576
18989
|
/** Number of periods before expiry. */
|
|
18577
18990
|
expiryDurationLength?: number;
|
|
18578
18991
|
};
|
|
18992
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
18993
|
+
expiry?: {
|
|
18994
|
+
duration: "day" | "week" | "month" | "year";
|
|
18995
|
+
length: number;
|
|
18996
|
+
};
|
|
18579
18997
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
18580
18998
|
featureOverride?: {
|
|
18581
18999
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -18878,6 +19296,11 @@ expiryDurationType: "month" | "forever";
|
|
|
18878
19296
|
/** Number of periods before expiry. */
|
|
18879
19297
|
expiryDurationLength?: number;
|
|
18880
19298
|
};
|
|
19299
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
19300
|
+
expiry?: {
|
|
19301
|
+
duration: "day" | "week" | "month" | "year";
|
|
19302
|
+
length: number;
|
|
19303
|
+
};
|
|
18881
19304
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
18882
19305
|
featureOverride?: {
|
|
18883
19306
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -19097,6 +19520,12 @@ quantity?: number;
|
|
|
19097
19520
|
}>;
|
|
19098
19521
|
} | null;
|
|
19099
19522
|
} | null;
|
|
19523
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
19524
|
+
baseVariantId?: string | null;
|
|
19525
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
19526
|
+
baseVersion?: number | null;
|
|
19527
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
19528
|
+
baseVersionSlug?: string | null;
|
|
19100
19529
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
19101
19530
|
freeTrial?: {
|
|
19102
19531
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -19388,6 +19817,11 @@ expiryDurationType: "month" | "forever";
|
|
|
19388
19817
|
/** Number of periods before expiry. */
|
|
19389
19818
|
expiryDurationLength?: number;
|
|
19390
19819
|
};
|
|
19820
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
19821
|
+
expiry?: {
|
|
19822
|
+
duration: "day" | "week" | "month" | "year";
|
|
19823
|
+
length: number;
|
|
19824
|
+
} | null;
|
|
19391
19825
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
19392
19826
|
featureOverride?: {
|
|
19393
19827
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -19585,6 +20019,11 @@ expiryDurationType: "month" | "forever";
|
|
|
19585
20019
|
/** Number of periods before expiry. */
|
|
19586
20020
|
expiryDurationLength?: number;
|
|
19587
20021
|
};
|
|
20022
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
20023
|
+
expiry?: {
|
|
20024
|
+
duration: "day" | "week" | "month" | "year";
|
|
20025
|
+
length: number;
|
|
20026
|
+
};
|
|
19588
20027
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
19589
20028
|
featureOverride?: {
|
|
19590
20029
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -19891,6 +20330,11 @@ expiryDurationType: "month" | "forever";
|
|
|
19891
20330
|
/** Number of periods before expiry. */
|
|
19892
20331
|
expiryDurationLength?: number;
|
|
19893
20332
|
};
|
|
20333
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
20334
|
+
expiry?: {
|
|
20335
|
+
duration: "day" | "week" | "month" | "year";
|
|
20336
|
+
length: number;
|
|
20337
|
+
};
|
|
19894
20338
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
19895
20339
|
featureOverride?: {
|
|
19896
20340
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -20097,6 +20541,11 @@ expiryDurationType: "month" | "forever";
|
|
|
20097
20541
|
/** Number of periods before expiry. */
|
|
20098
20542
|
expiryDurationLength?: number;
|
|
20099
20543
|
};
|
|
20544
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
20545
|
+
expiry?: {
|
|
20546
|
+
duration: "day" | "week" | "month" | "year";
|
|
20547
|
+
length: number;
|
|
20548
|
+
};
|
|
20100
20549
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
20101
20550
|
featureOverride?: {
|
|
20102
20551
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -20259,6 +20708,12 @@ quantity?: number;
|
|
|
20259
20708
|
}>;
|
|
20260
20709
|
} | null;
|
|
20261
20710
|
} | null;
|
|
20711
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
20712
|
+
baseVariantId?: string | null;
|
|
20713
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
20714
|
+
baseVersion?: number | null;
|
|
20715
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
20716
|
+
baseVersionSlug?: string | null;
|
|
20262
20717
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
20263
20718
|
freeTrial?: {
|
|
20264
20719
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -20550,6 +21005,11 @@ expiryDurationType: "month" | "forever";
|
|
|
20550
21005
|
/** Number of periods before expiry. */
|
|
20551
21006
|
expiryDurationLength?: number;
|
|
20552
21007
|
};
|
|
21008
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
21009
|
+
expiry?: {
|
|
21010
|
+
duration: "day" | "week" | "month" | "year";
|
|
21011
|
+
length: number;
|
|
21012
|
+
} | null;
|
|
20553
21013
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
20554
21014
|
featureOverride?: {
|
|
20555
21015
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -20727,6 +21187,11 @@ expiryDurationType: "month" | "forever";
|
|
|
20727
21187
|
/** Number of periods before expiry. */
|
|
20728
21188
|
expiryDurationLength?: number;
|
|
20729
21189
|
};
|
|
21190
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
21191
|
+
expiry?: {
|
|
21192
|
+
duration: "day" | "week" | "month" | "year";
|
|
21193
|
+
length: number;
|
|
21194
|
+
};
|
|
20730
21195
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
20731
21196
|
featureOverride?: {
|
|
20732
21197
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -21006,6 +21471,11 @@ expiryDurationType: "month" | "forever";
|
|
|
21006
21471
|
/** Number of periods before expiry. */
|
|
21007
21472
|
expiryDurationLength?: number;
|
|
21008
21473
|
};
|
|
21474
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
21475
|
+
expiry?: {
|
|
21476
|
+
duration: "day" | "week" | "month" | "year";
|
|
21477
|
+
length: number;
|
|
21478
|
+
};
|
|
21009
21479
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
21010
21480
|
featureOverride?: {
|
|
21011
21481
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -21202,6 +21672,11 @@ expiryDurationType: "month" | "forever";
|
|
|
21202
21672
|
/** Number of periods before expiry. */
|
|
21203
21673
|
expiryDurationLength?: number;
|
|
21204
21674
|
};
|
|
21675
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
21676
|
+
expiry?: {
|
|
21677
|
+
duration: "day" | "week" | "month" | "year";
|
|
21678
|
+
length: number;
|
|
21679
|
+
};
|
|
21205
21680
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
21206
21681
|
featureOverride?: {
|
|
21207
21682
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -23075,6 +23550,11 @@ expiryDurationType: "month" | "forever";
|
|
|
23075
23550
|
/** Number of periods before expiry. */
|
|
23076
23551
|
expiryDurationLength?: number;
|
|
23077
23552
|
};
|
|
23553
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
23554
|
+
expiry?: {
|
|
23555
|
+
duration: "day" | "week" | "month" | "year";
|
|
23556
|
+
length: number;
|
|
23557
|
+
};
|
|
23078
23558
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
23079
23559
|
featureOverride?: {
|
|
23080
23560
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -23306,6 +23786,11 @@ expiryDurationType: "month" | "forever";
|
|
|
23306
23786
|
/** Number of periods before expiry. */
|
|
23307
23787
|
expiryDurationLength?: number;
|
|
23308
23788
|
};
|
|
23789
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
23790
|
+
expiry?: {
|
|
23791
|
+
duration: "day" | "week" | "month" | "year";
|
|
23792
|
+
length: number;
|
|
23793
|
+
};
|
|
23309
23794
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
23310
23795
|
featureOverride?: {
|
|
23311
23796
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -23537,6 +24022,12 @@ quantity?: number;
|
|
|
23537
24022
|
}>;
|
|
23538
24023
|
} | null;
|
|
23539
24024
|
} | null;
|
|
24025
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
24026
|
+
baseVariantId?: string | null;
|
|
24027
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
24028
|
+
baseVersion?: number | null;
|
|
24029
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
24030
|
+
baseVersionSlug?: string | null;
|
|
23540
24031
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
23541
24032
|
freeTrial?: {
|
|
23542
24033
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -23828,6 +24319,11 @@ expiryDurationType: "month" | "forever";
|
|
|
23828
24319
|
/** Number of periods before expiry. */
|
|
23829
24320
|
expiryDurationLength?: number;
|
|
23830
24321
|
};
|
|
24322
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
24323
|
+
expiry?: {
|
|
24324
|
+
duration: "day" | "week" | "month" | "year";
|
|
24325
|
+
length: number;
|
|
24326
|
+
} | null;
|
|
23831
24327
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
23832
24328
|
featureOverride?: {
|
|
23833
24329
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -24025,6 +24521,11 @@ expiryDurationType: "month" | "forever";
|
|
|
24025
24521
|
/** Number of periods before expiry. */
|
|
24026
24522
|
expiryDurationLength?: number;
|
|
24027
24523
|
};
|
|
24524
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
24525
|
+
expiry?: {
|
|
24526
|
+
duration: "day" | "week" | "month" | "year";
|
|
24527
|
+
length: number;
|
|
24528
|
+
};
|
|
24028
24529
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
24029
24530
|
featureOverride?: {
|
|
24030
24531
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -24331,6 +24832,11 @@ expiryDurationType: "month" | "forever";
|
|
|
24331
24832
|
/** Number of periods before expiry. */
|
|
24332
24833
|
expiryDurationLength?: number;
|
|
24333
24834
|
};
|
|
24835
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
24836
|
+
expiry?: {
|
|
24837
|
+
duration: "day" | "week" | "month" | "year";
|
|
24838
|
+
length: number;
|
|
24839
|
+
};
|
|
24334
24840
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
24335
24841
|
featureOverride?: {
|
|
24336
24842
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -24557,6 +25063,11 @@ expiryDurationType: "month" | "forever";
|
|
|
24557
25063
|
/** Number of periods before expiry. */
|
|
24558
25064
|
expiryDurationLength?: number;
|
|
24559
25065
|
};
|
|
25066
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
25067
|
+
expiry?: {
|
|
25068
|
+
duration: "day" | "week" | "month" | "year";
|
|
25069
|
+
length: number;
|
|
25070
|
+
};
|
|
24560
25071
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
24561
25072
|
featureOverride?: {
|
|
24562
25073
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -24729,6 +25240,12 @@ quantity?: number;
|
|
|
24729
25240
|
}>;
|
|
24730
25241
|
} | null;
|
|
24731
25242
|
} | null;
|
|
25243
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
25244
|
+
baseVariantId?: string | null;
|
|
25245
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
25246
|
+
baseVersion?: number | null;
|
|
25247
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
25248
|
+
baseVersionSlug?: string | null;
|
|
24732
25249
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
24733
25250
|
freeTrial?: {
|
|
24734
25251
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -25020,6 +25537,11 @@ expiryDurationType: "month" | "forever";
|
|
|
25020
25537
|
/** Number of periods before expiry. */
|
|
25021
25538
|
expiryDurationLength?: number;
|
|
25022
25539
|
};
|
|
25540
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
25541
|
+
expiry?: {
|
|
25542
|
+
duration: "day" | "week" | "month" | "year";
|
|
25543
|
+
length: number;
|
|
25544
|
+
} | null;
|
|
25023
25545
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
25024
25546
|
featureOverride?: {
|
|
25025
25547
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -25217,6 +25739,11 @@ expiryDurationType: "month" | "forever";
|
|
|
25217
25739
|
/** Number of periods before expiry. */
|
|
25218
25740
|
expiryDurationLength?: number;
|
|
25219
25741
|
};
|
|
25742
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
25743
|
+
expiry?: {
|
|
25744
|
+
duration: "day" | "week" | "month" | "year";
|
|
25745
|
+
length: number;
|
|
25746
|
+
};
|
|
25220
25747
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
25221
25748
|
featureOverride?: {
|
|
25222
25749
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -25523,6 +26050,11 @@ expiryDurationType: "month" | "forever";
|
|
|
25523
26050
|
/** Number of periods before expiry. */
|
|
25524
26051
|
expiryDurationLength?: number;
|
|
25525
26052
|
};
|
|
26053
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
26054
|
+
expiry?: {
|
|
26055
|
+
duration: "day" | "week" | "month" | "year";
|
|
26056
|
+
length: number;
|
|
26057
|
+
};
|
|
25526
26058
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
25527
26059
|
featureOverride?: {
|
|
25528
26060
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -25756,6 +26288,12 @@ quantity?: number;
|
|
|
25756
26288
|
}>;
|
|
25757
26289
|
} | null;
|
|
25758
26290
|
} | null;
|
|
26291
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
26292
|
+
baseVariantId?: string | null;
|
|
26293
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
26294
|
+
baseVersion?: number | null;
|
|
26295
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
26296
|
+
baseVersionSlug?: string | null;
|
|
25759
26297
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
25760
26298
|
freeTrial?: {
|
|
25761
26299
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -26047,6 +26585,11 @@ expiryDurationType: "month" | "forever";
|
|
|
26047
26585
|
/** Number of periods before expiry. */
|
|
26048
26586
|
expiryDurationLength?: number;
|
|
26049
26587
|
};
|
|
26588
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
26589
|
+
expiry?: {
|
|
26590
|
+
duration: "day" | "week" | "month" | "year";
|
|
26591
|
+
length: number;
|
|
26592
|
+
} | null;
|
|
26050
26593
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
26051
26594
|
featureOverride?: {
|
|
26052
26595
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -26244,6 +26787,11 @@ expiryDurationType: "month" | "forever";
|
|
|
26244
26787
|
/** Number of periods before expiry. */
|
|
26245
26788
|
expiryDurationLength?: number;
|
|
26246
26789
|
};
|
|
26790
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
26791
|
+
expiry?: {
|
|
26792
|
+
duration: "day" | "week" | "month" | "year";
|
|
26793
|
+
length: number;
|
|
26794
|
+
};
|
|
26247
26795
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
26248
26796
|
featureOverride?: {
|
|
26249
26797
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -26550,6 +27098,11 @@ expiryDurationType: "month" | "forever";
|
|
|
26550
27098
|
/** Number of periods before expiry. */
|
|
26551
27099
|
expiryDurationLength?: number;
|
|
26552
27100
|
};
|
|
27101
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
27102
|
+
expiry?: {
|
|
27103
|
+
duration: "day" | "week" | "month" | "year";
|
|
27104
|
+
length: number;
|
|
27105
|
+
};
|
|
26553
27106
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
26554
27107
|
featureOverride?: {
|
|
26555
27108
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -26772,6 +27325,11 @@ expiryDurationType: "month" | "forever";
|
|
|
26772
27325
|
/** Number of periods before expiry. */
|
|
26773
27326
|
expiryDurationLength?: number;
|
|
26774
27327
|
};
|
|
27328
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
27329
|
+
expiry?: {
|
|
27330
|
+
duration: "day" | "week" | "month" | "year";
|
|
27331
|
+
length: number;
|
|
27332
|
+
};
|
|
26775
27333
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
26776
27334
|
featureOverride?: {
|
|
26777
27335
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -26944,6 +27502,12 @@ quantity?: number;
|
|
|
26944
27502
|
}>;
|
|
26945
27503
|
} | null;
|
|
26946
27504
|
} | null;
|
|
27505
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
27506
|
+
baseVariantId?: string | null;
|
|
27507
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
27508
|
+
baseVersion?: number | null;
|
|
27509
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
27510
|
+
baseVersionSlug?: string | null;
|
|
26947
27511
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
26948
27512
|
freeTrial?: {
|
|
26949
27513
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -27235,6 +27799,11 @@ expiryDurationType: "month" | "forever";
|
|
|
27235
27799
|
/** Number of periods before expiry. */
|
|
27236
27800
|
expiryDurationLength?: number;
|
|
27237
27801
|
};
|
|
27802
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
27803
|
+
expiry?: {
|
|
27804
|
+
duration: "day" | "week" | "month" | "year";
|
|
27805
|
+
length: number;
|
|
27806
|
+
} | null;
|
|
27238
27807
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
27239
27808
|
featureOverride?: {
|
|
27240
27809
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -27428,6 +27997,11 @@ expiryDurationType: "month" | "forever";
|
|
|
27428
27997
|
/** Number of periods before expiry. */
|
|
27429
27998
|
expiryDurationLength?: number;
|
|
27430
27999
|
};
|
|
28000
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
28001
|
+
expiry?: {
|
|
28002
|
+
duration: "day" | "week" | "month" | "year";
|
|
28003
|
+
length: number;
|
|
28004
|
+
};
|
|
27431
28005
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
27432
28006
|
featureOverride?: {
|
|
27433
28007
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -27730,6 +28304,11 @@ expiryDurationType: "month" | "forever";
|
|
|
27730
28304
|
/** Number of periods before expiry. */
|
|
27731
28305
|
expiryDurationLength?: number;
|
|
27732
28306
|
};
|
|
28307
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
28308
|
+
expiry?: {
|
|
28309
|
+
duration: "day" | "week" | "month" | "year";
|
|
28310
|
+
length: number;
|
|
28311
|
+
};
|
|
27733
28312
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
27734
28313
|
featureOverride?: {
|
|
27735
28314
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -27937,6 +28516,12 @@ quantity?: number;
|
|
|
27937
28516
|
}>;
|
|
27938
28517
|
} | null;
|
|
27939
28518
|
} | null;
|
|
28519
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
28520
|
+
baseVariantId?: string | null;
|
|
28521
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
28522
|
+
baseVersion?: number | null;
|
|
28523
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
28524
|
+
baseVersionSlug?: string | null;
|
|
27940
28525
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
27941
28526
|
freeTrial?: {
|
|
27942
28527
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -28228,6 +28813,11 @@ expiryDurationType: "month" | "forever";
|
|
|
28228
28813
|
/** Number of periods before expiry. */
|
|
28229
28814
|
expiryDurationLength?: number;
|
|
28230
28815
|
};
|
|
28816
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
28817
|
+
expiry?: {
|
|
28818
|
+
duration: "day" | "week" | "month" | "year";
|
|
28819
|
+
length: number;
|
|
28820
|
+
} | null;
|
|
28231
28821
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
28232
28822
|
featureOverride?: {
|
|
28233
28823
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -28425,6 +29015,11 @@ expiryDurationType: "month" | "forever";
|
|
|
28425
29015
|
/** Number of periods before expiry. */
|
|
28426
29016
|
expiryDurationLength?: number;
|
|
28427
29017
|
};
|
|
29018
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
29019
|
+
expiry?: {
|
|
29020
|
+
duration: "day" | "week" | "month" | "year";
|
|
29021
|
+
length: number;
|
|
29022
|
+
};
|
|
28428
29023
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
28429
29024
|
featureOverride?: {
|
|
28430
29025
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -28731,6 +29326,11 @@ expiryDurationType: "month" | "forever";
|
|
|
28731
29326
|
/** Number of periods before expiry. */
|
|
28732
29327
|
expiryDurationLength?: number;
|
|
28733
29328
|
};
|
|
29329
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
29330
|
+
expiry?: {
|
|
29331
|
+
duration: "day" | "week" | "month" | "year";
|
|
29332
|
+
length: number;
|
|
29333
|
+
};
|
|
28734
29334
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
28735
29335
|
featureOverride?: {
|
|
28736
29336
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -28937,6 +29537,11 @@ expiryDurationType: "month" | "forever";
|
|
|
28937
29537
|
/** Number of periods before expiry. */
|
|
28938
29538
|
expiryDurationLength?: number;
|
|
28939
29539
|
};
|
|
29540
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
29541
|
+
expiry?: {
|
|
29542
|
+
duration: "day" | "week" | "month" | "year";
|
|
29543
|
+
length: number;
|
|
29544
|
+
};
|
|
28940
29545
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
28941
29546
|
featureOverride?: {
|
|
28942
29547
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -29099,6 +29704,12 @@ quantity?: number;
|
|
|
29099
29704
|
}>;
|
|
29100
29705
|
} | null;
|
|
29101
29706
|
} | null;
|
|
29707
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
29708
|
+
baseVariantId?: string | null;
|
|
29709
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
29710
|
+
baseVersion?: number | null;
|
|
29711
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
29712
|
+
baseVersionSlug?: string | null;
|
|
29102
29713
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
29103
29714
|
freeTrial?: {
|
|
29104
29715
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -29390,6 +30001,11 @@ expiryDurationType: "month" | "forever";
|
|
|
29390
30001
|
/** Number of periods before expiry. */
|
|
29391
30002
|
expiryDurationLength?: number;
|
|
29392
30003
|
};
|
|
30004
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
30005
|
+
expiry?: {
|
|
30006
|
+
duration: "day" | "week" | "month" | "year";
|
|
30007
|
+
length: number;
|
|
30008
|
+
} | null;
|
|
29393
30009
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
29394
30010
|
featureOverride?: {
|
|
29395
30011
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -29567,6 +30183,11 @@ expiryDurationType: "month" | "forever";
|
|
|
29567
30183
|
/** Number of periods before expiry. */
|
|
29568
30184
|
expiryDurationLength?: number;
|
|
29569
30185
|
};
|
|
30186
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
30187
|
+
expiry?: {
|
|
30188
|
+
duration: "day" | "week" | "month" | "year";
|
|
30189
|
+
length: number;
|
|
30190
|
+
};
|
|
29570
30191
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
29571
30192
|
featureOverride?: {
|
|
29572
30193
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -29846,6 +30467,11 @@ expiryDurationType: "month" | "forever";
|
|
|
29846
30467
|
/** Number of periods before expiry. */
|
|
29847
30468
|
expiryDurationLength?: number;
|
|
29848
30469
|
};
|
|
30470
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
30471
|
+
expiry?: {
|
|
30472
|
+
duration: "day" | "week" | "month" | "year";
|
|
30473
|
+
length: number;
|
|
30474
|
+
};
|
|
29849
30475
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
29850
30476
|
featureOverride?: {
|
|
29851
30477
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -30047,6 +30673,12 @@ quantity?: number;
|
|
|
30047
30673
|
}>;
|
|
30048
30674
|
} | null;
|
|
30049
30675
|
} | null;
|
|
30676
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
30677
|
+
baseVariantId?: string | null;
|
|
30678
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
30679
|
+
baseVersion?: number | null;
|
|
30680
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
30681
|
+
baseVersionSlug?: string | null;
|
|
30050
30682
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
30051
30683
|
freeTrial?: {
|
|
30052
30684
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -30338,6 +30970,11 @@ expiryDurationType: "month" | "forever";
|
|
|
30338
30970
|
/** Number of periods before expiry. */
|
|
30339
30971
|
expiryDurationLength?: number;
|
|
30340
30972
|
};
|
|
30973
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
30974
|
+
expiry?: {
|
|
30975
|
+
duration: "day" | "week" | "month" | "year";
|
|
30976
|
+
length: number;
|
|
30977
|
+
} | null;
|
|
30341
30978
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
30342
30979
|
featureOverride?: {
|
|
30343
30980
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -30525,6 +31162,11 @@ expiryDurationType: "month" | "forever";
|
|
|
30525
31162
|
/** Number of periods before expiry. */
|
|
30526
31163
|
expiryDurationLength?: number;
|
|
30527
31164
|
};
|
|
31165
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
31166
|
+
expiry?: {
|
|
31167
|
+
duration: "day" | "week" | "month" | "year";
|
|
31168
|
+
length: number;
|
|
31169
|
+
};
|
|
30528
31170
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
30529
31171
|
featureOverride?: {
|
|
30530
31172
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -30818,6 +31460,11 @@ expiryDurationType: "month" | "forever";
|
|
|
30818
31460
|
/** Number of periods before expiry. */
|
|
30819
31461
|
expiryDurationLength?: number;
|
|
30820
31462
|
};
|
|
31463
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
31464
|
+
expiry?: {
|
|
31465
|
+
duration: "day" | "week" | "month" | "year";
|
|
31466
|
+
length: number;
|
|
31467
|
+
};
|
|
30821
31468
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
30822
31469
|
featureOverride?: {
|
|
30823
31470
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -30987,6 +31634,11 @@ expiryDurationType: "month" | "forever";
|
|
|
30987
31634
|
/** Number of periods before expiry. */
|
|
30988
31635
|
expiryDurationLength?: number;
|
|
30989
31636
|
};
|
|
31637
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
31638
|
+
expiry?: {
|
|
31639
|
+
duration: "day" | "week" | "month" | "year";
|
|
31640
|
+
length: number;
|
|
31641
|
+
};
|
|
30990
31642
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
30991
31643
|
featureOverride?: {
|
|
30992
31644
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -31113,6 +31765,12 @@ quantity?: number;
|
|
|
31113
31765
|
}>;
|
|
31114
31766
|
} | null;
|
|
31115
31767
|
} | null;
|
|
31768
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
31769
|
+
baseVariantId?: string | null;
|
|
31770
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
31771
|
+
baseVersion?: number | null;
|
|
31772
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
31773
|
+
baseVersionSlug?: string | null;
|
|
31116
31774
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
31117
31775
|
freeTrial?: {
|
|
31118
31776
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -31401,6 +32059,11 @@ expiryDurationType: "month" | "forever";
|
|
|
31401
32059
|
/** Number of periods before expiry. */
|
|
31402
32060
|
expiryDurationLength?: number;
|
|
31403
32061
|
};
|
|
32062
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
32063
|
+
expiry?: {
|
|
32064
|
+
duration: "day" | "week" | "month" | "year";
|
|
32065
|
+
length: number;
|
|
32066
|
+
} | null;
|
|
31404
32067
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
31405
32068
|
featureOverride?: {
|
|
31406
32069
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -31538,6 +32201,11 @@ expiryDurationType: "month" | "forever";
|
|
|
31538
32201
|
/** Number of periods before expiry. */
|
|
31539
32202
|
expiryDurationLength?: number;
|
|
31540
32203
|
};
|
|
32204
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
32205
|
+
expiry?: {
|
|
32206
|
+
duration: "day" | "week" | "month" | "year";
|
|
32207
|
+
length: number;
|
|
32208
|
+
};
|
|
31541
32209
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
31542
32210
|
featureOverride?: {
|
|
31543
32211
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -31770,6 +32438,11 @@ expiryDurationType: "month" | "forever";
|
|
|
31770
32438
|
/** Number of periods before expiry. */
|
|
31771
32439
|
expiryDurationLength?: number;
|
|
31772
32440
|
};
|
|
32441
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
32442
|
+
expiry?: {
|
|
32443
|
+
duration: "day" | "week" | "month" | "year";
|
|
32444
|
+
length: number;
|
|
32445
|
+
};
|
|
31773
32446
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
31774
32447
|
featureOverride?: {
|
|
31775
32448
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -31939,6 +32612,12 @@ quantity?: number;
|
|
|
31939
32612
|
}>;
|
|
31940
32613
|
} | null;
|
|
31941
32614
|
} | null;
|
|
32615
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
32616
|
+
baseVariantId?: string | null;
|
|
32617
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
32618
|
+
baseVersion?: number | null;
|
|
32619
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
32620
|
+
baseVersionSlug?: string | null;
|
|
31942
32621
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
31943
32622
|
freeTrial?: {
|
|
31944
32623
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -32230,6 +32909,11 @@ expiryDurationType: "month" | "forever";
|
|
|
32230
32909
|
/** Number of periods before expiry. */
|
|
32231
32910
|
expiryDurationLength?: number;
|
|
32232
32911
|
};
|
|
32912
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
32913
|
+
expiry?: {
|
|
32914
|
+
duration: "day" | "week" | "month" | "year";
|
|
32915
|
+
length: number;
|
|
32916
|
+
} | null;
|
|
32233
32917
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
32234
32918
|
featureOverride?: {
|
|
32235
32919
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -32427,6 +33111,11 @@ expiryDurationType: "month" | "forever";
|
|
|
32427
33111
|
/** Number of periods before expiry. */
|
|
32428
33112
|
expiryDurationLength?: number;
|
|
32429
33113
|
};
|
|
33114
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
33115
|
+
expiry?: {
|
|
33116
|
+
duration: "day" | "week" | "month" | "year";
|
|
33117
|
+
length: number;
|
|
33118
|
+
};
|
|
32430
33119
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
32431
33120
|
featureOverride?: {
|
|
32432
33121
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -32733,6 +33422,11 @@ expiryDurationType: "month" | "forever";
|
|
|
32733
33422
|
/** Number of periods before expiry. */
|
|
32734
33423
|
expiryDurationLength?: number;
|
|
32735
33424
|
};
|
|
33425
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
33426
|
+
expiry?: {
|
|
33427
|
+
duration: "day" | "week" | "month" | "year";
|
|
33428
|
+
length: number;
|
|
33429
|
+
};
|
|
32736
33430
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
32737
33431
|
featureOverride?: {
|
|
32738
33432
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -32939,6 +33633,11 @@ expiryDurationType: "month" | "forever";
|
|
|
32939
33633
|
/** Number of periods before expiry. */
|
|
32940
33634
|
expiryDurationLength?: number;
|
|
32941
33635
|
};
|
|
33636
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
33637
|
+
expiry?: {
|
|
33638
|
+
duration: "day" | "week" | "month" | "year";
|
|
33639
|
+
length: number;
|
|
33640
|
+
};
|
|
32942
33641
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
32943
33642
|
featureOverride?: {
|
|
32944
33643
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -33101,6 +33800,12 @@ quantity?: number;
|
|
|
33101
33800
|
}>;
|
|
33102
33801
|
} | null;
|
|
33103
33802
|
} | null;
|
|
33803
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
33804
|
+
baseVariantId?: string | null;
|
|
33805
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
33806
|
+
baseVersion?: number | null;
|
|
33807
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
33808
|
+
baseVersionSlug?: string | null;
|
|
33104
33809
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
33105
33810
|
freeTrial?: {
|
|
33106
33811
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -33392,6 +34097,11 @@ expiryDurationType: "month" | "forever";
|
|
|
33392
34097
|
/** Number of periods before expiry. */
|
|
33393
34098
|
expiryDurationLength?: number;
|
|
33394
34099
|
};
|
|
34100
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
34101
|
+
expiry?: {
|
|
34102
|
+
duration: "day" | "week" | "month" | "year";
|
|
34103
|
+
length: number;
|
|
34104
|
+
} | null;
|
|
33395
34105
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
33396
34106
|
featureOverride?: {
|
|
33397
34107
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -33569,6 +34279,11 @@ expiryDurationType: "month" | "forever";
|
|
|
33569
34279
|
/** Number of periods before expiry. */
|
|
33570
34280
|
expiryDurationLength?: number;
|
|
33571
34281
|
};
|
|
34282
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
34283
|
+
expiry?: {
|
|
34284
|
+
duration: "day" | "week" | "month" | "year";
|
|
34285
|
+
length: number;
|
|
34286
|
+
};
|
|
33572
34287
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
33573
34288
|
featureOverride?: {
|
|
33574
34289
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -33848,6 +34563,11 @@ expiryDurationType: "month" | "forever";
|
|
|
33848
34563
|
/** Number of periods before expiry. */
|
|
33849
34564
|
expiryDurationLength?: number;
|
|
33850
34565
|
};
|
|
34566
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
34567
|
+
expiry?: {
|
|
34568
|
+
duration: "day" | "week" | "month" | "year";
|
|
34569
|
+
length: number;
|
|
34570
|
+
};
|
|
33851
34571
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
33852
34572
|
featureOverride?: {
|
|
33853
34573
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -34047,6 +34767,12 @@ quantity?: number;
|
|
|
34047
34767
|
}>;
|
|
34048
34768
|
} | null;
|
|
34049
34769
|
} | null;
|
|
34770
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
34771
|
+
baseVariantId?: string | null;
|
|
34772
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
34773
|
+
baseVersion?: number | null;
|
|
34774
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
34775
|
+
baseVersionSlug?: string | null;
|
|
34050
34776
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
34051
34777
|
freeTrial?: {
|
|
34052
34778
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -34338,6 +35064,11 @@ expiryDurationType: "month" | "forever";
|
|
|
34338
35064
|
/** Number of periods before expiry. */
|
|
34339
35065
|
expiryDurationLength?: number;
|
|
34340
35066
|
};
|
|
35067
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
35068
|
+
expiry?: {
|
|
35069
|
+
duration: "day" | "week" | "month" | "year";
|
|
35070
|
+
length: number;
|
|
35071
|
+
} | null;
|
|
34341
35072
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
34342
35073
|
featureOverride?: {
|
|
34343
35074
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -34525,6 +35256,11 @@ expiryDurationType: "month" | "forever";
|
|
|
34525
35256
|
/** Number of periods before expiry. */
|
|
34526
35257
|
expiryDurationLength?: number;
|
|
34527
35258
|
};
|
|
35259
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
35260
|
+
expiry?: {
|
|
35261
|
+
duration: "day" | "week" | "month" | "year";
|
|
35262
|
+
length: number;
|
|
35263
|
+
};
|
|
34528
35264
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
34529
35265
|
featureOverride?: {
|
|
34530
35266
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -34818,6 +35554,11 @@ expiryDurationType: "month" | "forever";
|
|
|
34818
35554
|
/** Number of periods before expiry. */
|
|
34819
35555
|
expiryDurationLength?: number;
|
|
34820
35556
|
};
|
|
35557
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
35558
|
+
expiry?: {
|
|
35559
|
+
duration: "day" | "week" | "month" | "year";
|
|
35560
|
+
length: number;
|
|
35561
|
+
};
|
|
34821
35562
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
34822
35563
|
featureOverride?: {
|
|
34823
35564
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -34987,6 +35728,11 @@ expiryDurationType: "month" | "forever";
|
|
|
34987
35728
|
/** Number of periods before expiry. */
|
|
34988
35729
|
expiryDurationLength?: number;
|
|
34989
35730
|
};
|
|
35731
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
35732
|
+
expiry?: {
|
|
35733
|
+
duration: "day" | "week" | "month" | "year";
|
|
35734
|
+
length: number;
|
|
35735
|
+
};
|
|
34990
35736
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
34991
35737
|
featureOverride?: {
|
|
34992
35738
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -35113,6 +35859,12 @@ quantity?: number;
|
|
|
35113
35859
|
}>;
|
|
35114
35860
|
} | null;
|
|
35115
35861
|
} | null;
|
|
35862
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
35863
|
+
baseVariantId?: string | null;
|
|
35864
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
35865
|
+
baseVersion?: number | null;
|
|
35866
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
35867
|
+
baseVersionSlug?: string | null;
|
|
35116
35868
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
35117
35869
|
freeTrial?: {
|
|
35118
35870
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -35401,6 +36153,11 @@ expiryDurationType: "month" | "forever";
|
|
|
35401
36153
|
/** Number of periods before expiry. */
|
|
35402
36154
|
expiryDurationLength?: number;
|
|
35403
36155
|
};
|
|
36156
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
36157
|
+
expiry?: {
|
|
36158
|
+
duration: "day" | "week" | "month" | "year";
|
|
36159
|
+
length: number;
|
|
36160
|
+
} | null;
|
|
35404
36161
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
35405
36162
|
featureOverride?: {
|
|
35406
36163
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -35538,6 +36295,11 @@ expiryDurationType: "month" | "forever";
|
|
|
35538
36295
|
/** Number of periods before expiry. */
|
|
35539
36296
|
expiryDurationLength?: number;
|
|
35540
36297
|
};
|
|
36298
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
36299
|
+
expiry?: {
|
|
36300
|
+
duration: "day" | "week" | "month" | "year";
|
|
36301
|
+
length: number;
|
|
36302
|
+
};
|
|
35541
36303
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
35542
36304
|
featureOverride?: {
|
|
35543
36305
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -35770,6 +36532,11 @@ expiryDurationType: "month" | "forever";
|
|
|
35770
36532
|
/** Number of periods before expiry. */
|
|
35771
36533
|
expiryDurationLength?: number;
|
|
35772
36534
|
};
|
|
36535
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
36536
|
+
expiry?: {
|
|
36537
|
+
duration: "day" | "week" | "month" | "year";
|
|
36538
|
+
length: number;
|
|
36539
|
+
};
|
|
35773
36540
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
35774
36541
|
featureOverride?: {
|
|
35775
36542
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -35947,6 +36714,12 @@ quantity?: number;
|
|
|
35947
36714
|
}>;
|
|
35948
36715
|
} | null;
|
|
35949
36716
|
} | null;
|
|
36717
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
36718
|
+
baseVariantId?: string | null;
|
|
36719
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
36720
|
+
baseVersion?: number | null;
|
|
36721
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
36722
|
+
baseVersionSlug?: string | null;
|
|
35950
36723
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
35951
36724
|
freeTrial?: {
|
|
35952
36725
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -36238,6 +37011,11 @@ expiryDurationType: "month" | "forever";
|
|
|
36238
37011
|
/** Number of periods before expiry. */
|
|
36239
37012
|
expiryDurationLength?: number;
|
|
36240
37013
|
};
|
|
37014
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
37015
|
+
expiry?: {
|
|
37016
|
+
duration: "day" | "week" | "month" | "year";
|
|
37017
|
+
length: number;
|
|
37018
|
+
} | null;
|
|
36241
37019
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
36242
37020
|
featureOverride?: {
|
|
36243
37021
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -36435,6 +37213,11 @@ expiryDurationType: "month" | "forever";
|
|
|
36435
37213
|
/** Number of periods before expiry. */
|
|
36436
37214
|
expiryDurationLength?: number;
|
|
36437
37215
|
};
|
|
37216
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
37217
|
+
expiry?: {
|
|
37218
|
+
duration: "day" | "week" | "month" | "year";
|
|
37219
|
+
length: number;
|
|
37220
|
+
};
|
|
36438
37221
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
36439
37222
|
featureOverride?: {
|
|
36440
37223
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -36741,6 +37524,11 @@ expiryDurationType: "month" | "forever";
|
|
|
36741
37524
|
/** Number of periods before expiry. */
|
|
36742
37525
|
expiryDurationLength?: number;
|
|
36743
37526
|
};
|
|
37527
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
37528
|
+
expiry?: {
|
|
37529
|
+
duration: "day" | "week" | "month" | "year";
|
|
37530
|
+
length: number;
|
|
37531
|
+
};
|
|
36744
37532
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
36745
37533
|
featureOverride?: {
|
|
36746
37534
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -36963,6 +37751,11 @@ expiryDurationType: "month" | "forever";
|
|
|
36963
37751
|
/** Number of periods before expiry. */
|
|
36964
37752
|
expiryDurationLength?: number;
|
|
36965
37753
|
};
|
|
37754
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
37755
|
+
expiry?: {
|
|
37756
|
+
duration: "day" | "week" | "month" | "year";
|
|
37757
|
+
length: number;
|
|
37758
|
+
};
|
|
36966
37759
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
36967
37760
|
featureOverride?: {
|
|
36968
37761
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -37135,6 +37928,12 @@ quantity?: number;
|
|
|
37135
37928
|
}>;
|
|
37136
37929
|
} | null;
|
|
37137
37930
|
} | null;
|
|
37931
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
37932
|
+
baseVariantId?: string | null;
|
|
37933
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
37934
|
+
baseVersion?: number | null;
|
|
37935
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
37936
|
+
baseVersionSlug?: string | null;
|
|
37138
37937
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
37139
37938
|
freeTrial?: {
|
|
37140
37939
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -37426,6 +38225,11 @@ expiryDurationType: "month" | "forever";
|
|
|
37426
38225
|
/** Number of periods before expiry. */
|
|
37427
38226
|
expiryDurationLength?: number;
|
|
37428
38227
|
};
|
|
38228
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
38229
|
+
expiry?: {
|
|
38230
|
+
duration: "day" | "week" | "month" | "year";
|
|
38231
|
+
length: number;
|
|
38232
|
+
} | null;
|
|
37429
38233
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
37430
38234
|
featureOverride?: {
|
|
37431
38235
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -37619,6 +38423,11 @@ expiryDurationType: "month" | "forever";
|
|
|
37619
38423
|
/** Number of periods before expiry. */
|
|
37620
38424
|
expiryDurationLength?: number;
|
|
37621
38425
|
};
|
|
38426
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
38427
|
+
expiry?: {
|
|
38428
|
+
duration: "day" | "week" | "month" | "year";
|
|
38429
|
+
length: number;
|
|
38430
|
+
};
|
|
37622
38431
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
37623
38432
|
featureOverride?: {
|
|
37624
38433
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -37921,6 +38730,11 @@ expiryDurationType: "month" | "forever";
|
|
|
37921
38730
|
/** Number of periods before expiry. */
|
|
37922
38731
|
expiryDurationLength?: number;
|
|
37923
38732
|
};
|
|
38733
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
38734
|
+
expiry?: {
|
|
38735
|
+
duration: "day" | "week" | "month" | "year";
|
|
38736
|
+
length: number;
|
|
38737
|
+
};
|
|
37924
38738
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
37925
38739
|
featureOverride?: {
|
|
37926
38740
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -38142,6 +38956,12 @@ quantity?: number;
|
|
|
38142
38956
|
}>;
|
|
38143
38957
|
} | null;
|
|
38144
38958
|
} | null;
|
|
38959
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
38960
|
+
baseVariantId?: string | null;
|
|
38961
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
38962
|
+
baseVersion?: number | null;
|
|
38963
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
38964
|
+
baseVersionSlug?: string | null;
|
|
38145
38965
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
38146
38966
|
freeTrial?: {
|
|
38147
38967
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -38433,6 +39253,11 @@ expiryDurationType: "month" | "forever";
|
|
|
38433
39253
|
/** Number of periods before expiry. */
|
|
38434
39254
|
expiryDurationLength?: number;
|
|
38435
39255
|
};
|
|
39256
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
39257
|
+
expiry?: {
|
|
39258
|
+
duration: "day" | "week" | "month" | "year";
|
|
39259
|
+
length: number;
|
|
39260
|
+
} | null;
|
|
38436
39261
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
38437
39262
|
featureOverride?: {
|
|
38438
39263
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -38630,6 +39455,11 @@ expiryDurationType: "month" | "forever";
|
|
|
38630
39455
|
/** Number of periods before expiry. */
|
|
38631
39456
|
expiryDurationLength?: number;
|
|
38632
39457
|
};
|
|
39458
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
39459
|
+
expiry?: {
|
|
39460
|
+
duration: "day" | "week" | "month" | "year";
|
|
39461
|
+
length: number;
|
|
39462
|
+
};
|
|
38633
39463
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
38634
39464
|
featureOverride?: {
|
|
38635
39465
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -38936,6 +39766,11 @@ expiryDurationType: "month" | "forever";
|
|
|
38936
39766
|
/** Number of periods before expiry. */
|
|
38937
39767
|
expiryDurationLength?: number;
|
|
38938
39768
|
};
|
|
39769
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
39770
|
+
expiry?: {
|
|
39771
|
+
duration: "day" | "week" | "month" | "year";
|
|
39772
|
+
length: number;
|
|
39773
|
+
};
|
|
38939
39774
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
38940
39775
|
featureOverride?: {
|
|
38941
39776
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -39142,6 +39977,11 @@ expiryDurationType: "month" | "forever";
|
|
|
39142
39977
|
/** Number of periods before expiry. */
|
|
39143
39978
|
expiryDurationLength?: number;
|
|
39144
39979
|
};
|
|
39980
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
39981
|
+
expiry?: {
|
|
39982
|
+
duration: "day" | "week" | "month" | "year";
|
|
39983
|
+
length: number;
|
|
39984
|
+
};
|
|
39145
39985
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
39146
39986
|
featureOverride?: {
|
|
39147
39987
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -39304,6 +40144,12 @@ quantity?: number;
|
|
|
39304
40144
|
}>;
|
|
39305
40145
|
} | null;
|
|
39306
40146
|
} | null;
|
|
40147
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
40148
|
+
baseVariantId?: string | null;
|
|
40149
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
40150
|
+
baseVersion?: number | null;
|
|
40151
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
40152
|
+
baseVersionSlug?: string | null;
|
|
39307
40153
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
39308
40154
|
freeTrial?: {
|
|
39309
40155
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -39595,6 +40441,11 @@ expiryDurationType: "month" | "forever";
|
|
|
39595
40441
|
/** Number of periods before expiry. */
|
|
39596
40442
|
expiryDurationLength?: number;
|
|
39597
40443
|
};
|
|
40444
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
40445
|
+
expiry?: {
|
|
40446
|
+
duration: "day" | "week" | "month" | "year";
|
|
40447
|
+
length: number;
|
|
40448
|
+
} | null;
|
|
39598
40449
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
39599
40450
|
featureOverride?: {
|
|
39600
40451
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -39772,6 +40623,11 @@ expiryDurationType: "month" | "forever";
|
|
|
39772
40623
|
/** Number of periods before expiry. */
|
|
39773
40624
|
expiryDurationLength?: number;
|
|
39774
40625
|
};
|
|
40626
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
40627
|
+
expiry?: {
|
|
40628
|
+
duration: "day" | "week" | "month" | "year";
|
|
40629
|
+
length: number;
|
|
40630
|
+
};
|
|
39775
40631
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
39776
40632
|
featureOverride?: {
|
|
39777
40633
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -40051,6 +40907,11 @@ expiryDurationType: "month" | "forever";
|
|
|
40051
40907
|
/** Number of periods before expiry. */
|
|
40052
40908
|
expiryDurationLength?: number;
|
|
40053
40909
|
};
|
|
40910
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
40911
|
+
expiry?: {
|
|
40912
|
+
duration: "day" | "week" | "month" | "year";
|
|
40913
|
+
length: number;
|
|
40914
|
+
};
|
|
40054
40915
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
40055
40916
|
featureOverride?: {
|
|
40056
40917
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -40242,6 +41103,12 @@ quantity?: number;
|
|
|
40242
41103
|
}>;
|
|
40243
41104
|
} | null;
|
|
40244
41105
|
} | null;
|
|
41106
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
41107
|
+
baseVariantId?: string | null;
|
|
41108
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
41109
|
+
baseVersion?: number | null;
|
|
41110
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
41111
|
+
baseVersionSlug?: string | null;
|
|
40245
41112
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
40246
41113
|
freeTrial?: {
|
|
40247
41114
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -40533,6 +41400,11 @@ expiryDurationType: "month" | "forever";
|
|
|
40533
41400
|
/** Number of periods before expiry. */
|
|
40534
41401
|
expiryDurationLength?: number;
|
|
40535
41402
|
};
|
|
41403
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
41404
|
+
expiry?: {
|
|
41405
|
+
duration: "day" | "week" | "month" | "year";
|
|
41406
|
+
length: number;
|
|
41407
|
+
} | null;
|
|
40536
41408
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
40537
41409
|
featureOverride?: {
|
|
40538
41410
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -40730,6 +41602,11 @@ expiryDurationType: "month" | "forever";
|
|
|
40730
41602
|
/** Number of periods before expiry. */
|
|
40731
41603
|
expiryDurationLength?: number;
|
|
40732
41604
|
};
|
|
41605
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
41606
|
+
expiry?: {
|
|
41607
|
+
duration: "day" | "week" | "month" | "year";
|
|
41608
|
+
length: number;
|
|
41609
|
+
};
|
|
40733
41610
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
40734
41611
|
featureOverride?: {
|
|
40735
41612
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -41036,6 +41913,11 @@ expiryDurationType: "month" | "forever";
|
|
|
41036
41913
|
/** Number of periods before expiry. */
|
|
41037
41914
|
expiryDurationLength?: number;
|
|
41038
41915
|
};
|
|
41916
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
41917
|
+
expiry?: {
|
|
41918
|
+
duration: "day" | "week" | "month" | "year";
|
|
41919
|
+
length: number;
|
|
41920
|
+
};
|
|
41039
41921
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
41040
41922
|
featureOverride?: {
|
|
41041
41923
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -41258,6 +42140,11 @@ expiryDurationType: "month" | "forever";
|
|
|
41258
42140
|
/** Number of periods before expiry. */
|
|
41259
42141
|
expiryDurationLength?: number;
|
|
41260
42142
|
};
|
|
42143
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
42144
|
+
expiry?: {
|
|
42145
|
+
duration: "day" | "week" | "month" | "year";
|
|
42146
|
+
length: number;
|
|
42147
|
+
};
|
|
41261
42148
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
41262
42149
|
featureOverride?: {
|
|
41263
42150
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -41430,6 +42317,12 @@ quantity?: number;
|
|
|
41430
42317
|
}>;
|
|
41431
42318
|
} | null;
|
|
41432
42319
|
} | null;
|
|
42320
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
42321
|
+
baseVariantId?: string | null;
|
|
42322
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
42323
|
+
baseVersion?: number | null;
|
|
42324
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
42325
|
+
baseVersionSlug?: string | null;
|
|
41433
42326
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
41434
42327
|
freeTrial?: {
|
|
41435
42328
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -41721,6 +42614,11 @@ expiryDurationType: "month" | "forever";
|
|
|
41721
42614
|
/** Number of periods before expiry. */
|
|
41722
42615
|
expiryDurationLength?: number;
|
|
41723
42616
|
};
|
|
42617
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
42618
|
+
expiry?: {
|
|
42619
|
+
duration: "day" | "week" | "month" | "year";
|
|
42620
|
+
length: number;
|
|
42621
|
+
} | null;
|
|
41724
42622
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
41725
42623
|
featureOverride?: {
|
|
41726
42624
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -41914,6 +42812,11 @@ expiryDurationType: "month" | "forever";
|
|
|
41914
42812
|
/** Number of periods before expiry. */
|
|
41915
42813
|
expiryDurationLength?: number;
|
|
41916
42814
|
};
|
|
42815
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
42816
|
+
expiry?: {
|
|
42817
|
+
duration: "day" | "week" | "month" | "year";
|
|
42818
|
+
length: number;
|
|
42819
|
+
};
|
|
41917
42820
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
41918
42821
|
featureOverride?: {
|
|
41919
42822
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -42216,6 +43119,11 @@ expiryDurationType: "month" | "forever";
|
|
|
42216
43119
|
/** Number of periods before expiry. */
|
|
42217
43120
|
expiryDurationLength?: number;
|
|
42218
43121
|
};
|
|
43122
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
43123
|
+
expiry?: {
|
|
43124
|
+
duration: "day" | "week" | "month" | "year";
|
|
43125
|
+
length: number;
|
|
43126
|
+
};
|
|
42219
43127
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
42220
43128
|
featureOverride?: {
|
|
42221
43129
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -42435,6 +43343,12 @@ quantity?: number;
|
|
|
42435
43343
|
}>;
|
|
42436
43344
|
} | null;
|
|
42437
43345
|
} | null;
|
|
43346
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
43347
|
+
baseVariantId?: string | null;
|
|
43348
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
43349
|
+
baseVersion?: number | null;
|
|
43350
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
43351
|
+
baseVersionSlug?: string | null;
|
|
42438
43352
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
42439
43353
|
freeTrial?: {
|
|
42440
43354
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -42726,6 +43640,11 @@ expiryDurationType: "month" | "forever";
|
|
|
42726
43640
|
/** Number of periods before expiry. */
|
|
42727
43641
|
expiryDurationLength?: number;
|
|
42728
43642
|
};
|
|
43643
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
43644
|
+
expiry?: {
|
|
43645
|
+
duration: "day" | "week" | "month" | "year";
|
|
43646
|
+
length: number;
|
|
43647
|
+
} | null;
|
|
42729
43648
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
42730
43649
|
featureOverride?: {
|
|
42731
43650
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -42923,6 +43842,11 @@ expiryDurationType: "month" | "forever";
|
|
|
42923
43842
|
/** Number of periods before expiry. */
|
|
42924
43843
|
expiryDurationLength?: number;
|
|
42925
43844
|
};
|
|
43845
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
43846
|
+
expiry?: {
|
|
43847
|
+
duration: "day" | "week" | "month" | "year";
|
|
43848
|
+
length: number;
|
|
43849
|
+
};
|
|
42926
43850
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
42927
43851
|
featureOverride?: {
|
|
42928
43852
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -43229,6 +44153,11 @@ expiryDurationType: "month" | "forever";
|
|
|
43229
44153
|
/** Number of periods before expiry. */
|
|
43230
44154
|
expiryDurationLength?: number;
|
|
43231
44155
|
};
|
|
44156
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
44157
|
+
expiry?: {
|
|
44158
|
+
duration: "day" | "week" | "month" | "year";
|
|
44159
|
+
length: number;
|
|
44160
|
+
};
|
|
43232
44161
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
43233
44162
|
featureOverride?: {
|
|
43234
44163
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -43435,6 +44364,11 @@ expiryDurationType: "month" | "forever";
|
|
|
43435
44364
|
/** Number of periods before expiry. */
|
|
43436
44365
|
expiryDurationLength?: number;
|
|
43437
44366
|
};
|
|
44367
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
44368
|
+
expiry?: {
|
|
44369
|
+
duration: "day" | "week" | "month" | "year";
|
|
44370
|
+
length: number;
|
|
44371
|
+
};
|
|
43438
44372
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
43439
44373
|
featureOverride?: {
|
|
43440
44374
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -43597,6 +44531,12 @@ quantity?: number;
|
|
|
43597
44531
|
}>;
|
|
43598
44532
|
} | null;
|
|
43599
44533
|
} | null;
|
|
44534
|
+
/** The base plan this variant pointed at before this update re-anchored it. Null when it was standalone. */
|
|
44535
|
+
baseVariantId?: string | null;
|
|
44536
|
+
/** The base row version this variant pointed at before this update. Null when it was standalone. */
|
|
44537
|
+
baseVersion?: number | null;
|
|
44538
|
+
/** The base row version slug this variant pointed at before this update. Null when it was standalone. */
|
|
44539
|
+
baseVersionSlug?: string | null;
|
|
43600
44540
|
/** Previous free trial when it changed. Null when the plan had none. */
|
|
43601
44541
|
freeTrial?: {
|
|
43602
44542
|
/** Number of duration_type periods the trial lasts. */
|
|
@@ -43888,6 +44828,11 @@ expiryDurationType: "month" | "forever";
|
|
|
43888
44828
|
/** Number of periods before expiry. */
|
|
43889
44829
|
expiryDurationLength?: number;
|
|
43890
44830
|
};
|
|
44831
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
44832
|
+
expiry?: {
|
|
44833
|
+
duration: "day" | "week" | "month" | "year";
|
|
44834
|
+
length: number;
|
|
44835
|
+
} | null;
|
|
43891
44836
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
43892
44837
|
featureOverride?: {
|
|
43893
44838
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -44065,6 +45010,11 @@ expiryDurationType: "month" | "forever";
|
|
|
44065
45010
|
/** Number of periods before expiry. */
|
|
44066
45011
|
expiryDurationLength?: number;
|
|
44067
45012
|
};
|
|
45013
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
45014
|
+
expiry?: {
|
|
45015
|
+
duration: "day" | "week" | "month" | "year";
|
|
45016
|
+
length: number;
|
|
45017
|
+
};
|
|
44068
45018
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
44069
45019
|
featureOverride?: {
|
|
44070
45020
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -44344,6 +45294,11 @@ expiryDurationType: "month" | "forever";
|
|
|
44344
45294
|
/** Number of periods before expiry. */
|
|
44345
45295
|
expiryDurationLength?: number;
|
|
44346
45296
|
};
|
|
45297
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
45298
|
+
expiry?: {
|
|
45299
|
+
duration: "day" | "week" | "month" | "year";
|
|
45300
|
+
length: number;
|
|
45301
|
+
};
|
|
44347
45302
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
44348
45303
|
featureOverride?: {
|
|
44349
45304
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -44540,6 +45495,11 @@ expiryDurationType: "month" | "forever";
|
|
|
44540
45495
|
/** Number of periods before expiry. */
|
|
44541
45496
|
expiryDurationLength?: number;
|
|
44542
45497
|
};
|
|
45498
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
45499
|
+
expiry?: {
|
|
45500
|
+
duration: "day" | "week" | "month" | "year";
|
|
45501
|
+
length: number;
|
|
45502
|
+
};
|
|
44543
45503
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
44544
45504
|
featureOverride?: {
|
|
44545
45505
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -46413,6 +47373,11 @@ expiryDurationType: "month" | "forever";
|
|
|
46413
47373
|
/** Number of periods before expiry. */
|
|
46414
47374
|
expiryDurationLength?: number;
|
|
46415
47375
|
};
|
|
47376
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
47377
|
+
expiry?: {
|
|
47378
|
+
duration: "day" | "week" | "month" | "year";
|
|
47379
|
+
length: number;
|
|
47380
|
+
};
|
|
46416
47381
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
46417
47382
|
featureOverride?: {
|
|
46418
47383
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -46644,6 +47609,11 @@ expiryDurationType: "month" | "forever";
|
|
|
46644
47609
|
/** Number of periods before expiry. */
|
|
46645
47610
|
expiryDurationLength?: number;
|
|
46646
47611
|
};
|
|
47612
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
47613
|
+
expiry?: {
|
|
47614
|
+
duration: "day" | "week" | "month" | "year";
|
|
47615
|
+
length: number;
|
|
47616
|
+
};
|
|
46647
47617
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
46648
47618
|
featureOverride?: {
|
|
46649
47619
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -48623,6 +49593,11 @@ expiryDurationType: "month" | "forever";
|
|
|
48623
49593
|
/** Number of periods before expiry. */
|
|
48624
49594
|
expiryDurationLength?: number;
|
|
48625
49595
|
};
|
|
49596
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
49597
|
+
expiry?: {
|
|
49598
|
+
duration: "day" | "week" | "month" | "year";
|
|
49599
|
+
length: number;
|
|
49600
|
+
};
|
|
48626
49601
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
48627
49602
|
featureOverride?: {
|
|
48628
49603
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -48854,6 +49829,11 @@ expiryDurationType: "month" | "forever";
|
|
|
48854
49829
|
/** Number of periods before expiry. */
|
|
48855
49830
|
expiryDurationLength?: number;
|
|
48856
49831
|
};
|
|
49832
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
49833
|
+
expiry?: {
|
|
49834
|
+
duration: "day" | "week" | "month" | "year";
|
|
49835
|
+
length: number;
|
|
49836
|
+
};
|
|
48857
49837
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
48858
49838
|
featureOverride?: {
|
|
48859
49839
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -49294,6 +50274,11 @@ expiryDurationType: "month" | "forever";
|
|
|
49294
50274
|
/** Number of periods before expiry. */
|
|
49295
50275
|
expiryDurationLength?: number;
|
|
49296
50276
|
};
|
|
50277
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
50278
|
+
expiry?: {
|
|
50279
|
+
duration: "day" | "week" | "month" | "year";
|
|
50280
|
+
length: number;
|
|
50281
|
+
} | null;
|
|
49297
50282
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
49298
50283
|
featureOverride?: {
|
|
49299
50284
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -49634,6 +50619,11 @@ expiryDurationType: "month" | "forever";
|
|
|
49634
50619
|
/** Number of periods before expiry. */
|
|
49635
50620
|
expiryDurationLength?: number;
|
|
49636
50621
|
};
|
|
50622
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
50623
|
+
expiry?: {
|
|
50624
|
+
duration: "day" | "week" | "month" | "year";
|
|
50625
|
+
length: number;
|
|
50626
|
+
};
|
|
49637
50627
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
49638
50628
|
featureOverride?: {
|
|
49639
50629
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -49940,6 +50930,11 @@ expiryDurationType: "month" | "forever";
|
|
|
49940
50930
|
/** Number of periods before expiry. */
|
|
49941
50931
|
expiryDurationLength?: number;
|
|
49942
50932
|
};
|
|
50933
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
50934
|
+
expiry?: {
|
|
50935
|
+
duration: "day" | "week" | "month" | "year";
|
|
50936
|
+
length: number;
|
|
50937
|
+
};
|
|
49943
50938
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
49944
50939
|
featureOverride?: {
|
|
49945
50940
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -50167,6 +51162,11 @@ expiryDurationType: "month" | "forever";
|
|
|
50167
51162
|
/** Number of periods before expiry. */
|
|
50168
51163
|
expiryDurationLength?: number;
|
|
50169
51164
|
};
|
|
51165
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
51166
|
+
expiry?: {
|
|
51167
|
+
duration: "day" | "week" | "month" | "year";
|
|
51168
|
+
length: number;
|
|
51169
|
+
};
|
|
50170
51170
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
50171
51171
|
featureOverride?: {
|
|
50172
51172
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -50387,6 +51387,11 @@ expiryDurationType: "month" | "forever";
|
|
|
50387
51387
|
/** Number of periods before expiry. */
|
|
50388
51388
|
expiryDurationLength?: number;
|
|
50389
51389
|
};
|
|
51390
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
51391
|
+
expiry?: {
|
|
51392
|
+
duration: "day" | "week" | "month" | "year";
|
|
51393
|
+
length: number;
|
|
51394
|
+
};
|
|
50390
51395
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
50391
51396
|
featureOverride?: {
|
|
50392
51397
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -50693,6 +51698,11 @@ expiryDurationType: "month" | "forever";
|
|
|
50693
51698
|
/** Number of periods before expiry. */
|
|
50694
51699
|
expiryDurationLength?: number;
|
|
50695
51700
|
};
|
|
51701
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
51702
|
+
expiry?: {
|
|
51703
|
+
duration: "day" | "week" | "month" | "year";
|
|
51704
|
+
length: number;
|
|
51705
|
+
};
|
|
50696
51706
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
50697
51707
|
featureOverride?: {
|
|
50698
51708
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|
|
@@ -50974,6 +51984,11 @@ expiryDurationType: "month" | "forever";
|
|
|
50974
51984
|
/** Number of periods before expiry. */
|
|
50975
51985
|
expiryDurationLength?: number;
|
|
50976
51986
|
};
|
|
51987
|
+
/** Purchased units expire this long after each purchase. One-off prepaid consumable items only. */
|
|
51988
|
+
expiry?: {
|
|
51989
|
+
duration: "day" | "week" | "month" | "year";
|
|
51990
|
+
length: number;
|
|
51991
|
+
} | null;
|
|
50977
51992
|
/** Overrides fields of this item's feature for customers on this plan (e.g. a credit system's credit_schema). */
|
|
50978
51993
|
featureOverride?: {
|
|
50979
51994
|
/** For credit system features: replaces the feature's credit_schema entirely for customers on this plan. */
|