renovate 42.24.0 → 42.24.1

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.
@@ -1,23 +1,23 @@
1
1
  import { z } from 'zod';
2
2
  export declare const BitbucketServerTag: z.ZodObject<{
3
3
  displayId: z.ZodString;
4
- hash: z.ZodNullable<z.ZodString>;
4
+ hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5
5
  }, "strip", z.ZodTypeAny, {
6
6
  displayId: string;
7
- hash: string | null;
7
+ hash?: string | null | undefined;
8
8
  }, {
9
9
  displayId: string;
10
- hash: string | null;
10
+ hash?: string | null | undefined;
11
11
  }>;
12
12
  export declare const BitbucketServerTags: z.ZodArray<z.ZodObject<{
13
13
  displayId: z.ZodString;
14
- hash: z.ZodNullable<z.ZodString>;
14
+ hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  displayId: string;
17
- hash: string | null;
17
+ hash?: string | null | undefined;
18
18
  }, {
19
19
  displayId: string;
20
- hash: string | null;
20
+ hash?: string | null | undefined;
21
21
  }>, "many">;
22
22
  export declare const BitbucketServerCommits: z.ZodArray<z.ZodObject<{
23
23
  id: z.ZodString;
@@ -4,7 +4,7 @@ exports.BitbucketServerCommits = exports.BitbucketServerTags = exports.Bitbucket
4
4
  const zod_1 = require("zod");
5
5
  exports.BitbucketServerTag = zod_1.z.object({
6
6
  displayId: zod_1.z.string(),
7
- hash: zod_1.z.string().nullable(),
7
+ hash: zod_1.z.string().nullish(),
8
8
  });
9
9
  exports.BitbucketServerTags = zod_1.z.array(exports.BitbucketServerTag);
10
10
  exports.BitbucketServerCommits = zod_1.z.array(zod_1.z.object({
@@ -1 +1 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../lib/modules/datasource/bitbucket-server-tags/schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,kBAAkB,GAAG,OAAC,CAAC,MAAM,CAAC;IACzC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAC;AAEU,QAAA,mBAAmB,GAAG,OAAC,CAAC,KAAK,CAAC,0BAAkB,CAAC,CAAC;AAElD,QAAA,sBAAsB,GAAG,OAAC,CAAC,KAAK,CAC3C,OAAC,CAAC,MAAM,CAAC;IACP,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;CACf,CAAC,CACH,CAAC","sourcesContent":["import { z } from 'zod';\n\nexport const BitbucketServerTag = z.object({\n displayId: z.string(),\n hash: z.string().nullable(),\n});\n\nexport const BitbucketServerTags = z.array(BitbucketServerTag);\n\nexport const BitbucketServerCommits = z.array(\n z.object({\n id: z.string(),\n }),\n);\n"]}
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../lib/modules/datasource/bitbucket-server-tags/schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,kBAAkB,GAAG,OAAC,CAAC,MAAM,CAAC;IACzC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;CAC3B,CAAC,CAAC;AAEU,QAAA,mBAAmB,GAAG,OAAC,CAAC,KAAK,CAAC,0BAAkB,CAAC,CAAC;AAElD,QAAA,sBAAsB,GAAG,OAAC,CAAC,KAAK,CAC3C,OAAC,CAAC,MAAM,CAAC;IACP,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;CACf,CAAC,CACH,CAAC","sourcesContent":["import { z } from 'zod';\n\nexport const BitbucketServerTag = z.object({\n displayId: z.string(),\n hash: z.string().nullish(),\n});\n\nexport const BitbucketServerTags = z.array(BitbucketServerTag);\n\nexport const BitbucketServerCommits = z.array(\n z.object({\n id: z.string(),\n }),\n);\n"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "renovate",
3
3
  "description": "Automated dependency updates. Flexible so you don't need to be.",
4
- "version": "42.24.0",
4
+ "version": "42.24.1",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "renovate": "dist/renovate.js",
@@ -1,7 +1,7 @@
1
1
  {
2
- "title": "JSON schema for Renovate 42.24.0 config files (https://renovatebot.com/)",
2
+ "title": "JSON schema for Renovate 42.24.1 config files (https://renovatebot.com/)",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
- "x-renovate-version": "42.24.0",
4
+ "x-renovate-version": "42.24.1",
5
5
  "allowComments": true,
6
6
  "type": "object",
7
7
  "properties": {