@distilled.cloud/cloudflare 0.16.6 → 0.16.8
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.
|
@@ -2121,6 +2121,12 @@ export interface PutScriptRequest {
|
|
|
2121
2121
|
headSamplingRate?: number | null;
|
|
2122
2122
|
persist?: boolean;
|
|
2123
2123
|
} | null;
|
|
2124
|
+
traces?: {
|
|
2125
|
+
enabled: boolean;
|
|
2126
|
+
headSamplingRate?: number;
|
|
2127
|
+
destinations?: string[];
|
|
2128
|
+
persist?: boolean;
|
|
2129
|
+
};
|
|
2124
2130
|
};
|
|
2125
2131
|
placement?: {
|
|
2126
2132
|
mode: "smart";
|
|
@@ -2190,6 +2196,12 @@ export interface PutScriptResponse {
|
|
|
2190
2196
|
headSamplingRate?: number | null;
|
|
2191
2197
|
persist?: boolean | null;
|
|
2192
2198
|
} | null;
|
|
2199
|
+
traces?: {
|
|
2200
|
+
enabled: boolean;
|
|
2201
|
+
headSamplingRate?: number | null;
|
|
2202
|
+
destinations?: string[] | null;
|
|
2203
|
+
persist?: boolean | null;
|
|
2204
|
+
} | null;
|
|
2193
2205
|
} | null;
|
|
2194
2206
|
/** Configuration for [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Specify either mode for Smart Placement, or one of region/hostname/host for targeted place */
|
|
2195
2207
|
placement?: {
|
|
@@ -2975,6 +2987,12 @@ export interface GetScriptScriptAndVersionSettingResponse {
|
|
|
2975
2987
|
headSamplingRate?: number | null;
|
|
2976
2988
|
persist?: boolean | null;
|
|
2977
2989
|
} | null;
|
|
2990
|
+
traces?: {
|
|
2991
|
+
enabled: boolean;
|
|
2992
|
+
headSamplingRate?: number | null;
|
|
2993
|
+
destinations?: string[] | null;
|
|
2994
|
+
persist?: boolean | null;
|
|
2995
|
+
} | null;
|
|
2978
2996
|
} | null;
|
|
2979
2997
|
/** Configuration for [Smart Placement](https://developers.cloudflare.com/workers/configuration/smart-placement). Specify either mode for Smart Placement, or one of region/hostname/host for targeted place */
|
|
2980
2998
|
placement?: unknown | null;
|
|
@@ -3479,6 +3497,12 @@ export interface GetScriptSettingResponse {
|
|
|
3479
3497
|
headSamplingRate?: number | null;
|
|
3480
3498
|
persist?: boolean | null;
|
|
3481
3499
|
} | null;
|
|
3500
|
+
traces?: {
|
|
3501
|
+
enabled: boolean;
|
|
3502
|
+
headSamplingRate?: number | null;
|
|
3503
|
+
destinations?: string[] | null;
|
|
3504
|
+
persist?: boolean | null;
|
|
3505
|
+
} | null;
|
|
3482
3506
|
} | null;
|
|
3483
3507
|
/** Tags associated with the Worker. */
|
|
3484
3508
|
tags?: string[] | null;
|
|
@@ -3509,6 +3533,12 @@ export interface PatchScriptSettingRequest {
|
|
|
3509
3533
|
headSamplingRate?: number | null;
|
|
3510
3534
|
persist?: boolean;
|
|
3511
3535
|
} | null;
|
|
3536
|
+
traces?: {
|
|
3537
|
+
enabled: boolean;
|
|
3538
|
+
headSamplingRate?: number;
|
|
3539
|
+
destinations?: string[];
|
|
3540
|
+
persist?: boolean;
|
|
3541
|
+
};
|
|
3512
3542
|
} | null;
|
|
3513
3543
|
/** Body param: Tags associated with the Worker. */
|
|
3514
3544
|
tags?: string[] | null;
|
|
@@ -3534,6 +3564,12 @@ export interface PatchScriptSettingResponse {
|
|
|
3534
3564
|
headSamplingRate?: number | null;
|
|
3535
3565
|
persist?: boolean | null;
|
|
3536
3566
|
} | null;
|
|
3567
|
+
traces?: {
|
|
3568
|
+
enabled: boolean;
|
|
3569
|
+
headSamplingRate?: number | null;
|
|
3570
|
+
destinations?: string[] | null;
|
|
3571
|
+
persist?: boolean | null;
|
|
3572
|
+
} | null;
|
|
3537
3573
|
} | null;
|
|
3538
3574
|
/** Tags associated with the Worker. */
|
|
3539
3575
|
tags?: string[] | null;
|