@distilled.cloud/cloudflare 0.24.7 → 0.24.9

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,11 +1,12 @@
1
1
  {
2
2
  "name": "@distilled.cloud/cloudflare",
3
- "version": "0.24.7",
3
+ "version": "0.24.9",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/alchemy-run/distilled",
7
7
  "directory": "packages/cloudflare"
8
8
  },
9
+ "license": "Apache-2.0",
9
10
  "type": "module",
10
11
  "sideEffects": false,
11
12
  "files": [
@@ -63,7 +64,7 @@
63
64
  "specs:update": "git -C specs/cloudflare-typescript fetch && git -C specs/cloudflare-typescript checkout main && git -C specs/cloudflare-typescript pull"
64
65
  },
65
66
  "dependencies": {
66
- "@distilled.cloud/core": "0.24.7"
67
+ "@distilled.cloud/core": "0.24.9"
67
68
  },
68
69
  "devDependencies": {
69
70
  "@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: string | null;
3718
- error: string | null;
3719
- lastFailedAt: number | null;
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"),