@revturbine/sdk 0.2.78 → 0.2.80
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/headless.d.ts +107 -29
- package/dist/headless.js +2 -2
- package/dist/headless.js.map +1 -1
- package/dist/index.d.ts +107 -29
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/types/web-sdk/control-plane-events.d.ts.map +1 -1
- package/dist/types/web-sdk/customer-side.d.ts +21 -0
- package/dist/types/web-sdk/customer-side.d.ts.map +1 -1
- package/dist/types/web-sdk/react/RevTurbineProvider.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/headless.d.ts
CHANGED
|
@@ -1858,6 +1858,21 @@ declare const UserUsageEntrySchema: z.ZodObject<{
|
|
|
1858
1858
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1859
1859
|
reset_date: z.ZodOptional<z.ZodString>;
|
|
1860
1860
|
}, z.core.$strip>;
|
|
1861
|
+
/**
|
|
1862
|
+
* Activity level derived from the persisted `activity_score` at context
|
|
1863
|
+
* retrieval (plan 180 D5): tenant thresholds bucket the score; `new` = no
|
|
1864
|
+
* score ever computed; `inactive` = score 0 (or below the low cut point).
|
|
1865
|
+
* NEVER persisted — stamped onto retrieval traits (`traits.activity_level`).
|
|
1866
|
+
* `active` remains a matchable targeting value as the union of
|
|
1867
|
+
* high|medium|low (D1) via `activityLevelSatisfies`.
|
|
1868
|
+
*/
|
|
1869
|
+
declare const ActivityLevelSchema: z.ZodEnum<{
|
|
1870
|
+
inactive: "inactive";
|
|
1871
|
+
new: "new";
|
|
1872
|
+
high: "high";
|
|
1873
|
+
medium: "medium";
|
|
1874
|
+
low: "low";
|
|
1875
|
+
}>;
|
|
1861
1876
|
/** Plan context for the identified user. */
|
|
1862
1877
|
declare const UserPlanContextSchema: z.ZodObject<{
|
|
1863
1878
|
id: z.ZodString;
|
|
@@ -2123,6 +2138,8 @@ declare const UserContextSchema: z.ZodObject<{
|
|
|
2123
2138
|
derived_config_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2124
2139
|
context_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2125
2140
|
derived_computed_at: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2141
|
+
activity_score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2142
|
+
activity_score_computed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2126
2143
|
}, z.core.$strip>;
|
|
2127
2144
|
declare const ClientContextSchema: z.ZodObject<{
|
|
2128
2145
|
subject: z.ZodString;
|
|
@@ -2152,6 +2169,7 @@ declare const ClientContextSchema: z.ZodObject<{
|
|
|
2152
2169
|
}, z.core.$strip>>;
|
|
2153
2170
|
plan: z.ZodOptional<z.ZodObject<{
|
|
2154
2171
|
handle: z.ZodOptional<z.ZodString>;
|
|
2172
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2155
2173
|
}, z.core.$strip>>;
|
|
2156
2174
|
capabilities: z.ZodOptional<z.ZodObject<{
|
|
2157
2175
|
can_upgrade: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2865,6 +2883,7 @@ declare const ControlPlaneEventTypeSchema: z.ZodEnum<{
|
|
|
2865
2883
|
entity_created: "entity_created";
|
|
2866
2884
|
entity_updated: "entity_updated";
|
|
2867
2885
|
entity_deleted: "entity_deleted";
|
|
2886
|
+
web_api_error: "web_api_error";
|
|
2868
2887
|
}>;
|
|
2869
2888
|
declare const ControlPlaneSemanticEventSchema: z.ZodObject<{
|
|
2870
2889
|
event_type: z.ZodEnum<{
|
|
@@ -2887,6 +2906,7 @@ declare const ControlPlaneSemanticEventSchema: z.ZodObject<{
|
|
|
2887
2906
|
entity_created: "entity_created";
|
|
2888
2907
|
entity_updated: "entity_updated";
|
|
2889
2908
|
entity_deleted: "entity_deleted";
|
|
2909
|
+
web_api_error: "web_api_error";
|
|
2890
2910
|
}>;
|
|
2891
2911
|
source: z.ZodEnum<{
|
|
2892
2912
|
system: "system";
|
|
@@ -8460,6 +8480,10 @@ declare const TenantConfigSchema: z.ZodObject<{
|
|
|
8460
8480
|
timezone: z.ZodDefault<z.ZodString>;
|
|
8461
8481
|
default_currency: z.ZodDefault<z.ZodString>;
|
|
8462
8482
|
logo_url: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
8483
|
+
activity_window_days: z.ZodDefault<z.ZodNumber>;
|
|
8484
|
+
activity_high_min: z.ZodDefault<z.ZodNumber>;
|
|
8485
|
+
activity_medium_min: z.ZodDefault<z.ZodNumber>;
|
|
8486
|
+
activity_low_min: z.ZodDefault<z.ZodNumber>;
|
|
8463
8487
|
}, z.core.$strip>;
|
|
8464
8488
|
declare const McpConfigSchema: z.ZodObject<{
|
|
8465
8489
|
id: z.ZodString;
|
|
@@ -8913,6 +8937,7 @@ declare const AuthSsoProviderSchema: z.ZodObject<{
|
|
|
8913
8937
|
|
|
8914
8938
|
|
|
8915
8939
|
|
|
8940
|
+
type ActivityLevel = z.infer<typeof ActivityLevelSchema>;
|
|
8916
8941
|
type AddOn = z.infer<typeof AddOnSchema>;
|
|
8917
8942
|
type AddOnVariation = z.infer<typeof AddOnVariationSchema>;
|
|
8918
8943
|
type Alert = z.infer<typeof AlertSchema>;
|
|
@@ -12808,6 +12833,8 @@ declare class RevTurbineCustomerSdk {
|
|
|
12808
12833
|
* session so a render loop can never flood the channel.
|
|
12809
12834
|
*/
|
|
12810
12835
|
private readonly emittedResolutionDiagnostics;
|
|
12836
|
+
/** Session dedup for {@link reportSdkError}, keyed by `reason`. */
|
|
12837
|
+
private readonly emittedSdkErrors;
|
|
12811
12838
|
private static readonly RESOLUTION_DIAGNOSTIC_SESSION_CAP;
|
|
12812
12839
|
/**
|
|
12813
12840
|
* Gate for `resolution_failure` diagnostics (plan 144 TASK-21). Honors BOTH
|
|
@@ -12829,6 +12856,25 @@ declare class RevTurbineCustomerSdk {
|
|
|
12829
12856
|
* `(reason, primary handle)` for the session and capped.
|
|
12830
12857
|
*/
|
|
12831
12858
|
private emitResolutionFailure;
|
|
12859
|
+
/**
|
|
12860
|
+
* Report that the SDK itself failed (plan 182 TASK-5).
|
|
12861
|
+
*
|
|
12862
|
+
* `sdk_error` was declared in the meta taxonomy with no emitter. This is the
|
|
12863
|
+
* "the SDK malfunctioned" signal — distinct from `resolution_failure`, which
|
|
12864
|
+
* means a *decision* produced nothing. It rides the same anonymous
|
|
12865
|
+
* `events_sdk_meta` lane: no tenant, no user, no placement identity.
|
|
12866
|
+
*
|
|
12867
|
+
* Deduped on `reason` for the session and capped, mirroring
|
|
12868
|
+
* {@link emitResolutionFailure} — an SDK failing inside a render loop must
|
|
12869
|
+
* not become a telemetry flood. Best-effort and never throwing: this is
|
|
12870
|
+
* called from `catch` blocks, so it must not manufacture a second failure.
|
|
12871
|
+
*
|
|
12872
|
+
* @param reason Stable, categorical cause (e.g. `provider_init_failed`) —
|
|
12873
|
+
* what dashboards group by.
|
|
12874
|
+
* @param message Human-readable detail for triage, sent on the same footing
|
|
12875
|
+
* as `sdk_validation_warning`'s message, which already ships on this lane.
|
|
12876
|
+
*/
|
|
12877
|
+
reportSdkError(reason: string, message?: string): void;
|
|
12832
12878
|
/** Fire the one anonymous `sdk_init` adoption beacon at startup. */
|
|
12833
12879
|
private emitSdkInitTelemetry;
|
|
12834
12880
|
/**
|
|
@@ -15278,6 +15324,8 @@ interface components {
|
|
|
15278
15324
|
derived_config_version?: components["schemas"]["Anon_4fc4bfa2adad_11"];
|
|
15279
15325
|
context_hash?: components["schemas"]["Anon_4fc4bfa2adad_12"];
|
|
15280
15326
|
derived_computed_at?: components["schemas"]["Anon_711dc9708535_6"];
|
|
15327
|
+
activity_score?: components["schemas"]["Anon_9f0494e90be4"];
|
|
15328
|
+
activity_score_computed_at?: components["schemas"]["Anon_8b48719136dc"];
|
|
15281
15329
|
};
|
|
15282
15330
|
UserPlanContext: {
|
|
15283
15331
|
id: components["schemas"]["Anon_57796118d046_22"];
|
|
@@ -15979,6 +16027,10 @@ interface components {
|
|
|
15979
16027
|
Anon_6e27a15ab40e: string;
|
|
15980
16028
|
Anon_9b3712d35cb1_2: string;
|
|
15981
16029
|
Anon_0401cc56cccf: string | null;
|
|
16030
|
+
Anon_ea288f4ef558_4: number;
|
|
16031
|
+
Anon_ea288f4ef558_5: number;
|
|
16032
|
+
Anon_ea288f4ef558_6: number;
|
|
16033
|
+
Anon_ea288f4ef558_7: number;
|
|
15982
16034
|
Anon_f5f914e20719: string | null;
|
|
15983
16035
|
Anon_7cb541e84f22_26: boolean;
|
|
15984
16036
|
Anon_7618621a871f: string[];
|
|
@@ -16207,6 +16259,10 @@ interface components {
|
|
|
16207
16259
|
Anon_4fc4bfa2adad_12: components["schemas"]["Anon_f090cb615c84_24"];
|
|
16208
16260
|
Anon_f090cb615c84_24: string | null;
|
|
16209
16261
|
Anon_711dc9708535_6: components["schemas"]["Anon_11c9ad639448"];
|
|
16262
|
+
Anon_9f0494e90be4: components["schemas"]["Anon_c648138a0918_5"];
|
|
16263
|
+
Anon_c648138a0918_5: number | null;
|
|
16264
|
+
Anon_8b48719136dc: components["schemas"]["Anon_b0c21ae8f968_2"];
|
|
16265
|
+
Anon_b0c21ae8f968_2: string | null;
|
|
16210
16266
|
PlanAnchor: components["schemas"]["Anon_f38b4727dc66"];
|
|
16211
16267
|
Plan: {
|
|
16212
16268
|
id: components["schemas"]["Anon_fb248bf5a9f7_9"];
|
|
@@ -16662,7 +16718,7 @@ interface components {
|
|
|
16662
16718
|
plan_id: components["schemas"]["Anon_57796118d046_48"];
|
|
16663
16719
|
status: components["schemas"]["Anon_4c4a2255399f"];
|
|
16664
16720
|
started_at: components["schemas"]["Anon_be3e2585472d_6"];
|
|
16665
|
-
expires_at?: components["schemas"]["
|
|
16721
|
+
expires_at?: components["schemas"]["Anon_8b48719136dc_1"];
|
|
16666
16722
|
trial_limit_type: components["schemas"]["Anon_e7cb93d064a8_4"];
|
|
16667
16723
|
usage_entitlement_handle?: components["schemas"]["Anon_4e04ec5cc4e6_10"];
|
|
16668
16724
|
usage_limit_value?: components["schemas"]["Anon_9717c0445e52_4"];
|
|
@@ -17078,6 +17134,10 @@ interface components {
|
|
|
17078
17134
|
timezone: components["schemas"]["Anon_c44ee03a9c5e"];
|
|
17079
17135
|
default_currency: components["schemas"]["Anon_64586219ef83_1"];
|
|
17080
17136
|
logo_url: components["schemas"]["Anon_4ea2be32d6f6"];
|
|
17137
|
+
activity_window_days: components["schemas"]["Anon_cc13e27bffac"];
|
|
17138
|
+
activity_high_min: components["schemas"]["Anon_22f56f3bbe54"];
|
|
17139
|
+
activity_medium_min: components["schemas"]["Anon_e569072f1780"];
|
|
17140
|
+
activity_low_min: components["schemas"]["Anon_d7461958625e_2"];
|
|
17081
17141
|
};
|
|
17082
17142
|
McpConfig: {
|
|
17083
17143
|
id: components["schemas"]["Anon_fb248bf5a9f7_9"];
|
|
@@ -17195,11 +17255,11 @@ interface components {
|
|
|
17195
17255
|
Anon_4dc549443053_1: components["schemas"]["Anon_7cb541e84f22_35"];
|
|
17196
17256
|
Anon_7cb541e84f22_35: boolean;
|
|
17197
17257
|
/** @default null */
|
|
17198
|
-
Anon_e4ee8e45dcea_1: components["schemas"]["
|
|
17199
|
-
|
|
17258
|
+
Anon_e4ee8e45dcea_1: components["schemas"]["Anon_b0c21ae8f968_3"];
|
|
17259
|
+
Anon_b0c21ae8f968_3: string | null;
|
|
17200
17260
|
/** @default 1 */
|
|
17201
|
-
Anon_ffffc3c874cb_1: components["schemas"]["
|
|
17202
|
-
|
|
17261
|
+
Anon_ffffc3c874cb_1: components["schemas"]["Anon_ea288f4ef558_8"];
|
|
17262
|
+
Anon_ea288f4ef558_8: number;
|
|
17203
17263
|
/** @default null */
|
|
17204
17264
|
Anon_71a2fb329804_1: components["schemas"]["Anon_86192233f412_1"];
|
|
17205
17265
|
Anon_86192233f412_1: number | null;
|
|
@@ -17266,8 +17326,8 @@ interface components {
|
|
|
17266
17326
|
Anon_57796118d046_32: string;
|
|
17267
17327
|
Anon_cf08caa6d850_1: components["schemas"]["StripePriceBillingPeriod"];
|
|
17268
17328
|
/** @default null */
|
|
17269
|
-
Anon_79391150fda1_1: components["schemas"]["
|
|
17270
|
-
|
|
17329
|
+
Anon_79391150fda1_1: components["schemas"]["Anon_c648138a0918_6"];
|
|
17330
|
+
Anon_c648138a0918_6: number | null;
|
|
17271
17331
|
Anon_1788a9a8a0b9: components["schemas"]["CurrencyOutput"];
|
|
17272
17332
|
/** @enum {string} */
|
|
17273
17333
|
Anon_93bacb23d436_1: "usd" | "eur" | "gbp";
|
|
@@ -17279,9 +17339,9 @@ interface components {
|
|
|
17279
17339
|
Anon_062d958a93c4_4: components["schemas"]["Anon_7cb541e84f22_36"];
|
|
17280
17340
|
Anon_7cb541e84f22_36: boolean;
|
|
17281
17341
|
Anon_711dc9708535_7: components["schemas"]["Anon_11c9ad639448_1"];
|
|
17282
|
-
|
|
17342
|
+
Anon_b0c21ae8f968_4: string | null;
|
|
17283
17343
|
/** @default null */
|
|
17284
|
-
Anon_11c9ad639448_1: components["schemas"]["
|
|
17344
|
+
Anon_11c9ad639448_1: components["schemas"]["Anon_b0c21ae8f968_4"];
|
|
17285
17345
|
Anon_fb248bf5a9f7_15: string;
|
|
17286
17346
|
Anon_4c26b3baab05_15: components["schemas"]["Anon_52ba84a4bbf3_1"];
|
|
17287
17347
|
Anon_af12d548dbee_16: components["schemas"]["Anon_0eb2e3b6e08c_1"];
|
|
@@ -17452,16 +17512,16 @@ interface components {
|
|
|
17452
17512
|
[key: string]: unknown;
|
|
17453
17513
|
};
|
|
17454
17514
|
/** @default null */
|
|
17455
|
-
Anon_45e0e0d4a0da_3: components["schemas"]["
|
|
17456
|
-
|
|
17515
|
+
Anon_45e0e0d4a0da_3: components["schemas"]["Anon_c648138a0918_7"];
|
|
17516
|
+
Anon_c648138a0918_7: number | null;
|
|
17457
17517
|
/** @default session */
|
|
17458
17518
|
Anon_6ab4ae68d10d_1: components["schemas"]["CapPeriod"];
|
|
17459
17519
|
/** @default 7 */
|
|
17460
17520
|
Anon_3380fd32e874_1: components["schemas"]["Anon_97cc9ecfdea9_20"];
|
|
17461
17521
|
Anon_97cc9ecfdea9_20: number;
|
|
17462
17522
|
/** @default null */
|
|
17463
|
-
Anon_45e0e0d4a0da_4: components["schemas"]["
|
|
17464
|
-
|
|
17523
|
+
Anon_45e0e0d4a0da_4: components["schemas"]["Anon_c648138a0918_8"];
|
|
17524
|
+
Anon_c648138a0918_8: number | null;
|
|
17465
17525
|
/** @default next_tier_up */
|
|
17466
17526
|
Anon_beae1a1b3acf_1: components["schemas"]["Anon_761abd3347d0_1"];
|
|
17467
17527
|
/** @enum {string} */
|
|
@@ -17633,8 +17693,8 @@ interface components {
|
|
|
17633
17693
|
Anon_97cc9ecfdea9_26: number;
|
|
17634
17694
|
Anon_4e04ec5cc4e6_8: components["schemas"]["Anon_9ac136edb99a_15"];
|
|
17635
17695
|
Anon_9ac136edb99a_15: string;
|
|
17636
|
-
Anon_9717c0445e52_2: components["schemas"]["
|
|
17637
|
-
|
|
17696
|
+
Anon_9717c0445e52_2: components["schemas"]["Anon_ea288f4ef558_9"];
|
|
17697
|
+
Anon_ea288f4ef558_9: number;
|
|
17638
17698
|
/** @default false */
|
|
17639
17699
|
Anon_062d958a93c4_6: components["schemas"]["Anon_7cb541e84f22_41"];
|
|
17640
17700
|
Anon_7cb541e84f22_41: boolean;
|
|
@@ -17646,8 +17706,8 @@ interface components {
|
|
|
17646
17706
|
Anon_96f9066c2fdc_55: components["schemas"]["Anon_00404e686415_58"];
|
|
17647
17707
|
Anon_00404e686415_58: string;
|
|
17648
17708
|
/** @default 1 */
|
|
17649
|
-
Anon_d7461958625e_1: components["schemas"]["
|
|
17650
|
-
|
|
17709
|
+
Anon_d7461958625e_1: components["schemas"]["Anon_ea288f4ef558_10"];
|
|
17710
|
+
Anon_ea288f4ef558_10: number;
|
|
17651
17711
|
/** @default true */
|
|
17652
17712
|
Anon_493deecc809a_8: components["schemas"]["Anon_7cb541e84f22_43"];
|
|
17653
17713
|
Anon_7cb541e84f22_43: boolean;
|
|
@@ -17665,8 +17725,8 @@ interface components {
|
|
|
17665
17725
|
Anon_3b260614cba4_3: number | null;
|
|
17666
17726
|
Anon_4e04ec5cc4e6_9: components["schemas"]["Anon_9ac136edb99a_16"];
|
|
17667
17727
|
Anon_9ac136edb99a_16: string;
|
|
17668
|
-
Anon_9717c0445e52_3: components["schemas"]["
|
|
17669
|
-
|
|
17728
|
+
Anon_9717c0445e52_3: components["schemas"]["Anon_ea288f4ef558_11"];
|
|
17729
|
+
Anon_ea288f4ef558_11: number;
|
|
17670
17730
|
/** @default signup */
|
|
17671
17731
|
Anon_df3d212fc186_1: components["schemas"]["ReverseTrialStartPolicy"];
|
|
17672
17732
|
Anon_7e1e37293611_11: components["schemas"]["Anon_97cc9ecfdea9_27"];
|
|
@@ -17695,14 +17755,14 @@ interface components {
|
|
|
17695
17755
|
Anon_4c4a2255399f: components["schemas"]["TrialStatus"];
|
|
17696
17756
|
/** Format: date-time */
|
|
17697
17757
|
Anon_be3e2585472d_6: string;
|
|
17698
|
-
|
|
17699
|
-
|
|
17758
|
+
Anon_8b48719136dc_1: components["schemas"]["Anon_b0c21ae8f968_5"];
|
|
17759
|
+
Anon_b0c21ae8f968_5: string | null;
|
|
17700
17760
|
/** @default time */
|
|
17701
17761
|
Anon_e7cb93d064a8_4: components["schemas"]["TrialLimitType"];
|
|
17702
17762
|
Anon_4e04ec5cc4e6_10: components["schemas"]["Anon_9ac136edb99a_17"];
|
|
17703
17763
|
Anon_9ac136edb99a_17: string;
|
|
17704
|
-
Anon_9717c0445e52_4: components["schemas"]["
|
|
17705
|
-
|
|
17764
|
+
Anon_9717c0445e52_4: components["schemas"]["Anon_ea288f4ef558_12"];
|
|
17765
|
+
Anon_ea288f4ef558_12: number;
|
|
17706
17766
|
Anon_711dc9708535_9: components["schemas"]["Anon_11c9ad639448_1"];
|
|
17707
17767
|
Anon_711dc9708535_10: components["schemas"]["Anon_11c9ad639448_1"];
|
|
17708
17768
|
Anon_f27cb44c32f6_21: components["schemas"]["Anon_f2d1b3e449b4_1"];
|
|
@@ -17786,8 +17846,8 @@ interface components {
|
|
|
17786
17846
|
Anon_f8dbfffc0ce2_23: components["schemas"]["Anon_681004346c78_26"];
|
|
17787
17847
|
Anon_681004346c78_26: string[];
|
|
17788
17848
|
/** @default null */
|
|
17789
|
-
Anon_45e0e0d4a0da_5: components["schemas"]["
|
|
17790
|
-
|
|
17849
|
+
Anon_45e0e0d4a0da_5: components["schemas"]["Anon_c648138a0918_9"];
|
|
17850
|
+
Anon_c648138a0918_9: number | null;
|
|
17791
17851
|
/** @default 0 */
|
|
17792
17852
|
Anon_b32f11b2ff5e_5: components["schemas"]["Anon_97cc9ecfdea9_28"];
|
|
17793
17853
|
Anon_97cc9ecfdea9_28: number;
|
|
@@ -18144,8 +18204,8 @@ interface components {
|
|
|
18144
18204
|
Anon_f090cb615c84_45: string | null;
|
|
18145
18205
|
Anon_24a0ac3f017b: components["schemas"]["Anon_11c9ad639448_1"];
|
|
18146
18206
|
/** @default null */
|
|
18147
|
-
Anon_f11abbefcf83: components["schemas"]["
|
|
18148
|
-
|
|
18207
|
+
Anon_f11abbefcf83: components["schemas"]["Anon_c648138a0918_10"];
|
|
18208
|
+
Anon_c648138a0918_10: number | null;
|
|
18149
18209
|
/** @default false */
|
|
18150
18210
|
Anon_062d958a93c4_18: components["schemas"]["Anon_7cb541e84f22_67"];
|
|
18151
18211
|
Anon_7cb541e84f22_67: boolean;
|
|
@@ -18254,6 +18314,18 @@ interface components {
|
|
|
18254
18314
|
/** @default null */
|
|
18255
18315
|
Anon_4ea2be32d6f6: components["schemas"]["Anon_0401cc56cccf_1"];
|
|
18256
18316
|
Anon_0401cc56cccf_1: string | null;
|
|
18317
|
+
/** @default 30 */
|
|
18318
|
+
Anon_cc13e27bffac: components["schemas"]["Anon_ea288f4ef558_13"];
|
|
18319
|
+
Anon_ea288f4ef558_13: number;
|
|
18320
|
+
/** @default 10 */
|
|
18321
|
+
Anon_22f56f3bbe54: components["schemas"]["Anon_ea288f4ef558_14"];
|
|
18322
|
+
Anon_ea288f4ef558_14: number;
|
|
18323
|
+
/** @default 3 */
|
|
18324
|
+
Anon_e569072f1780: components["schemas"]["Anon_ea288f4ef558_15"];
|
|
18325
|
+
Anon_ea288f4ef558_15: number;
|
|
18326
|
+
/** @default 1 */
|
|
18327
|
+
Anon_d7461958625e_2: components["schemas"]["Anon_ea288f4ef558_16"];
|
|
18328
|
+
Anon_ea288f4ef558_16: number;
|
|
18257
18329
|
/** Format: uri */
|
|
18258
18330
|
Anon_e263ce55cb2f: string;
|
|
18259
18331
|
/** @default null */
|
|
@@ -18463,6 +18535,10 @@ interface components {
|
|
|
18463
18535
|
Anon_4fc4bfa2adad_17: components["schemas"]["Anon_f090cb615c84_54"];
|
|
18464
18536
|
Anon_f090cb615c84_54: string | null;
|
|
18465
18537
|
Anon_711dc9708535_20: components["schemas"]["Anon_11c9ad639448_1"];
|
|
18538
|
+
Anon_9f0494e90be4_1: components["schemas"]["Anon_c648138a0918_11"];
|
|
18539
|
+
Anon_c648138a0918_11: number | null;
|
|
18540
|
+
Anon_8b48719136dc_2: components["schemas"]["Anon_b0c21ae8f968_6"];
|
|
18541
|
+
Anon_b0c21ae8f968_6: string | null;
|
|
18466
18542
|
/** @default usd */
|
|
18467
18543
|
CurrencyOutput: components["schemas"]["Anon_93bacb23d436_1"];
|
|
18468
18544
|
EntitlementRuleTargetOutput: {
|
|
@@ -18773,6 +18849,8 @@ interface components {
|
|
|
18773
18849
|
derived_config_version?: components["schemas"]["Anon_4fc4bfa2adad_16"];
|
|
18774
18850
|
context_hash?: components["schemas"]["Anon_4fc4bfa2adad_17"];
|
|
18775
18851
|
derived_computed_at: components["schemas"]["Anon_711dc9708535_20"];
|
|
18852
|
+
activity_score?: components["schemas"]["Anon_9f0494e90be4_1"];
|
|
18853
|
+
activity_score_computed_at?: components["schemas"]["Anon_8b48719136dc_2"];
|
|
18776
18854
|
};
|
|
18777
18855
|
UserPlanContextOutput: {
|
|
18778
18856
|
id: components["schemas"]["Anon_57796118d046_73"];
|
|
@@ -21292,5 +21370,5 @@ declare class RevTurbineServer {
|
|
|
21292
21370
|
private fetchTheme;
|
|
21293
21371
|
}
|
|
21294
21372
|
|
|
21295
|
-
export { AddOnSchema, AddOnVariationSchema, AlertSchema, AnchorFields, ApiKeySchema, ApiKeyStatusSchema, AuditActorTypeSchema, AuditEventSchema, AuthAccountSchema, AuthApiKeySchema, AuthInvitationSchema, AuthMemberSchema, AuthOrganizationSchema, AuthPasskeySchema, AuthSessionSchema, AuthSsoProviderSchema, AuthTwoFactorSchema, AuthUserSchema, AuthVerificationSchema, BillingCadenceSchema, BillingHealthStatusSchema, BrandingConfigSchema, BrowserRuntime, BrowserStorage, CONTROL_PLANE_EVENT_SOURCE, CONTROL_PLANE_SOURCE_KEY, CapEnforcer, CapPeriodSchema$1 as CapPeriodSchema, ChangeLogActionSchema, ChangeLogEntrySchema, ClientContextSchema, ClientSafe, CohortMonthSchema, ContentPayloadSegmentEntrySchema, ContentPlacementPayloadSchema, ContentPromotionSchema, ContentUiPathSchema, ContextVisibility, ControlPlaneEventSourceSchema, ControlPlaneEventTypeSchema, ControlPlaneSemanticEventSchema, CtaActionTypeSchema, CtaObjectSchema, CtaPathSchema, CtaPathTypeSchema, CurrencySchema, CustomerOverrideDurationSchema, CustomerOverrideSchema, CustomerOverrideStatusSchema, CustomerOverrideTypeSchema, CustomerSchema, DEFAULT_BRANDING, DEFAULT_THEME, DataClassification, DecisionEngine, DecisionLogSchema, DecisionOnly, DescriptionField, DimensionCategorySchema, DimensionSourceTypeSchema, DiscountTypeSchema, DomainProviderRegistry, DriftReportSchema, EnforcementActionSchema, EnforcementModeSchema, EntitlementCheckResultSchema, EntitlementEvalLogSchema, EntitlementGate, EntitlementGrantSchema, EntitlementGrantSetSchema, EntitlementGrantSourceSchema, EntitlementGrantStatusSchema, EntitlementRulePeriodUnitSchema, EntitlementRuleSchema, EntitlementRuleTargetKindSchema, EntitlementRuleTargetSchema, EntitlementRuleValidatedSchema, EntitlementRuleVariantSchema, EntitlementSchema, EntitlementStatusSchema, EntitlementTypeSchema, EnvironmentPromotionRequestSchema, EnvironmentSchema, EnvironmentStatusSchema, EventEnvelopeSchema, EventIngestBatchSchema, EventSearchParamsSchema, EventSourceSchema, ExperimentSchema, ExperimentStatusSchema, ExperimentTypeSchema, ExperimentVariantSchema, RevTurbineConfigPlacementItemSchema as ExportedConfigPlacementItemSchema, RevTurbineConfigSchema as ExportedConfigSchema, RevTurbineConfigSegmentsItemPredicatesItemSchema as ExportedConfigSegmentsItemPredicatesItemSchema, RevTurbineConfigSegmentsItemSchema as ExportedConfigSegmentsItemSchema, RevTurbineConfigUiPathActionTypeSchema as ExportedConfigUiPathActionTypeSchema, FIXED_BANNER_TEMPLATE_IDS, FIXED_SURFACE_TEMPLATE_IDS, FeatureFlagSchema, FeatureFlagValueSchema, FeatureGateTriggerPayloadSchema, FieldDefinitionSchema, FlagValueTypeSchema, FreeTrialRuleSchema, FreeTrialSettingsSchema, FunnelStepSchema, GATED_SURFACE_TEMPLATE_IDS, GENERAL_BANNER_TEMPLATE_IDS, GENERAL_MODAL_TEMPLATE_IDS, GENERAL_TOAST_TEMPLATE_IDS, HANDLE_PATTERN, HandleField, INGEST_WRITE_SCOPE, IdField, IdentityKind, IdentitySchema, InMemoryStorage, IngestedEventSchema, InteractionTracker, InvitationStatusSchema, KpiAggregateSchema, MESSAGE_SURFACE_TEMPLATE_IDS, McpConfigSchema, McpTokenScopeSchema, MessageBlockContentSchema, MessageBlockRecordSchema, MessageBlockSchema, MessageSchema, MetadataField, MeteringConfigSchema, NameField, NullableDatetimeField, OnboardingChecklistSchema, OnboardingStateSchema, OptimizationSuggestionSchema, OrgMemberRoleSchema, PERSISTED_SCHEMA_FACET_EXEMPTIONS, PLAYBOOK_FORMAT_VERSION, PaginatedResponseSchema, PaginationParamsSchema, PaymentTriggerPayloadSchema, PermissionActionSchema, PermissionResourceSchema, PermissionSchema, PersonalizationTokenSchema, PlacementCapRuleSchema, PlacementCategorySchema, PlacementController, PlacementDecisionOutputSchema, PlacementPayloadSchema, PlacementPerformanceRowSchema, PlacementSchema, PlacementSettingsCapRuleGroupItemSchema, PlacementSettingsCapRuleSchema, PlacementSettingsCapStateSchema, PlacementSettingsSchema, PlacementTestModeSchema, PlacementTestUserIdentifierTypeSchema, PlacementTestUserSchema, PlacementTypeRegistry, PlacementVariantSchema, PlacementWarningCodeSchema, PlacementWarningSchema, PlanSchema, PlanVariationSchema, PlanVisibilitySchema, PlaybookBodySchema, PlaybookHeaderSchema, PlaybookObjectSchema, PlaybookSchema, PlaybookStrictSchema, PlaybookVersionDeployResultSchema, PlaybookVersionDiffSchema, PlaybookVersionEntrySummarySchema, PlaybookVersionSchema, PlaybookVersionStatusSchema, PresentationRecordSchema, PriceSourceSchema, PricingModelSchema, PromotionSchema, PromotionStatusSchema, RECOGNIZED_UPDATE_KEYS, ROLE_PERMISSIONS, ROLE_RANK, ApiError as RevTurbineApiError, RevTurbineConfigAddonVariationsItemSchema, RevTurbineConfigAddonsItemSchema, RevTurbineConfigEnforcementDefaultsItemSchema, RevTurbineConfigEntitlementRulesItemSchema, RevTurbineConfigEntitlementsItemSchema, RevTurbineConfigMeterBindingsItemSchema, RevTurbineConfigPeriodCapSchema, RevTurbineConfigPersonalizationTokensItemSchema, RevTurbineConfigPlacementCategorySchema, RevTurbineConfigPlacementItemSchema, RevTurbineConfigPlacementPayloadItemSchema, RevTurbineConfigPlacementSettingsItemSchema, RevTurbineConfigPlacementSlotsItemSchema, RevTurbineConfigPlacementTriggerSchema, RevTurbineConfigPlanVariationsItemSchema, RevTurbineConfigPlansItemSchema, RevTurbineConfigSchema, RevTurbineConfigSeatTypesItemSchema, RevTurbineConfigSegmentDimensionsItemSchema, RevTurbineConfigSegmentsItemPredicatesItemSchema, RevTurbineConfigSegmentsItemSchema, RevTurbineConfigSlotConfigsItemSchema, RevTurbineConfigStudioCtaConfigSchema, RevTurbineConfigStudioPayloadCapsSchema, RevTurbineConfigStudioPayloadSchema, RevTurbineConfigStudioPayloadSurfaceSchema, RevTurbineConfigStudioPayloadTargetSchema, RevTurbineConfigSurfaceTemplatesItemFieldsItemSchema, RevTurbineConfigSurfaceTemplatesItemSchema, RevTurbineConfigUiPathActionTypeSchema, RevTurbineCustomerSdk, RevTurbineServer, RevenueMetricSchema, ReverseTrialRuleSchema, ReverseTrialSettingsSchema, ReverseTrialStartPolicySchema, RoleSchema, RuleVisibilitySchema, RuntimeMode, RuntimePromotionSnapshotSchema, SERVER_TRAITS_DOMAIN, SchemaContext, SchemaExposure, SchemaPersistence, SchemaSource, SdkConfigShapeSchema, SdkMetaEventSchema, SdkMetaEventTypeSchema, SdkMetaIngestBatchSchema, SdkSession, SeatTypeSchema, SegmentDimensionSchema, SegmentSchema, SegmentValueSchema, SemanticEventSchema, ServerEvaluationPayloadDecisionsItemSchema, ServerEvaluationPayloadEntitlementsValueSchema, ServerEvaluationPayloadSchema, ServerEvaluationPayloadTrialStatusSchema, ServerEvaluationPayloadUserContextSchema, ServerEvaluationPayloadUserSchema, ServerOnly, ServerUserContextProvider, SeveritySchema, StripeIntegrationConfigSchema, StripePriceBillingPeriodSchema, StripePriceMockBillingPeriodSchema, StripePriceMockSchema, StripePriceSchema, StudioSurfaceTypeSchema, SuggestionSeveritySchema, SupersessionReasonSchema, SupersessionRecordSchema, SurfaceSlotSchema, SurfaceTemplateSchema, SurfaceTypeCapRuleSchema, SurfaceTypeSchema, TemplateFieldTypeSchema, TenantConfigSchema, TenantIdField, TenantSchema, TenantStatusSchema, ThemeSchema, TimestampFields, TrackEventSchema, TrackIngestBatchSchema, TreatmentInteractionInputSchema, TreatmentInteractionTypeSchema, TrialEligibilityScopeSchema, TrialInstanceSchema, TrialLimitPolicySchema, TrialStatusSchema, TrialTriggerPayloadSchema, TriggerEventTypeSchema, UiPreferenceSchema, UsageAllocationSchema$1 as UsageAllocationSchema, UsageEnforcementSettingsSchema, UsagePeriodScopeSchema, UsageTriggerPayloadSchema, UserContextSchema, UserInstanceContextSchema, UserPlanContextSchema, UserRoleSchema, UserTrialStatusSchema, UserUsageEntrySchema, VersionFields, WebhookEventLogSchema, WebhookEventSourceSchema, WebhookEventStatusSchema, analyticsPaths, applyValueMaps, buildControlPlaneEvent, changelogPaths, clearPersistedTheme, collectPersistedSchemas, collectVersionedConfigEntities, configPaths, contentPaths, createAnalyticsProvider, createChainedPlacementRequest, createCustomEndpointRuntimeConfig, createEntitlementPlacementRequest, createHydrationProviders, createLocalRuntimeConfig, createPostHogAnalyticsProvider, createPostHogIntegration, createRevTurbineApiClient, createSemanticEvent, createServerRuntimeConfig, createSlotPlacementRequest, createStaticPlacementContentLookupProvider, createStaticPlacementResolver, createStaticProviders, createStrictLocalRuntimeConfig, createTreatmentInteraction, customerPaths, defineUiPathResolvers, deriveLocalTrialStatusFromInstance, deriveReverseTrialGrants, entitlementPaths, entitlementResultDenies, environmentPaths, evaluateSegments, evaluateTrialStatus, eventPaths, experimentPaths, filterExternalSchemas, filterPersistedSchemas, findActiveTrialInstance, findLatestStartedTrialInstance, getDefaultRegistry, getFieldClassification, getFieldVisibility, getObjectFieldClassifications, getObjectFieldVisibilities, getSchemaClassification, getSchemaDeprecation, getSchemaExposure, getSchemaFacets, getSchemaIdentity, getSchemaPersistence, initRevTurbine, isBrowser, isServer, isVersionedConfigEntity, loadTheme, makeAnchor, mergeTheme, mintedIdentity, namedIdentity, normalizeConfigArtifactOrThrow, normalizeLegacyConfig, parsePlaybook, parsePromotion, parseUiPath, placementPaths, planPaths, playbookVersionPaths, projectClientSafe, promotionPaths, requireSchemaFacets, resetDefaultRegistry, resolveBranding, resolveContent, resolveLocalPlaybook, resolvePayloadForUser, resolvePayloadForUserWithProvider, resolvePersistentStorage, resolveSessionStorage, resolveTokens, runtimePaths, schemaDeprecation, schemaFacets, scopesSubsetOfRole, segmentPaths, settingsPaths, tenantPaths, toCreateSchema, toWritableSchema, trialPaths, uiPreferencePaths, userContextPaths, validatePlacementThresholdWarnings };
|
|
21296
|
-
export type { AdapterBaseOptions, AddOn, AddOnVariation, Alert, AnalyticsEventHandler, AnalyticsEventProperties, AnalyticsEventTransformer, AnalyticsProviderOptions, AnyDomainProvider, ApiKey, ApiKeyStatus, AuditActorType, AuditEvent, AuthAccount, AuthApiKey, AuthInvitation, AuthMember, AuthOrganization, AuthPasskey, AuthSession, AuthSsoProvider, AuthTwoFactor, AuthUser, AuthVerification, BillingCadence, BillingHealthStatus, BrandingConfig, BrandingResolutionInput, BrandingSource, BrowserRuntimeOptions, CapEnforcementResult, CapPeriod, ChangeListener, ChangeLogAction, ChangeLogEntry, ClientContext, CohortMonth, ConfigArtifact, ContentPayloadSegmentEntry, ContentPlacementPayload, ContentPromotion, ContentProvider, ContentProviderState, ContentUiPath, ControlPlaneEmitInput, ControlPlaneEventSource, ControlPlaneEventType, ControlPlaneSemanticEvent, CtaActionType, CtaHandler, CtaHandlerMap, CtaHandlerProvider, CtaHandlerProviderState, CtaObject, CtaPath, CtaPathType, Currency, Customer, CustomerOverride, CustomerOverrideDuration, CustomerOverrideStatus, CustomerOverrideType, DataClassificationValue, DecisionEngineOptions, DecisionLog, DeriveTrialStatusInput, DimensionCategory, DimensionSourceType, DiscountType, DomainProvider, DomainProviderName, DriftReport, EnforcementAction, EnforcementMode, Entitlement, EntitlementCheckResult$1 as EntitlementCheckResult, EntitlementEvalLog, EntitlementGateOptions, EntitlementGateState, EntitlementGrant$1 as EntitlementGrant, EntitlementGrantSet$1 as EntitlementGrantSet, EntitlementGrantSource, EntitlementGrantStatus, EntitlementProvider, EntitlementProviderState, EntitlementResult, EntitlementRule, EntitlementRulePeriodUnit, EntitlementRuleSnapshot, EntitlementRuleTarget, EntitlementRuleTargetKind$1 as EntitlementRuleTargetKind, EntitlementRuleValidated, EntitlementRuleVariant, EntitlementStatus, EntitlementType, EntitlementUsageEntry, Environment, EnvironmentPromotionRequest, EnvironmentStatus, EvaluateTrialStatusInput, EvaluateTrialStatusResult, EvaluationContext, EventConsumer, EventConsumerProvider, EventConsumerProviderState, EventEnvelope, EventIngestBatch, EventSearchParams, EventSource, Experiment, ExperimentStatus, ExperimentType, ExperimentVariant, ExportedConfig, ExportedConfigPlacementItem, ExportedConfigProvider, ExportedConfigSegmentsItem, ExportedConfigSegmentsItemPredicatesItem, ExportedConfigUiPathActionType, FeatureFlag, FeatureFlagValue, FeatureGateTriggerPayload, FieldDefinition, FlagValueType, FreeTrialRule, FreeTrialSettings, FunnelStep, IdentifyContextInput, Identity, IdentityDeclaration, IngestWriteScope, IngestedEvent, InteractionState, InvitationStatus, JsonObject, JsonValue, KpiAggregate, LegacyConfigTargetDefaults, LocalPlacementDataset, LocalPlacementEntry, LocalPlacementPayload, LocalPlacementSurface, McpConfig, McpTokenScope, Message, MessageBlock, MessageBlockContent, MessageBlockRecord, MessageBlockSnapshot, MeteringConfig, OnboardingChecklist, OnboardingState, OptimizationSuggestion, OrgMemberRole, PaginationParams, PaymentTriggerPayload, Permission, PermissionAction, PermissionResource, PersonalizationContext, PersonalizationToken, Placement, PlacementCapPolicy, PlacementCapRule, PlacementCategory, PlacementContentFields, PlacementContentLookupProvider, PlacementControllerOptions, PlacementControllerState, PlacementCustomCode, PlacementDecisionOutput, PlacementEmittedThresholdLookup, PlacementOutput, PlacementPayload, PlacementPayloadSnapshot, PlacementPerformanceRow, PlacementPreviewConfig, PlacementPromotion, PlacementSettings, PlacementSettingsCapRule, PlacementSettingsCapRuleGroupItem, PlacementSettingsCapState, PlacementSlotProps, PlacementSlotType, PlacementTestMode, PlacementTestUser, PlacementTestUserIdentifierType, PlacementUiPath, PlacementUiPathActionType, PlacementVariant, PlacementWarning, PlacementWarningCode, Plan, PlanProvider, PlanProviderState, PlanRuleSnapshot, PlanVariation, PlanVisibility, Playbook, PlaybookBody, PlaybookHeader, PlaybookObject, PlaybookStrict, PlaybookVersion, PlaybookVersionDeployResult, PlaybookVersionDiff, PlaybookVersionEntrySummary, PlaybookVersionStatus, PostHogAnalyticsProviderOptions, PostHogIntegrationOptions, PostHogLike, PresentationCapState, PresentationRecord, PriceSource, PricingModel, Promotion, PromotionStatus, RegisterPlacementSlotTypeOptions, ResolvedBranding, ResolvedContent, ResolvedDomainType, ResolvedPayload, ResolvedProviderContext, RevTurbineApiClient, RevTurbineApiClientConfig, paths as RevTurbineApiPaths, RevTurbineBootstrapDecisionInput, RevTurbineChainedPlacementRequestOptions, RevTurbineConfig, RevTurbineConfigAddonVariationsItem, RevTurbineConfigAddonsItem, RevTurbineConfigEnforcementDefaultsItem, RevTurbineConfigEntitlementRulesItem, RevTurbineConfigEntitlementsItem, RevTurbineConfigMeterBindingsItem, RevTurbineConfigPeriodCap, RevTurbineConfigPersonalizationTokensItem, RevTurbineConfigPlacementCategory, RevTurbineConfigPlacementItem, RevTurbineConfigPlacementPayloadItem, RevTurbineConfigPlacementSettingsItem, RevTurbineConfigPlacementSlotsItem, RevTurbineConfigPlacementTrigger, RevTurbineConfigPlanVariationsItem, RevTurbineConfigPlansItem, RevTurbineConfigProvider, RevTurbineConfigSeatTypesItem, RevTurbineConfigSegmentDimensionsItem, RevTurbineConfigSegmentsItem, RevTurbineConfigSegmentsItemPredicatesItem, RevTurbineConfigSlotConfigsItem, RevTurbineConfigStudioCtaConfig, RevTurbineConfigStudioPayload, RevTurbineConfigStudioPayloadCaps, RevTurbineConfigStudioPayloadSurface, RevTurbineConfigStudioPayloadTarget, RevTurbineConfigSurfaceTemplatesItem, RevTurbineConfigSurfaceTemplatesItemFieldsItem, RevTurbineConfigUiPathActionType, RevTurbineContextMode, RevTurbineContextPolicy, RevTurbineDecisionContent, RevTurbineEndpointOverrides, RevTurbineEntitlementContext, RevTurbineEntitlementPlacementRequestOptions, RevTurbineEntitlementRuleEvaluation, RevTurbineEventBatchingOptions, RevTurbineEventEnvelope, RevTurbineEventOptions, RevTurbineGateResult, RevTurbineImpressionMetadata, RevTurbineInitBaseOptions, RevTurbineInitInputOptions, RevTurbineInitOptions, RevTurbineInitOptionsStrict, RevTurbineInitWithProviderOptions, RevTurbineLocalOnlyMinimalInitOptions, RevTurbineLocalRuntimeData, RevTurbineLocalRuntimeOptions, RevTurbineLocalRuntimeResolvers, RevTurbineMeterUsageOverride, RevTurbinePageContext, RevTurbinePersonalizationTokens, RevTurbinePlacementBehaviorFlags, RevTurbinePlacementConfig, RevTurbinePlacementContent, RevTurbinePlacementDecision, RevTurbinePlacementDecisionExplanation, RevTurbinePlacementDecisionInput, RevTurbinePlacementDecisionOverrides, RevTurbinePlacementPayloadEvaluation, RevTurbinePlacementRecord, RevTurbinePlacementRequestConfig, RevTurbinePlacementRuleEvaluation, RevTurbinePlacementTypeEntity, RevTurbinePolicySnapshot, RevTurbineProviderFactory, RevTurbineProviderFailureSlotBehavior, RevTurbineRequiredUiPathResolvers, RevTurbineRuntimeMode, RevTurbineSdkMode, RevTurbineSdkProvider, RevTurbineSegmentEvaluation, RevTurbineSegmentPredicateEvaluation, RevTurbineSemanticEvent, RevTurbineServerOptions, RevTurbineSlotPlacementRequestOptions, RevTurbineStorage, RevTurbineSurfaceSlotConfig, RevTurbineSurfaceType, RevTurbineTargeting, RevTurbineTelemetryOptions, RevTurbineTheme, RevTurbineThemeColors, RevTurbineThemeInput, RevTurbineThemeShadows, RevTurbineThemeShape, RevTurbineThemeTypography, RevTurbineTreatmentInteractionInput, RevTurbineTreatmentInteractionOptions, RevTurbineTreatmentInteractionType, RevTurbineTrialContext, RevTurbineTriggerEvent, RevTurbineTriggerPayload, RevTurbineUiPathActionTypes, RevTurbineUiPathResolver, RevTurbineUiPathResolverMap, RevTurbineUiPathResolverValidationIssue, RevTurbineUiPathResolverValidationOptions, RevTurbineUiPathResolverValidationReport, RevTurbineUpdateInput, RevTurbineUsageSnapshot, RevTurbineUsageSnapshotEntry, RevTurbineUserContext, RevenueMetric, ReverseTrialRule, ReverseTrialSettings, ReverseTrialStartPolicy, Role, RuleProvider, RuleProviderState, RuleVisibility, RuntimePromotionSnapshot, SchemaDeprecation, SchemaFacetOptions, SchemaFacets, SdkConfigShape, SdkEventProperties, SdkMetaEvent, SdkMetaEventType, SdkMetaIngestBatch, SdkMetadata, SdkSessionOptions, SdkTraits, SeatType, Segment, SegmentDimension, SegmentProvider, SegmentProviderState, SegmentValue, SemanticEvent, ServerEntitlementResult, ServerEvaluationHydrationPayload, ServerEvaluationPayload, ServerEvaluationPayloadDecisionsItem, ServerEvaluationPayloadEntitlementsValue, ServerEvaluationPayloadTrialStatus, ServerEvaluationPayloadUser, ServerEvaluationPayloadUserContext, ServerEvaluationRequest, ServerPlacementDecision, ServerPlacementRequest, ServerUserContext, ServerUserContextSnapshot, Severity, StaticPlacementResolverOptions, StripeIntegrationConfig, StripePrice, StripePriceBillingPeriod, StripePriceMock, StripePriceMockBillingPeriod, StudioSurfaceType, SuggestionSeverity, SupersessionReason, SupersessionRecord, SuppressionResult, SurfaceSlot, SurfaceTemplate, SurfaceType, SurfaceTypeCapRule, TelemetryConsent, TemplateFieldType, Tenant, TenantConfig, TenantStatus, Theme, ThemeLoaderOptions, ThemeProvider, ThemeProviderState, TrackEvent, TrackIngestBatch, Trait, TraitsNamespace, TraitsProvider, TraitsProviderState, TreatmentInteractionInput, TreatmentInteractionType, TrialEligibilityScope, TrialInstance, TrialLimitPolicy, TrialStatus, TrialStatusProvider, TrialStatusTraits, TrialTriggerPayload, TriggerEventType, UiPreference, UnvalidatedConfigArtifact, UsageAllocation, UsageBalances, UsageEnforcementSettings, UsagePeriodScope, UsageTraits, UsageTraitsProvider, UsageTriggerPayload, UserContext, UserContextInput, UserInstanceContext, UserPlanContext, UserRole, UserTargetingContext, UserTrialStatus, UserUsageEntry, WebhookEventLog, WebhookEventSource, WebhookEventStatus };
|
|
21373
|
+
export { ActivityLevelSchema, AddOnSchema, AddOnVariationSchema, AlertSchema, AnchorFields, ApiKeySchema, ApiKeyStatusSchema, AuditActorTypeSchema, AuditEventSchema, AuthAccountSchema, AuthApiKeySchema, AuthInvitationSchema, AuthMemberSchema, AuthOrganizationSchema, AuthPasskeySchema, AuthSessionSchema, AuthSsoProviderSchema, AuthTwoFactorSchema, AuthUserSchema, AuthVerificationSchema, BillingCadenceSchema, BillingHealthStatusSchema, BrandingConfigSchema, BrowserRuntime, BrowserStorage, CONTROL_PLANE_EVENT_SOURCE, CONTROL_PLANE_SOURCE_KEY, CapEnforcer, CapPeriodSchema$1 as CapPeriodSchema, ChangeLogActionSchema, ChangeLogEntrySchema, ClientContextSchema, ClientSafe, CohortMonthSchema, ContentPayloadSegmentEntrySchema, ContentPlacementPayloadSchema, ContentPromotionSchema, ContentUiPathSchema, ContextVisibility, ControlPlaneEventSourceSchema, ControlPlaneEventTypeSchema, ControlPlaneSemanticEventSchema, CtaActionTypeSchema, CtaObjectSchema, CtaPathSchema, CtaPathTypeSchema, CurrencySchema, CustomerOverrideDurationSchema, CustomerOverrideSchema, CustomerOverrideStatusSchema, CustomerOverrideTypeSchema, CustomerSchema, DEFAULT_BRANDING, DEFAULT_THEME, DataClassification, DecisionEngine, DecisionLogSchema, DecisionOnly, DescriptionField, DimensionCategorySchema, DimensionSourceTypeSchema, DiscountTypeSchema, DomainProviderRegistry, DriftReportSchema, EnforcementActionSchema, EnforcementModeSchema, EntitlementCheckResultSchema, EntitlementEvalLogSchema, EntitlementGate, EntitlementGrantSchema, EntitlementGrantSetSchema, EntitlementGrantSourceSchema, EntitlementGrantStatusSchema, EntitlementRulePeriodUnitSchema, EntitlementRuleSchema, EntitlementRuleTargetKindSchema, EntitlementRuleTargetSchema, EntitlementRuleValidatedSchema, EntitlementRuleVariantSchema, EntitlementSchema, EntitlementStatusSchema, EntitlementTypeSchema, EnvironmentPromotionRequestSchema, EnvironmentSchema, EnvironmentStatusSchema, EventEnvelopeSchema, EventIngestBatchSchema, EventSearchParamsSchema, EventSourceSchema, ExperimentSchema, ExperimentStatusSchema, ExperimentTypeSchema, ExperimentVariantSchema, RevTurbineConfigPlacementItemSchema as ExportedConfigPlacementItemSchema, RevTurbineConfigSchema as ExportedConfigSchema, RevTurbineConfigSegmentsItemPredicatesItemSchema as ExportedConfigSegmentsItemPredicatesItemSchema, RevTurbineConfigSegmentsItemSchema as ExportedConfigSegmentsItemSchema, RevTurbineConfigUiPathActionTypeSchema as ExportedConfigUiPathActionTypeSchema, FIXED_BANNER_TEMPLATE_IDS, FIXED_SURFACE_TEMPLATE_IDS, FeatureFlagSchema, FeatureFlagValueSchema, FeatureGateTriggerPayloadSchema, FieldDefinitionSchema, FlagValueTypeSchema, FreeTrialRuleSchema, FreeTrialSettingsSchema, FunnelStepSchema, GATED_SURFACE_TEMPLATE_IDS, GENERAL_BANNER_TEMPLATE_IDS, GENERAL_MODAL_TEMPLATE_IDS, GENERAL_TOAST_TEMPLATE_IDS, HANDLE_PATTERN, HandleField, INGEST_WRITE_SCOPE, IdField, IdentityKind, IdentitySchema, InMemoryStorage, IngestedEventSchema, InteractionTracker, InvitationStatusSchema, KpiAggregateSchema, MESSAGE_SURFACE_TEMPLATE_IDS, McpConfigSchema, McpTokenScopeSchema, MessageBlockContentSchema, MessageBlockRecordSchema, MessageBlockSchema, MessageSchema, MetadataField, MeteringConfigSchema, NameField, NullableDatetimeField, OnboardingChecklistSchema, OnboardingStateSchema, OptimizationSuggestionSchema, OrgMemberRoleSchema, PERSISTED_SCHEMA_FACET_EXEMPTIONS, PLAYBOOK_FORMAT_VERSION, PaginatedResponseSchema, PaginationParamsSchema, PaymentTriggerPayloadSchema, PermissionActionSchema, PermissionResourceSchema, PermissionSchema, PersonalizationTokenSchema, PlacementCapRuleSchema, PlacementCategorySchema, PlacementController, PlacementDecisionOutputSchema, PlacementPayloadSchema, PlacementPerformanceRowSchema, PlacementSchema, PlacementSettingsCapRuleGroupItemSchema, PlacementSettingsCapRuleSchema, PlacementSettingsCapStateSchema, PlacementSettingsSchema, PlacementTestModeSchema, PlacementTestUserIdentifierTypeSchema, PlacementTestUserSchema, PlacementTypeRegistry, PlacementVariantSchema, PlacementWarningCodeSchema, PlacementWarningSchema, PlanSchema, PlanVariationSchema, PlanVisibilitySchema, PlaybookBodySchema, PlaybookHeaderSchema, PlaybookObjectSchema, PlaybookSchema, PlaybookStrictSchema, PlaybookVersionDeployResultSchema, PlaybookVersionDiffSchema, PlaybookVersionEntrySummarySchema, PlaybookVersionSchema, PlaybookVersionStatusSchema, PresentationRecordSchema, PriceSourceSchema, PricingModelSchema, PromotionSchema, PromotionStatusSchema, RECOGNIZED_UPDATE_KEYS, ROLE_PERMISSIONS, ROLE_RANK, ApiError as RevTurbineApiError, RevTurbineConfigAddonVariationsItemSchema, RevTurbineConfigAddonsItemSchema, RevTurbineConfigEnforcementDefaultsItemSchema, RevTurbineConfigEntitlementRulesItemSchema, RevTurbineConfigEntitlementsItemSchema, RevTurbineConfigMeterBindingsItemSchema, RevTurbineConfigPeriodCapSchema, RevTurbineConfigPersonalizationTokensItemSchema, RevTurbineConfigPlacementCategorySchema, RevTurbineConfigPlacementItemSchema, RevTurbineConfigPlacementPayloadItemSchema, RevTurbineConfigPlacementSettingsItemSchema, RevTurbineConfigPlacementSlotsItemSchema, RevTurbineConfigPlacementTriggerSchema, RevTurbineConfigPlanVariationsItemSchema, RevTurbineConfigPlansItemSchema, RevTurbineConfigSchema, RevTurbineConfigSeatTypesItemSchema, RevTurbineConfigSegmentDimensionsItemSchema, RevTurbineConfigSegmentsItemPredicatesItemSchema, RevTurbineConfigSegmentsItemSchema, RevTurbineConfigSlotConfigsItemSchema, RevTurbineConfigStudioCtaConfigSchema, RevTurbineConfigStudioPayloadCapsSchema, RevTurbineConfigStudioPayloadSchema, RevTurbineConfigStudioPayloadSurfaceSchema, RevTurbineConfigStudioPayloadTargetSchema, RevTurbineConfigSurfaceTemplatesItemFieldsItemSchema, RevTurbineConfigSurfaceTemplatesItemSchema, RevTurbineConfigUiPathActionTypeSchema, RevTurbineCustomerSdk, RevTurbineServer, RevenueMetricSchema, ReverseTrialRuleSchema, ReverseTrialSettingsSchema, ReverseTrialStartPolicySchema, RoleSchema, RuleVisibilitySchema, RuntimeMode, RuntimePromotionSnapshotSchema, SERVER_TRAITS_DOMAIN, SchemaContext, SchemaExposure, SchemaPersistence, SchemaSource, SdkConfigShapeSchema, SdkMetaEventSchema, SdkMetaEventTypeSchema, SdkMetaIngestBatchSchema, SdkSession, SeatTypeSchema, SegmentDimensionSchema, SegmentSchema, SegmentValueSchema, SemanticEventSchema, ServerEvaluationPayloadDecisionsItemSchema, ServerEvaluationPayloadEntitlementsValueSchema, ServerEvaluationPayloadSchema, ServerEvaluationPayloadTrialStatusSchema, ServerEvaluationPayloadUserContextSchema, ServerEvaluationPayloadUserSchema, ServerOnly, ServerUserContextProvider, SeveritySchema, StripeIntegrationConfigSchema, StripePriceBillingPeriodSchema, StripePriceMockBillingPeriodSchema, StripePriceMockSchema, StripePriceSchema, StudioSurfaceTypeSchema, SuggestionSeveritySchema, SupersessionReasonSchema, SupersessionRecordSchema, SurfaceSlotSchema, SurfaceTemplateSchema, SurfaceTypeCapRuleSchema, SurfaceTypeSchema, TemplateFieldTypeSchema, TenantConfigSchema, TenantIdField, TenantSchema, TenantStatusSchema, ThemeSchema, TimestampFields, TrackEventSchema, TrackIngestBatchSchema, TreatmentInteractionInputSchema, TreatmentInteractionTypeSchema, TrialEligibilityScopeSchema, TrialInstanceSchema, TrialLimitPolicySchema, TrialStatusSchema, TrialTriggerPayloadSchema, TriggerEventTypeSchema, UiPreferenceSchema, UsageAllocationSchema$1 as UsageAllocationSchema, UsageEnforcementSettingsSchema, UsagePeriodScopeSchema, UsageTriggerPayloadSchema, UserContextSchema, UserInstanceContextSchema, UserPlanContextSchema, UserRoleSchema, UserTrialStatusSchema, UserUsageEntrySchema, VersionFields, WebhookEventLogSchema, WebhookEventSourceSchema, WebhookEventStatusSchema, analyticsPaths, applyValueMaps, buildControlPlaneEvent, changelogPaths, clearPersistedTheme, collectPersistedSchemas, collectVersionedConfigEntities, configPaths, contentPaths, createAnalyticsProvider, createChainedPlacementRequest, createCustomEndpointRuntimeConfig, createEntitlementPlacementRequest, createHydrationProviders, createLocalRuntimeConfig, createPostHogAnalyticsProvider, createPostHogIntegration, createRevTurbineApiClient, createSemanticEvent, createServerRuntimeConfig, createSlotPlacementRequest, createStaticPlacementContentLookupProvider, createStaticPlacementResolver, createStaticProviders, createStrictLocalRuntimeConfig, createTreatmentInteraction, customerPaths, defineUiPathResolvers, deriveLocalTrialStatusFromInstance, deriveReverseTrialGrants, entitlementPaths, entitlementResultDenies, environmentPaths, evaluateSegments, evaluateTrialStatus, eventPaths, experimentPaths, filterExternalSchemas, filterPersistedSchemas, findActiveTrialInstance, findLatestStartedTrialInstance, getDefaultRegistry, getFieldClassification, getFieldVisibility, getObjectFieldClassifications, getObjectFieldVisibilities, getSchemaClassification, getSchemaDeprecation, getSchemaExposure, getSchemaFacets, getSchemaIdentity, getSchemaPersistence, initRevTurbine, isBrowser, isServer, isVersionedConfigEntity, loadTheme, makeAnchor, mergeTheme, mintedIdentity, namedIdentity, normalizeConfigArtifactOrThrow, normalizeLegacyConfig, parsePlaybook, parsePromotion, parseUiPath, placementPaths, planPaths, playbookVersionPaths, projectClientSafe, promotionPaths, requireSchemaFacets, resetDefaultRegistry, resolveBranding, resolveContent, resolveLocalPlaybook, resolvePayloadForUser, resolvePayloadForUserWithProvider, resolvePersistentStorage, resolveSessionStorage, resolveTokens, runtimePaths, schemaDeprecation, schemaFacets, scopesSubsetOfRole, segmentPaths, settingsPaths, tenantPaths, toCreateSchema, toWritableSchema, trialPaths, uiPreferencePaths, userContextPaths, validatePlacementThresholdWarnings };
|
|
21374
|
+
export type { ActivityLevel, AdapterBaseOptions, AddOn, AddOnVariation, Alert, AnalyticsEventHandler, AnalyticsEventProperties, AnalyticsEventTransformer, AnalyticsProviderOptions, AnyDomainProvider, ApiKey, ApiKeyStatus, AuditActorType, AuditEvent, AuthAccount, AuthApiKey, AuthInvitation, AuthMember, AuthOrganization, AuthPasskey, AuthSession, AuthSsoProvider, AuthTwoFactor, AuthUser, AuthVerification, BillingCadence, BillingHealthStatus, BrandingConfig, BrandingResolutionInput, BrandingSource, BrowserRuntimeOptions, CapEnforcementResult, CapPeriod, ChangeListener, ChangeLogAction, ChangeLogEntry, ClientContext, CohortMonth, ConfigArtifact, ContentPayloadSegmentEntry, ContentPlacementPayload, ContentPromotion, ContentProvider, ContentProviderState, ContentUiPath, ControlPlaneEmitInput, ControlPlaneEventSource, ControlPlaneEventType, ControlPlaneSemanticEvent, CtaActionType, CtaHandler, CtaHandlerMap, CtaHandlerProvider, CtaHandlerProviderState, CtaObject, CtaPath, CtaPathType, Currency, Customer, CustomerOverride, CustomerOverrideDuration, CustomerOverrideStatus, CustomerOverrideType, DataClassificationValue, DecisionEngineOptions, DecisionLog, DeriveTrialStatusInput, DimensionCategory, DimensionSourceType, DiscountType, DomainProvider, DomainProviderName, DriftReport, EnforcementAction, EnforcementMode, Entitlement, EntitlementCheckResult$1 as EntitlementCheckResult, EntitlementEvalLog, EntitlementGateOptions, EntitlementGateState, EntitlementGrant$1 as EntitlementGrant, EntitlementGrantSet$1 as EntitlementGrantSet, EntitlementGrantSource, EntitlementGrantStatus, EntitlementProvider, EntitlementProviderState, EntitlementResult, EntitlementRule, EntitlementRulePeriodUnit, EntitlementRuleSnapshot, EntitlementRuleTarget, EntitlementRuleTargetKind$1 as EntitlementRuleTargetKind, EntitlementRuleValidated, EntitlementRuleVariant, EntitlementStatus, EntitlementType, EntitlementUsageEntry, Environment, EnvironmentPromotionRequest, EnvironmentStatus, EvaluateTrialStatusInput, EvaluateTrialStatusResult, EvaluationContext, EventConsumer, EventConsumerProvider, EventConsumerProviderState, EventEnvelope, EventIngestBatch, EventSearchParams, EventSource, Experiment, ExperimentStatus, ExperimentType, ExperimentVariant, ExportedConfig, ExportedConfigPlacementItem, ExportedConfigProvider, ExportedConfigSegmentsItem, ExportedConfigSegmentsItemPredicatesItem, ExportedConfigUiPathActionType, FeatureFlag, FeatureFlagValue, FeatureGateTriggerPayload, FieldDefinition, FlagValueType, FreeTrialRule, FreeTrialSettings, FunnelStep, IdentifyContextInput, Identity, IdentityDeclaration, IngestWriteScope, IngestedEvent, InteractionState, InvitationStatus, JsonObject, JsonValue, KpiAggregate, LegacyConfigTargetDefaults, LocalPlacementDataset, LocalPlacementEntry, LocalPlacementPayload, LocalPlacementSurface, McpConfig, McpTokenScope, Message, MessageBlock, MessageBlockContent, MessageBlockRecord, MessageBlockSnapshot, MeteringConfig, OnboardingChecklist, OnboardingState, OptimizationSuggestion, OrgMemberRole, PaginationParams, PaymentTriggerPayload, Permission, PermissionAction, PermissionResource, PersonalizationContext, PersonalizationToken, Placement, PlacementCapPolicy, PlacementCapRule, PlacementCategory, PlacementContentFields, PlacementContentLookupProvider, PlacementControllerOptions, PlacementControllerState, PlacementCustomCode, PlacementDecisionOutput, PlacementEmittedThresholdLookup, PlacementOutput, PlacementPayload, PlacementPayloadSnapshot, PlacementPerformanceRow, PlacementPreviewConfig, PlacementPromotion, PlacementSettings, PlacementSettingsCapRule, PlacementSettingsCapRuleGroupItem, PlacementSettingsCapState, PlacementSlotProps, PlacementSlotType, PlacementTestMode, PlacementTestUser, PlacementTestUserIdentifierType, PlacementUiPath, PlacementUiPathActionType, PlacementVariant, PlacementWarning, PlacementWarningCode, Plan, PlanProvider, PlanProviderState, PlanRuleSnapshot, PlanVariation, PlanVisibility, Playbook, PlaybookBody, PlaybookHeader, PlaybookObject, PlaybookStrict, PlaybookVersion, PlaybookVersionDeployResult, PlaybookVersionDiff, PlaybookVersionEntrySummary, PlaybookVersionStatus, PostHogAnalyticsProviderOptions, PostHogIntegrationOptions, PostHogLike, PresentationCapState, PresentationRecord, PriceSource, PricingModel, Promotion, PromotionStatus, RegisterPlacementSlotTypeOptions, ResolvedBranding, ResolvedContent, ResolvedDomainType, ResolvedPayload, ResolvedProviderContext, RevTurbineApiClient, RevTurbineApiClientConfig, paths as RevTurbineApiPaths, RevTurbineBootstrapDecisionInput, RevTurbineChainedPlacementRequestOptions, RevTurbineConfig, RevTurbineConfigAddonVariationsItem, RevTurbineConfigAddonsItem, RevTurbineConfigEnforcementDefaultsItem, RevTurbineConfigEntitlementRulesItem, RevTurbineConfigEntitlementsItem, RevTurbineConfigMeterBindingsItem, RevTurbineConfigPeriodCap, RevTurbineConfigPersonalizationTokensItem, RevTurbineConfigPlacementCategory, RevTurbineConfigPlacementItem, RevTurbineConfigPlacementPayloadItem, RevTurbineConfigPlacementSettingsItem, RevTurbineConfigPlacementSlotsItem, RevTurbineConfigPlacementTrigger, RevTurbineConfigPlanVariationsItem, RevTurbineConfigPlansItem, RevTurbineConfigProvider, RevTurbineConfigSeatTypesItem, RevTurbineConfigSegmentDimensionsItem, RevTurbineConfigSegmentsItem, RevTurbineConfigSegmentsItemPredicatesItem, RevTurbineConfigSlotConfigsItem, RevTurbineConfigStudioCtaConfig, RevTurbineConfigStudioPayload, RevTurbineConfigStudioPayloadCaps, RevTurbineConfigStudioPayloadSurface, RevTurbineConfigStudioPayloadTarget, RevTurbineConfigSurfaceTemplatesItem, RevTurbineConfigSurfaceTemplatesItemFieldsItem, RevTurbineConfigUiPathActionType, RevTurbineContextMode, RevTurbineContextPolicy, RevTurbineDecisionContent, RevTurbineEndpointOverrides, RevTurbineEntitlementContext, RevTurbineEntitlementPlacementRequestOptions, RevTurbineEntitlementRuleEvaluation, RevTurbineEventBatchingOptions, RevTurbineEventEnvelope, RevTurbineEventOptions, RevTurbineGateResult, RevTurbineImpressionMetadata, RevTurbineInitBaseOptions, RevTurbineInitInputOptions, RevTurbineInitOptions, RevTurbineInitOptionsStrict, RevTurbineInitWithProviderOptions, RevTurbineLocalOnlyMinimalInitOptions, RevTurbineLocalRuntimeData, RevTurbineLocalRuntimeOptions, RevTurbineLocalRuntimeResolvers, RevTurbineMeterUsageOverride, RevTurbinePageContext, RevTurbinePersonalizationTokens, RevTurbinePlacementBehaviorFlags, RevTurbinePlacementConfig, RevTurbinePlacementContent, RevTurbinePlacementDecision, RevTurbinePlacementDecisionExplanation, RevTurbinePlacementDecisionInput, RevTurbinePlacementDecisionOverrides, RevTurbinePlacementPayloadEvaluation, RevTurbinePlacementRecord, RevTurbinePlacementRequestConfig, RevTurbinePlacementRuleEvaluation, RevTurbinePlacementTypeEntity, RevTurbinePolicySnapshot, RevTurbineProviderFactory, RevTurbineProviderFailureSlotBehavior, RevTurbineRequiredUiPathResolvers, RevTurbineRuntimeMode, RevTurbineSdkMode, RevTurbineSdkProvider, RevTurbineSegmentEvaluation, RevTurbineSegmentPredicateEvaluation, RevTurbineSemanticEvent, RevTurbineServerOptions, RevTurbineSlotPlacementRequestOptions, RevTurbineStorage, RevTurbineSurfaceSlotConfig, RevTurbineSurfaceType, RevTurbineTargeting, RevTurbineTelemetryOptions, RevTurbineTheme, RevTurbineThemeColors, RevTurbineThemeInput, RevTurbineThemeShadows, RevTurbineThemeShape, RevTurbineThemeTypography, RevTurbineTreatmentInteractionInput, RevTurbineTreatmentInteractionOptions, RevTurbineTreatmentInteractionType, RevTurbineTrialContext, RevTurbineTriggerEvent, RevTurbineTriggerPayload, RevTurbineUiPathActionTypes, RevTurbineUiPathResolver, RevTurbineUiPathResolverMap, RevTurbineUiPathResolverValidationIssue, RevTurbineUiPathResolverValidationOptions, RevTurbineUiPathResolverValidationReport, RevTurbineUpdateInput, RevTurbineUsageSnapshot, RevTurbineUsageSnapshotEntry, RevTurbineUserContext, RevenueMetric, ReverseTrialRule, ReverseTrialSettings, ReverseTrialStartPolicy, Role, RuleProvider, RuleProviderState, RuleVisibility, RuntimePromotionSnapshot, SchemaDeprecation, SchemaFacetOptions, SchemaFacets, SdkConfigShape, SdkEventProperties, SdkMetaEvent, SdkMetaEventType, SdkMetaIngestBatch, SdkMetadata, SdkSessionOptions, SdkTraits, SeatType, Segment, SegmentDimension, SegmentProvider, SegmentProviderState, SegmentValue, SemanticEvent, ServerEntitlementResult, ServerEvaluationHydrationPayload, ServerEvaluationPayload, ServerEvaluationPayloadDecisionsItem, ServerEvaluationPayloadEntitlementsValue, ServerEvaluationPayloadTrialStatus, ServerEvaluationPayloadUser, ServerEvaluationPayloadUserContext, ServerEvaluationRequest, ServerPlacementDecision, ServerPlacementRequest, ServerUserContext, ServerUserContextSnapshot, Severity, StaticPlacementResolverOptions, StripeIntegrationConfig, StripePrice, StripePriceBillingPeriod, StripePriceMock, StripePriceMockBillingPeriod, StudioSurfaceType, SuggestionSeverity, SupersessionReason, SupersessionRecord, SuppressionResult, SurfaceSlot, SurfaceTemplate, SurfaceType, SurfaceTypeCapRule, TelemetryConsent, TemplateFieldType, Tenant, TenantConfig, TenantStatus, Theme, ThemeLoaderOptions, ThemeProvider, ThemeProviderState, TrackEvent, TrackIngestBatch, Trait, TraitsNamespace, TraitsProvider, TraitsProviderState, TreatmentInteractionInput, TreatmentInteractionType, TrialEligibilityScope, TrialInstance, TrialLimitPolicy, TrialStatus, TrialStatusProvider, TrialStatusTraits, TrialTriggerPayload, TriggerEventType, UiPreference, UnvalidatedConfigArtifact, UsageAllocation, UsageBalances, UsageEnforcementSettings, UsagePeriodScope, UsageTraits, UsageTraitsProvider, UsageTriggerPayload, UserContext, UserContextInput, UserInstanceContext, UserPlanContext, UserRole, UserTargetingContext, UserTrialStatus, UserUsageEntry, WebhookEventLog, WebhookEventSource, WebhookEventStatus };
|