@distilled.cloud/cloudflare 0.24.7 → 0.24.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@distilled.cloud/cloudflare",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.8",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/alchemy-run/distilled",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"specs:update": "git -C specs/cloudflare-typescript fetch && git -C specs/cloudflare-typescript checkout main && git -C specs/cloudflare-typescript pull"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@distilled.cloud/core": "0.24.
|
|
66
|
+
"@distilled.cloud/core": "0.24.8"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@effect/platform-node": ">=4.0.0-beta.66 || >=4.0.0",
|
|
@@ -3714,18 +3714,18 @@ export const GetBillingTopupConfigRequest =
|
|
|
3714
3714
|
|
|
3715
3715
|
export interface GetBillingTopupConfigResponse {
|
|
3716
3716
|
amount: number | null;
|
|
3717
|
-
disabledReason
|
|
3718
|
-
error
|
|
3719
|
-
lastFailedAt
|
|
3717
|
+
disabledReason?: string | null;
|
|
3718
|
+
error?: string | null;
|
|
3719
|
+
lastFailedAt?: number | null;
|
|
3720
3720
|
threshold: number | null;
|
|
3721
3721
|
}
|
|
3722
3722
|
|
|
3723
3723
|
export const GetBillingTopupConfigResponse =
|
|
3724
3724
|
/*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
3725
3725
|
amount: Schema.Union([Schema.Number, Schema.Null]),
|
|
3726
|
-
disabledReason: Schema.Union([Schema.String, Schema.Null]),
|
|
3727
|
-
error: Schema.Union([Schema.String, Schema.Null]),
|
|
3728
|
-
lastFailedAt: Schema.Union([Schema.Number, Schema.Null]),
|
|
3726
|
+
disabledReason: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
3727
|
+
error: Schema.optional(Schema.Union([Schema.String, Schema.Null])),
|
|
3728
|
+
lastFailedAt: Schema.optional(Schema.Union([Schema.Number, Schema.Null])),
|
|
3729
3729
|
threshold: Schema.Union([Schema.Number, Schema.Null]),
|
|
3730
3730
|
}).pipe(
|
|
3731
3731
|
T.ResponsePath("result"),
|