vercel-api-js 1.15.1 → 1.16.0

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.
@@ -2004,6 +2004,9 @@ const userEventSchema = z.object({
2004
2004
  "project-web-analytics-enabled",
2005
2005
  "protected-git-scope-added",
2006
2006
  "protected-git-scope-removed",
2007
+ "repository-ci-env-variable-create",
2008
+ "repository-ci-env-variable-delete",
2009
+ "repository-ci-env-variable-update",
2007
2010
  "runtime-cache-purge-all",
2008
2011
  "saml-connection-created",
2009
2012
  "saml-connection-deleted",
@@ -4807,6 +4810,17 @@ const userEventSchema = z.object({
4807
4810
  deploymentId: z.string(),
4808
4811
  deploymentUrl: z.string()
4809
4812
  }).strict(),
4813
+ z.object({
4814
+ provider: z.string(),
4815
+ organizationId: z.string(),
4816
+ repository: z.string(),
4817
+ key: z.string(),
4818
+ visibility: z.enum([
4819
+ "config",
4820
+ "secret"
4821
+ ]),
4822
+ changedFields: z.array(z.string()).optional()
4823
+ }).strict(),
4810
4824
  z.object({
4811
4825
  created: z.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
4812
4826
  examples: [
@@ -10768,6 +10782,9 @@ const listEventTypeSchema = z.object({
10768
10782
  "project-web-analytics-enabled",
10769
10783
  "protected-git-scope-added",
10770
10784
  "protected-git-scope-removed",
10785
+ "repository-ci-env-variable-create",
10786
+ "repository-ci-env-variable-delete",
10787
+ "repository-ci-env-variable-update",
10771
10788
  "runtime-cache-purge-all",
10772
10789
  "saml-connection-created",
10773
10790
  "saml-connection-deleted",
@@ -11485,6 +11502,9 @@ const listEventTypeSchema = z.object({
11485
11502
  "project-web-analytics-enabled",
11486
11503
  "protected-git-scope-added",
11487
11504
  "protected-git-scope-removed",
11505
+ "repository-ci-env-variable-create",
11506
+ "repository-ci-env-variable-delete",
11507
+ "repository-ci-env-variable-update",
11488
11508
  "runtime-cache-purge-all",
11489
11509
  "saml-connection-created",
11490
11510
  "saml-connection-deleted",
@@ -2024,6 +2024,9 @@ const userEventSchema = z__namespace.object({
2024
2024
  "project-web-analytics-enabled",
2025
2025
  "protected-git-scope-added",
2026
2026
  "protected-git-scope-removed",
2027
+ "repository-ci-env-variable-create",
2028
+ "repository-ci-env-variable-delete",
2029
+ "repository-ci-env-variable-update",
2027
2030
  "runtime-cache-purge-all",
2028
2031
  "saml-connection-created",
2029
2032
  "saml-connection-deleted",
@@ -4827,6 +4830,17 @@ const userEventSchema = z__namespace.object({
4827
4830
  deploymentId: z__namespace.string(),
4828
4831
  deploymentUrl: z__namespace.string()
4829
4832
  }).strict(),
4833
+ z__namespace.object({
4834
+ provider: z__namespace.string(),
4835
+ organizationId: z__namespace.string(),
4836
+ repository: z__namespace.string(),
4837
+ key: z__namespace.string(),
4838
+ visibility: z__namespace.enum([
4839
+ "config",
4840
+ "secret"
4841
+ ]),
4842
+ changedFields: z__namespace.array(z__namespace.string()).optional()
4843
+ }).strict(),
4830
4844
  z__namespace.object({
4831
4845
  created: z__namespace.iso.datetime().optional().describe("The date when the Shared Env Var was created.").meta({
4832
4846
  examples: [
@@ -10788,6 +10802,9 @@ const listEventTypeSchema = z__namespace.object({
10788
10802
  "project-web-analytics-enabled",
10789
10803
  "protected-git-scope-added",
10790
10804
  "protected-git-scope-removed",
10805
+ "repository-ci-env-variable-create",
10806
+ "repository-ci-env-variable-delete",
10807
+ "repository-ci-env-variable-update",
10791
10808
  "runtime-cache-purge-all",
10792
10809
  "saml-connection-created",
10793
10810
  "saml-connection-deleted",
@@ -11505,6 +11522,9 @@ const listEventTypeSchema = z__namespace.object({
11505
11522
  "project-web-analytics-enabled",
11506
11523
  "protected-git-scope-added",
11507
11524
  "protected-git-scope-removed",
11525
+ "repository-ci-env-variable-create",
11526
+ "repository-ci-env-variable-delete",
11527
+ "repository-ci-env-variable-update",
11508
11528
  "runtime-cache-purge-all",
11509
11529
  "saml-connection-created",
11510
11530
  "saml-connection-deleted",
package/dist/schemas.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  Object.defineProperty(exports, '__esModule', { value: true });
2
2
 
3
- var schemas = require('./schemas-csiv5yep.cjs');
3
+ var schemas = require('./schemas-tv2viiu8.cjs');
4
4
 
5
5
 
6
6
 
@@ -1708,6 +1708,9 @@ declare const userEventSchema: z.ZodObject<{
1708
1708
  "project-web-analytics-enabled": "project-web-analytics-enabled";
1709
1709
  "protected-git-scope-added": "protected-git-scope-added";
1710
1710
  "protected-git-scope-removed": "protected-git-scope-removed";
1711
+ "repository-ci-env-variable-create": "repository-ci-env-variable-create";
1712
+ "repository-ci-env-variable-delete": "repository-ci-env-variable-delete";
1713
+ "repository-ci-env-variable-update": "repository-ci-env-variable-update";
1711
1714
  "runtime-cache-purge-all": "runtime-cache-purge-all";
1712
1715
  "saml-connection-created": "saml-connection-created";
1713
1716
  "saml-connection-deleted": "saml-connection-deleted";
@@ -4028,6 +4031,16 @@ declare const userEventSchema: z.ZodObject<{
4028
4031
  ipAddress: z.ZodOptional<z.ZodString>;
4029
4032
  deploymentId: z.ZodString;
4030
4033
  deploymentUrl: z.ZodString;
4034
+ }, z.core.$strict>, z.ZodObject<{
4035
+ provider: z.ZodString;
4036
+ organizationId: z.ZodString;
4037
+ repository: z.ZodString;
4038
+ key: z.ZodString;
4039
+ visibility: z.ZodEnum<{
4040
+ config: "config";
4041
+ secret: "secret";
4042
+ }>;
4043
+ changedFields: z.ZodOptional<z.ZodArray<z.ZodString>>;
4031
4044
  }, z.core.$strict>, z.ZodObject<{
4032
4045
  created: z.ZodOptional<z.ZodISODateTime>;
4033
4046
  key: z.ZodOptional<z.ZodString>;
@@ -8894,6 +8907,9 @@ declare const listEventTypeSchema: z.ZodObject<{
8894
8907
  "project-web-analytics-enabled": "project-web-analytics-enabled";
8895
8908
  "protected-git-scope-added": "protected-git-scope-added";
8896
8909
  "protected-git-scope-removed": "protected-git-scope-removed";
8910
+ "repository-ci-env-variable-create": "repository-ci-env-variable-create";
8911
+ "repository-ci-env-variable-delete": "repository-ci-env-variable-delete";
8912
+ "repository-ci-env-variable-update": "repository-ci-env-variable-update";
8897
8913
  "runtime-cache-purge-all": "runtime-cache-purge-all";
8898
8914
  "saml-connection-created": "saml-connection-created";
8899
8915
  "saml-connection-deleted": "saml-connection-deleted";
@@ -9598,6 +9614,9 @@ declare const listEventTypeSchema: z.ZodObject<{
9598
9614
  "project-web-analytics-enabled": "project-web-analytics-enabled";
9599
9615
  "protected-git-scope-added": "protected-git-scope-added";
9600
9616
  "protected-git-scope-removed": "protected-git-scope-removed";
9617
+ "repository-ci-env-variable-create": "repository-ci-env-variable-create";
9618
+ "repository-ci-env-variable-delete": "repository-ci-env-variable-delete";
9619
+ "repository-ci-env-variable-update": "repository-ci-env-variable-update";
9601
9620
  "runtime-cache-purge-all": "runtime-cache-purge-all";
9602
9621
  "saml-connection-created": "saml-connection-created";
9603
9622
  "saml-connection-deleted": "saml-connection-deleted";