@sentry/api 0.181.0 → 0.183.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.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +10 -10
- package/dist/sdk.gen.d.ts +12 -14
- package/dist/types.gen.d.ts +146 -94
- package/dist/zod.gen.d.ts +278 -178
- package/dist/zod.js +115 -53
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -312,12 +312,9 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
312
312
|
message: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
313
313
|
dateCreated: z.ZodString;
|
|
314
314
|
repository: z.ZodObject<{
|
|
315
|
-
id: z.ZodOptional<z.ZodString>;
|
|
316
|
-
name: z.ZodOptional<z.ZodString>;
|
|
317
315
|
url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
318
316
|
provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
319
317
|
status: z.ZodOptional<z.ZodString>;
|
|
320
|
-
dateCreated: z.ZodOptional<z.ZodString>;
|
|
321
318
|
integrationId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
322
319
|
externalSlug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
323
320
|
externalId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -331,12 +328,15 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
331
328
|
enabledCodeReview: boolean;
|
|
332
329
|
codeReviewTriggers: string[];
|
|
333
330
|
}>, z.ZodNull]>>;
|
|
331
|
+
id: z.ZodString;
|
|
332
|
+
name: z.ZodString;
|
|
333
|
+
dateCreated: z.ZodString;
|
|
334
334
|
}, "strip", z.ZodTypeAny, {
|
|
335
|
-
name
|
|
335
|
+
name: string;
|
|
336
|
+
id: string;
|
|
337
|
+
dateCreated: string;
|
|
336
338
|
url?: string | null | undefined;
|
|
337
|
-
id?: string | undefined;
|
|
338
339
|
status?: string | undefined;
|
|
339
|
-
dateCreated?: string | undefined;
|
|
340
340
|
provider?: Record<string, string> | undefined;
|
|
341
341
|
integrationId?: string | null | undefined;
|
|
342
342
|
externalSlug?: string | null | undefined;
|
|
@@ -346,11 +346,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
346
346
|
codeReviewTriggers: string[];
|
|
347
347
|
} | null | undefined;
|
|
348
348
|
}, {
|
|
349
|
-
name
|
|
349
|
+
name: string;
|
|
350
|
+
id: string;
|
|
351
|
+
dateCreated: string;
|
|
350
352
|
url?: string | null | undefined;
|
|
351
|
-
id?: string | undefined;
|
|
352
353
|
status?: string | undefined;
|
|
353
|
-
dateCreated?: string | undefined;
|
|
354
354
|
provider?: Record<string, string> | undefined;
|
|
355
355
|
integrationId?: string | null | undefined;
|
|
356
356
|
externalSlug?: string | null | undefined;
|
|
@@ -559,11 +559,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
559
559
|
message: string | null;
|
|
560
560
|
dateCreated: string;
|
|
561
561
|
repository: {
|
|
562
|
-
name
|
|
562
|
+
name: string;
|
|
563
|
+
id: string;
|
|
564
|
+
dateCreated: string;
|
|
563
565
|
url?: string | null | undefined;
|
|
564
|
-
id?: string | undefined;
|
|
565
566
|
status?: string | undefined;
|
|
566
|
-
dateCreated?: string | undefined;
|
|
567
567
|
provider?: Record<string, string> | undefined;
|
|
568
568
|
integrationId?: string | null | undefined;
|
|
569
569
|
externalSlug?: string | null | undefined;
|
|
@@ -627,11 +627,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
627
627
|
message: string | null;
|
|
628
628
|
dateCreated: string;
|
|
629
629
|
repository: {
|
|
630
|
-
name
|
|
630
|
+
name: string;
|
|
631
|
+
id: string;
|
|
632
|
+
dateCreated: string;
|
|
631
633
|
url?: string | null | undefined;
|
|
632
|
-
id?: string | undefined;
|
|
633
634
|
status?: string | undefined;
|
|
634
|
-
dateCreated?: string | undefined;
|
|
635
635
|
provider?: Record<string, string> | undefined;
|
|
636
636
|
integrationId?: string | null | undefined;
|
|
637
637
|
externalSlug?: string | null | undefined;
|
|
@@ -693,12 +693,9 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
693
693
|
}>, z.ZodNull]>;
|
|
694
694
|
suspectCommitType: z.ZodString;
|
|
695
695
|
repository: z.ZodOptional<z.ZodObject<{
|
|
696
|
-
id: z.ZodOptional<z.ZodString>;
|
|
697
|
-
name: z.ZodOptional<z.ZodString>;
|
|
698
696
|
url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
699
697
|
provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
700
698
|
status: z.ZodOptional<z.ZodString>;
|
|
701
|
-
dateCreated: z.ZodOptional<z.ZodString>;
|
|
702
699
|
integrationId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
703
700
|
externalSlug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
704
701
|
externalId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -712,12 +709,15 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
712
709
|
enabledCodeReview: boolean;
|
|
713
710
|
codeReviewTriggers: string[];
|
|
714
711
|
}>, z.ZodNull]>>;
|
|
712
|
+
id: z.ZodString;
|
|
713
|
+
name: z.ZodString;
|
|
714
|
+
dateCreated: z.ZodString;
|
|
715
715
|
}, "strip", z.ZodTypeAny, {
|
|
716
|
-
name
|
|
716
|
+
name: string;
|
|
717
|
+
id: string;
|
|
718
|
+
dateCreated: string;
|
|
717
719
|
url?: string | null | undefined;
|
|
718
|
-
id?: string | undefined;
|
|
719
720
|
status?: string | undefined;
|
|
720
|
-
dateCreated?: string | undefined;
|
|
721
721
|
provider?: Record<string, string> | undefined;
|
|
722
722
|
integrationId?: string | null | undefined;
|
|
723
723
|
externalSlug?: string | null | undefined;
|
|
@@ -727,11 +727,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
727
727
|
codeReviewTriggers: string[];
|
|
728
728
|
} | null | undefined;
|
|
729
729
|
}, {
|
|
730
|
-
name
|
|
730
|
+
name: string;
|
|
731
|
+
id: string;
|
|
732
|
+
dateCreated: string;
|
|
731
733
|
url?: string | null | undefined;
|
|
732
|
-
id?: string | undefined;
|
|
733
734
|
status?: string | undefined;
|
|
734
|
-
dateCreated?: string | undefined;
|
|
735
735
|
provider?: Record<string, string> | undefined;
|
|
736
736
|
integrationId?: string | null | undefined;
|
|
737
737
|
externalSlug?: string | null | undefined;
|
|
@@ -943,11 +943,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
943
943
|
message: string | null;
|
|
944
944
|
dateCreated: string;
|
|
945
945
|
repository: {
|
|
946
|
-
name
|
|
946
|
+
name: string;
|
|
947
|
+
id: string;
|
|
948
|
+
dateCreated: string;
|
|
947
949
|
url?: string | null | undefined;
|
|
948
|
-
id?: string | undefined;
|
|
949
950
|
status?: string | undefined;
|
|
950
|
-
dateCreated?: string | undefined;
|
|
951
951
|
provider?: Record<string, string> | undefined;
|
|
952
952
|
integrationId?: string | null | undefined;
|
|
953
953
|
externalSlug?: string | null | undefined;
|
|
@@ -1009,11 +1009,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
1009
1009
|
} | null;
|
|
1010
1010
|
suspectCommitType: string;
|
|
1011
1011
|
repository?: {
|
|
1012
|
-
name
|
|
1012
|
+
name: string;
|
|
1013
|
+
id: string;
|
|
1014
|
+
dateCreated: string;
|
|
1013
1015
|
url?: string | null | undefined;
|
|
1014
|
-
id?: string | undefined;
|
|
1015
1016
|
status?: string | undefined;
|
|
1016
|
-
dateCreated?: string | undefined;
|
|
1017
1017
|
provider?: Record<string, string> | undefined;
|
|
1018
1018
|
integrationId?: string | null | undefined;
|
|
1019
1019
|
externalSlug?: string | null | undefined;
|
|
@@ -1079,11 +1079,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
1079
1079
|
message: string | null;
|
|
1080
1080
|
dateCreated: string;
|
|
1081
1081
|
repository: {
|
|
1082
|
-
name
|
|
1082
|
+
name: string;
|
|
1083
|
+
id: string;
|
|
1084
|
+
dateCreated: string;
|
|
1083
1085
|
url?: string | null | undefined;
|
|
1084
|
-
id?: string | undefined;
|
|
1085
1086
|
status?: string | undefined;
|
|
1086
|
-
dateCreated?: string | undefined;
|
|
1087
1087
|
provider?: Record<string, string> | undefined;
|
|
1088
1088
|
integrationId?: string | null | undefined;
|
|
1089
1089
|
externalSlug?: string | null | undefined;
|
|
@@ -1145,11 +1145,11 @@ export declare const zCommitSerializerResponse: z.ZodArray<z.ZodObject<{
|
|
|
1145
1145
|
} | null;
|
|
1146
1146
|
suspectCommitType: string;
|
|
1147
1147
|
repository?: {
|
|
1148
|
-
name
|
|
1148
|
+
name: string;
|
|
1149
|
+
id: string;
|
|
1150
|
+
dateCreated: string;
|
|
1149
1151
|
url?: string | null | undefined;
|
|
1150
|
-
id?: string | undefined;
|
|
1151
1152
|
status?: string | undefined;
|
|
1152
|
-
dateCreated?: string | undefined;
|
|
1153
1153
|
provider?: Record<string, string> | undefined;
|
|
1154
1154
|
integrationId?: string | null | undefined;
|
|
1155
1155
|
externalSlug?: string | null | undefined;
|
|
@@ -11338,6 +11338,55 @@ export declare const zListOrganizationMemberResponse: z.ZodArray<z.ZodObject<{
|
|
|
11338
11338
|
teamId?: string | undefined;
|
|
11339
11339
|
}[] | undefined;
|
|
11340
11340
|
}>, "many">;
|
|
11341
|
+
export declare const zListOrganizationRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
11342
|
+
url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
11343
|
+
provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11344
|
+
status: z.ZodOptional<z.ZodString>;
|
|
11345
|
+
integrationId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
11346
|
+
externalSlug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
11347
|
+
externalId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
11348
|
+
settings: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11349
|
+
enabledCodeReview: z.ZodBoolean;
|
|
11350
|
+
codeReviewTriggers: z.ZodArray<z.ZodString, "many">;
|
|
11351
|
+
}, "strip", z.ZodTypeAny, {
|
|
11352
|
+
enabledCodeReview: boolean;
|
|
11353
|
+
codeReviewTriggers: string[];
|
|
11354
|
+
}, {
|
|
11355
|
+
enabledCodeReview: boolean;
|
|
11356
|
+
codeReviewTriggers: string[];
|
|
11357
|
+
}>, z.ZodNull]>>;
|
|
11358
|
+
id: z.ZodString;
|
|
11359
|
+
name: z.ZodString;
|
|
11360
|
+
dateCreated: z.ZodString;
|
|
11361
|
+
}, "strip", z.ZodTypeAny, {
|
|
11362
|
+
name: string;
|
|
11363
|
+
id: string;
|
|
11364
|
+
dateCreated: string;
|
|
11365
|
+
url?: string | null | undefined;
|
|
11366
|
+
status?: string | undefined;
|
|
11367
|
+
provider?: Record<string, string> | undefined;
|
|
11368
|
+
integrationId?: string | null | undefined;
|
|
11369
|
+
externalSlug?: string | null | undefined;
|
|
11370
|
+
externalId?: string | null | undefined;
|
|
11371
|
+
settings?: {
|
|
11372
|
+
enabledCodeReview: boolean;
|
|
11373
|
+
codeReviewTriggers: string[];
|
|
11374
|
+
} | null | undefined;
|
|
11375
|
+
}, {
|
|
11376
|
+
name: string;
|
|
11377
|
+
id: string;
|
|
11378
|
+
dateCreated: string;
|
|
11379
|
+
url?: string | null | undefined;
|
|
11380
|
+
status?: string | undefined;
|
|
11381
|
+
provider?: Record<string, string> | undefined;
|
|
11382
|
+
integrationId?: string | null | undefined;
|
|
11383
|
+
externalSlug?: string | null | undefined;
|
|
11384
|
+
externalId?: string | null | undefined;
|
|
11385
|
+
settings?: {
|
|
11386
|
+
enabledCodeReview: boolean;
|
|
11387
|
+
codeReviewTriggers: string[];
|
|
11388
|
+
} | null | undefined;
|
|
11389
|
+
}>, "many">;
|
|
11341
11390
|
export declare const zListOrganizationTagsResponse: z.ZodArray<z.ZodObject<{
|
|
11342
11391
|
uniqueValues: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
11343
11392
|
totalValues: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -20901,6 +20950,7 @@ export declare const zProjectSnapshotStatusCheckRulesResponse: z.ZodObject<{
|
|
|
20901
20950
|
failOnRenamed: boolean;
|
|
20902
20951
|
};
|
|
20903
20952
|
}>;
|
|
20953
|
+
export declare const zProjectStats: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
|
|
20904
20954
|
export declare const zProjectSummary: z.ZodObject<{
|
|
20905
20955
|
latestDeploys: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodNull]>>;
|
|
20906
20956
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -47423,6 +47473,108 @@ export declare const zRetrieveAReplayInstanceResponse: z.ZodObject<{
|
|
|
47423
47473
|
replay_type?: string | undefined;
|
|
47424
47474
|
};
|
|
47425
47475
|
}>;
|
|
47476
|
+
export declare const zListAnOrganizationSRepositoriesData: z.ZodObject<{
|
|
47477
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
47478
|
+
path: z.ZodObject<{
|
|
47479
|
+
organization_id_or_slug: z.ZodString;
|
|
47480
|
+
}, "strip", z.ZodTypeAny, {
|
|
47481
|
+
organization_id_or_slug: string;
|
|
47482
|
+
}, {
|
|
47483
|
+
organization_id_or_slug: string;
|
|
47484
|
+
}>;
|
|
47485
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
47486
|
+
query: z.ZodOptional<z.ZodString>;
|
|
47487
|
+
status: z.ZodOptional<z.ZodEnum<["active", "deleted"]>>;
|
|
47488
|
+
integration_id: z.ZodOptional<z.ZodString>;
|
|
47489
|
+
expand: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
47490
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
47491
|
+
}, "strip", z.ZodTypeAny, {
|
|
47492
|
+
query?: string | undefined;
|
|
47493
|
+
cursor?: string | undefined;
|
|
47494
|
+
integration_id?: string | undefined;
|
|
47495
|
+
expand?: string[] | undefined;
|
|
47496
|
+
status?: "active" | "deleted" | undefined;
|
|
47497
|
+
}, {
|
|
47498
|
+
query?: string | undefined;
|
|
47499
|
+
cursor?: string | undefined;
|
|
47500
|
+
integration_id?: string | undefined;
|
|
47501
|
+
expand?: string[] | undefined;
|
|
47502
|
+
status?: "active" | "deleted" | undefined;
|
|
47503
|
+
}>>;
|
|
47504
|
+
}, "strip", z.ZodTypeAny, {
|
|
47505
|
+
path: {
|
|
47506
|
+
organization_id_or_slug: string;
|
|
47507
|
+
};
|
|
47508
|
+
query?: {
|
|
47509
|
+
query?: string | undefined;
|
|
47510
|
+
cursor?: string | undefined;
|
|
47511
|
+
integration_id?: string | undefined;
|
|
47512
|
+
expand?: string[] | undefined;
|
|
47513
|
+
status?: "active" | "deleted" | undefined;
|
|
47514
|
+
} | undefined;
|
|
47515
|
+
body?: undefined;
|
|
47516
|
+
}, {
|
|
47517
|
+
path: {
|
|
47518
|
+
organization_id_or_slug: string;
|
|
47519
|
+
};
|
|
47520
|
+
query?: {
|
|
47521
|
+
query?: string | undefined;
|
|
47522
|
+
cursor?: string | undefined;
|
|
47523
|
+
integration_id?: string | undefined;
|
|
47524
|
+
expand?: string[] | undefined;
|
|
47525
|
+
status?: "active" | "deleted" | undefined;
|
|
47526
|
+
} | undefined;
|
|
47527
|
+
body?: undefined;
|
|
47528
|
+
}>;
|
|
47529
|
+
export declare const zListAnOrganizationSRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
47530
|
+
url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47531
|
+
provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
47532
|
+
status: z.ZodOptional<z.ZodString>;
|
|
47533
|
+
integrationId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47534
|
+
externalSlug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47535
|
+
externalId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47536
|
+
settings: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
47537
|
+
enabledCodeReview: z.ZodBoolean;
|
|
47538
|
+
codeReviewTriggers: z.ZodArray<z.ZodString, "many">;
|
|
47539
|
+
}, "strip", z.ZodTypeAny, {
|
|
47540
|
+
enabledCodeReview: boolean;
|
|
47541
|
+
codeReviewTriggers: string[];
|
|
47542
|
+
}, {
|
|
47543
|
+
enabledCodeReview: boolean;
|
|
47544
|
+
codeReviewTriggers: string[];
|
|
47545
|
+
}>, z.ZodNull]>>;
|
|
47546
|
+
id: z.ZodString;
|
|
47547
|
+
name: z.ZodString;
|
|
47548
|
+
dateCreated: z.ZodString;
|
|
47549
|
+
}, "strip", z.ZodTypeAny, {
|
|
47550
|
+
name: string;
|
|
47551
|
+
id: string;
|
|
47552
|
+
dateCreated: string;
|
|
47553
|
+
url?: string | null | undefined;
|
|
47554
|
+
status?: string | undefined;
|
|
47555
|
+
provider?: Record<string, string> | undefined;
|
|
47556
|
+
integrationId?: string | null | undefined;
|
|
47557
|
+
externalSlug?: string | null | undefined;
|
|
47558
|
+
externalId?: string | null | undefined;
|
|
47559
|
+
settings?: {
|
|
47560
|
+
enabledCodeReview: boolean;
|
|
47561
|
+
codeReviewTriggers: string[];
|
|
47562
|
+
} | null | undefined;
|
|
47563
|
+
}, {
|
|
47564
|
+
name: string;
|
|
47565
|
+
id: string;
|
|
47566
|
+
dateCreated: string;
|
|
47567
|
+
url?: string | null | undefined;
|
|
47568
|
+
status?: string | undefined;
|
|
47569
|
+
provider?: Record<string, string> | undefined;
|
|
47570
|
+
integrationId?: string | null | undefined;
|
|
47571
|
+
externalSlug?: string | null | undefined;
|
|
47572
|
+
externalId?: string | null | undefined;
|
|
47573
|
+
settings?: {
|
|
47574
|
+
enabledCodeReview: boolean;
|
|
47575
|
+
codeReviewTriggers: string[];
|
|
47576
|
+
} | null | undefined;
|
|
47577
|
+
}>, "many">;
|
|
47426
47578
|
export declare const zListARepositorySCommitsData: z.ZodObject<{
|
|
47427
47579
|
body: z.ZodOptional<z.ZodNever>;
|
|
47428
47580
|
path: z.ZodObject<{
|
|
@@ -47471,12 +47623,9 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47471
47623
|
message: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
47472
47624
|
dateCreated: z.ZodString;
|
|
47473
47625
|
repository: z.ZodObject<{
|
|
47474
|
-
id: z.ZodOptional<z.ZodString>;
|
|
47475
|
-
name: z.ZodOptional<z.ZodString>;
|
|
47476
47626
|
url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47477
47627
|
provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
47478
47628
|
status: z.ZodOptional<z.ZodString>;
|
|
47479
|
-
dateCreated: z.ZodOptional<z.ZodString>;
|
|
47480
47629
|
integrationId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47481
47630
|
externalSlug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47482
47631
|
externalId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -47490,12 +47639,15 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47490
47639
|
enabledCodeReview: boolean;
|
|
47491
47640
|
codeReviewTriggers: string[];
|
|
47492
47641
|
}>, z.ZodNull]>>;
|
|
47642
|
+
id: z.ZodString;
|
|
47643
|
+
name: z.ZodString;
|
|
47644
|
+
dateCreated: z.ZodString;
|
|
47493
47645
|
}, "strip", z.ZodTypeAny, {
|
|
47494
|
-
name
|
|
47646
|
+
name: string;
|
|
47647
|
+
id: string;
|
|
47648
|
+
dateCreated: string;
|
|
47495
47649
|
url?: string | null | undefined;
|
|
47496
|
-
id?: string | undefined;
|
|
47497
47650
|
status?: string | undefined;
|
|
47498
|
-
dateCreated?: string | undefined;
|
|
47499
47651
|
provider?: Record<string, string> | undefined;
|
|
47500
47652
|
integrationId?: string | null | undefined;
|
|
47501
47653
|
externalSlug?: string | null | undefined;
|
|
@@ -47505,11 +47657,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47505
47657
|
codeReviewTriggers: string[];
|
|
47506
47658
|
} | null | undefined;
|
|
47507
47659
|
}, {
|
|
47508
|
-
name
|
|
47660
|
+
name: string;
|
|
47661
|
+
id: string;
|
|
47662
|
+
dateCreated: string;
|
|
47509
47663
|
url?: string | null | undefined;
|
|
47510
|
-
id?: string | undefined;
|
|
47511
47664
|
status?: string | undefined;
|
|
47512
|
-
dateCreated?: string | undefined;
|
|
47513
47665
|
provider?: Record<string, string> | undefined;
|
|
47514
47666
|
integrationId?: string | null | undefined;
|
|
47515
47667
|
externalSlug?: string | null | undefined;
|
|
@@ -47718,11 +47870,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47718
47870
|
message: string | null;
|
|
47719
47871
|
dateCreated: string;
|
|
47720
47872
|
repository: {
|
|
47721
|
-
name
|
|
47873
|
+
name: string;
|
|
47874
|
+
id: string;
|
|
47875
|
+
dateCreated: string;
|
|
47722
47876
|
url?: string | null | undefined;
|
|
47723
|
-
id?: string | undefined;
|
|
47724
47877
|
status?: string | undefined;
|
|
47725
|
-
dateCreated?: string | undefined;
|
|
47726
47878
|
provider?: Record<string, string> | undefined;
|
|
47727
47879
|
integrationId?: string | null | undefined;
|
|
47728
47880
|
externalSlug?: string | null | undefined;
|
|
@@ -47786,11 +47938,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47786
47938
|
message: string | null;
|
|
47787
47939
|
dateCreated: string;
|
|
47788
47940
|
repository: {
|
|
47789
|
-
name
|
|
47941
|
+
name: string;
|
|
47942
|
+
id: string;
|
|
47943
|
+
dateCreated: string;
|
|
47790
47944
|
url?: string | null | undefined;
|
|
47791
|
-
id?: string | undefined;
|
|
47792
47945
|
status?: string | undefined;
|
|
47793
|
-
dateCreated?: string | undefined;
|
|
47794
47946
|
provider?: Record<string, string> | undefined;
|
|
47795
47947
|
integrationId?: string | null | undefined;
|
|
47796
47948
|
externalSlug?: string | null | undefined;
|
|
@@ -47852,12 +48004,9 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47852
48004
|
}>, z.ZodNull]>;
|
|
47853
48005
|
suspectCommitType: z.ZodString;
|
|
47854
48006
|
repository: z.ZodOptional<z.ZodObject<{
|
|
47855
|
-
id: z.ZodOptional<z.ZodString>;
|
|
47856
|
-
name: z.ZodOptional<z.ZodString>;
|
|
47857
48007
|
url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47858
48008
|
provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
47859
48009
|
status: z.ZodOptional<z.ZodString>;
|
|
47860
|
-
dateCreated: z.ZodOptional<z.ZodString>;
|
|
47861
48010
|
integrationId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47862
48011
|
externalSlug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47863
48012
|
externalId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -47871,12 +48020,15 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47871
48020
|
enabledCodeReview: boolean;
|
|
47872
48021
|
codeReviewTriggers: string[];
|
|
47873
48022
|
}>, z.ZodNull]>>;
|
|
48023
|
+
id: z.ZodString;
|
|
48024
|
+
name: z.ZodString;
|
|
48025
|
+
dateCreated: z.ZodString;
|
|
47874
48026
|
}, "strip", z.ZodTypeAny, {
|
|
47875
|
-
name
|
|
48027
|
+
name: string;
|
|
48028
|
+
id: string;
|
|
48029
|
+
dateCreated: string;
|
|
47876
48030
|
url?: string | null | undefined;
|
|
47877
|
-
id?: string | undefined;
|
|
47878
48031
|
status?: string | undefined;
|
|
47879
|
-
dateCreated?: string | undefined;
|
|
47880
48032
|
provider?: Record<string, string> | undefined;
|
|
47881
48033
|
integrationId?: string | null | undefined;
|
|
47882
48034
|
externalSlug?: string | null | undefined;
|
|
@@ -47886,11 +48038,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
47886
48038
|
codeReviewTriggers: string[];
|
|
47887
48039
|
} | null | undefined;
|
|
47888
48040
|
}, {
|
|
47889
|
-
name
|
|
48041
|
+
name: string;
|
|
48042
|
+
id: string;
|
|
48043
|
+
dateCreated: string;
|
|
47890
48044
|
url?: string | null | undefined;
|
|
47891
|
-
id?: string | undefined;
|
|
47892
48045
|
status?: string | undefined;
|
|
47893
|
-
dateCreated?: string | undefined;
|
|
47894
48046
|
provider?: Record<string, string> | undefined;
|
|
47895
48047
|
integrationId?: string | null | undefined;
|
|
47896
48048
|
externalSlug?: string | null | undefined;
|
|
@@ -48102,11 +48254,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
48102
48254
|
message: string | null;
|
|
48103
48255
|
dateCreated: string;
|
|
48104
48256
|
repository: {
|
|
48105
|
-
name
|
|
48257
|
+
name: string;
|
|
48258
|
+
id: string;
|
|
48259
|
+
dateCreated: string;
|
|
48106
48260
|
url?: string | null | undefined;
|
|
48107
|
-
id?: string | undefined;
|
|
48108
48261
|
status?: string | undefined;
|
|
48109
|
-
dateCreated?: string | undefined;
|
|
48110
48262
|
provider?: Record<string, string> | undefined;
|
|
48111
48263
|
integrationId?: string | null | undefined;
|
|
48112
48264
|
externalSlug?: string | null | undefined;
|
|
@@ -48168,11 +48320,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
48168
48320
|
} | null;
|
|
48169
48321
|
suspectCommitType: string;
|
|
48170
48322
|
repository?: {
|
|
48171
|
-
name
|
|
48323
|
+
name: string;
|
|
48324
|
+
id: string;
|
|
48325
|
+
dateCreated: string;
|
|
48172
48326
|
url?: string | null | undefined;
|
|
48173
|
-
id?: string | undefined;
|
|
48174
48327
|
status?: string | undefined;
|
|
48175
|
-
dateCreated?: string | undefined;
|
|
48176
48328
|
provider?: Record<string, string> | undefined;
|
|
48177
48329
|
integrationId?: string | null | undefined;
|
|
48178
48330
|
externalSlug?: string | null | undefined;
|
|
@@ -48238,11 +48390,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
48238
48390
|
message: string | null;
|
|
48239
48391
|
dateCreated: string;
|
|
48240
48392
|
repository: {
|
|
48241
|
-
name
|
|
48393
|
+
name: string;
|
|
48394
|
+
id: string;
|
|
48395
|
+
dateCreated: string;
|
|
48242
48396
|
url?: string | null | undefined;
|
|
48243
|
-
id?: string | undefined;
|
|
48244
48397
|
status?: string | undefined;
|
|
48245
|
-
dateCreated?: string | undefined;
|
|
48246
48398
|
provider?: Record<string, string> | undefined;
|
|
48247
48399
|
integrationId?: string | null | undefined;
|
|
48248
48400
|
externalSlug?: string | null | undefined;
|
|
@@ -48304,11 +48456,11 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
|
|
|
48304
48456
|
} | null;
|
|
48305
48457
|
suspectCommitType: string;
|
|
48306
48458
|
repository?: {
|
|
48307
|
-
name
|
|
48459
|
+
name: string;
|
|
48460
|
+
id: string;
|
|
48461
|
+
dateCreated: string;
|
|
48308
48462
|
url?: string | null | undefined;
|
|
48309
|
-
id?: string | undefined;
|
|
48310
48463
|
status?: string | undefined;
|
|
48311
|
-
dateCreated?: string | undefined;
|
|
48312
48464
|
provider?: Record<string, string> | undefined;
|
|
48313
48465
|
integrationId?: string | null | undefined;
|
|
48314
48466
|
externalSlug?: string | null | undefined;
|
|
@@ -63270,6 +63422,60 @@ export declare const zLinkARepositoryToAProjectResponse: z.ZodObject<{
|
|
|
63270
63422
|
repositoryId: string;
|
|
63271
63423
|
source: string;
|
|
63272
63424
|
}>;
|
|
63425
|
+
export declare const zRetrieveEventCountsForAProjectData: z.ZodObject<{
|
|
63426
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
63427
|
+
path: z.ZodObject<{
|
|
63428
|
+
organization_id_or_slug: z.ZodString;
|
|
63429
|
+
project_id_or_slug: z.ZodString;
|
|
63430
|
+
}, "strip", z.ZodTypeAny, {
|
|
63431
|
+
organization_id_or_slug: string;
|
|
63432
|
+
project_id_or_slug: string;
|
|
63433
|
+
}, {
|
|
63434
|
+
organization_id_or_slug: string;
|
|
63435
|
+
project_id_or_slug: string;
|
|
63436
|
+
}>;
|
|
63437
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
63438
|
+
stat: z.ZodOptional<z.ZodEnum<["blacklisted", "generated", "received", "rejected"]>>;
|
|
63439
|
+
since: z.ZodOptional<z.ZodNumber>;
|
|
63440
|
+
until: z.ZodOptional<z.ZodNumber>;
|
|
63441
|
+
resolution: z.ZodOptional<z.ZodEnum<["10s", "1d", "1h"]>>;
|
|
63442
|
+
}, "strip", z.ZodTypeAny, {
|
|
63443
|
+
stat?: "blacklisted" | "generated" | "received" | "rejected" | undefined;
|
|
63444
|
+
since?: number | undefined;
|
|
63445
|
+
until?: number | undefined;
|
|
63446
|
+
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
63447
|
+
}, {
|
|
63448
|
+
stat?: "blacklisted" | "generated" | "received" | "rejected" | undefined;
|
|
63449
|
+
since?: number | undefined;
|
|
63450
|
+
until?: number | undefined;
|
|
63451
|
+
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
63452
|
+
}>>;
|
|
63453
|
+
}, "strip", z.ZodTypeAny, {
|
|
63454
|
+
path: {
|
|
63455
|
+
organization_id_or_slug: string;
|
|
63456
|
+
project_id_or_slug: string;
|
|
63457
|
+
};
|
|
63458
|
+
query?: {
|
|
63459
|
+
stat?: "blacklisted" | "generated" | "received" | "rejected" | undefined;
|
|
63460
|
+
since?: number | undefined;
|
|
63461
|
+
until?: number | undefined;
|
|
63462
|
+
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
63463
|
+
} | undefined;
|
|
63464
|
+
body?: undefined;
|
|
63465
|
+
}, {
|
|
63466
|
+
path: {
|
|
63467
|
+
organization_id_or_slug: string;
|
|
63468
|
+
project_id_or_slug: string;
|
|
63469
|
+
};
|
|
63470
|
+
query?: {
|
|
63471
|
+
stat?: "blacklisted" | "generated" | "received" | "rejected" | undefined;
|
|
63472
|
+
since?: number | undefined;
|
|
63473
|
+
until?: number | undefined;
|
|
63474
|
+
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
63475
|
+
} | undefined;
|
|
63476
|
+
body?: undefined;
|
|
63477
|
+
}>;
|
|
63478
|
+
export declare const zRetrieveEventCountsForAProjectResponse: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
|
|
63273
63479
|
export declare const zDeleteASymbolSourceFromAProjectData: z.ZodObject<{
|
|
63274
63480
|
body: z.ZodOptional<z.ZodNever>;
|
|
63275
63481
|
path: z.ZodObject<{
|
|
@@ -67778,55 +67984,6 @@ export declare const zCreateANewProjectResponse: z.ZodObject<{
|
|
|
67778
67984
|
sessionStats?: unknown;
|
|
67779
67985
|
latestDeploys?: Record<string, Record<string, string>> | null | undefined;
|
|
67780
67986
|
}>;
|
|
67781
|
-
export declare const zListAnOrganizationSRepositoriesData: z.ZodObject<{
|
|
67782
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
67783
|
-
path: z.ZodObject<{
|
|
67784
|
-
organization_id_or_slug: z.ZodString;
|
|
67785
|
-
}, "strip", z.ZodTypeAny, {
|
|
67786
|
-
organization_id_or_slug: string;
|
|
67787
|
-
}, {
|
|
67788
|
-
organization_id_or_slug: string;
|
|
67789
|
-
}>;
|
|
67790
|
-
query: z.ZodOptional<z.ZodObject<{
|
|
67791
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
67792
|
-
}, "strip", z.ZodTypeAny, {
|
|
67793
|
-
cursor?: string | undefined;
|
|
67794
|
-
}, {
|
|
67795
|
-
cursor?: string | undefined;
|
|
67796
|
-
}>>;
|
|
67797
|
-
}, "strip", z.ZodTypeAny, {
|
|
67798
|
-
path: {
|
|
67799
|
-
organization_id_or_slug: string;
|
|
67800
|
-
};
|
|
67801
|
-
query?: {
|
|
67802
|
-
cursor?: string | undefined;
|
|
67803
|
-
} | undefined;
|
|
67804
|
-
body?: undefined;
|
|
67805
|
-
}, {
|
|
67806
|
-
path: {
|
|
67807
|
-
organization_id_or_slug: string;
|
|
67808
|
-
};
|
|
67809
|
-
query?: {
|
|
67810
|
-
cursor?: string | undefined;
|
|
67811
|
-
} | undefined;
|
|
67812
|
-
body?: undefined;
|
|
67813
|
-
}>;
|
|
67814
|
-
/**
|
|
67815
|
-
* Success
|
|
67816
|
-
*/
|
|
67817
|
-
export declare const zListAnOrganizationSRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
67818
|
-
dateCreated: z.ZodString;
|
|
67819
|
-
id: z.ZodString;
|
|
67820
|
-
name: z.ZodString;
|
|
67821
|
-
}, "strip", z.ZodTypeAny, {
|
|
67822
|
-
name: string;
|
|
67823
|
-
id: string;
|
|
67824
|
-
dateCreated: string;
|
|
67825
|
-
}, {
|
|
67826
|
-
name: string;
|
|
67827
|
-
id: string;
|
|
67828
|
-
dateCreated: string;
|
|
67829
|
-
}>, "many">;
|
|
67830
67987
|
export declare const zListAProjectSusersData: z.ZodObject<{
|
|
67831
67988
|
body: z.ZodOptional<z.ZodNever>;
|
|
67832
67989
|
path: z.ZodObject<{
|
|
@@ -67936,63 +68093,6 @@ export declare const zListATagSValuesResponse: z.ZodArray<z.ZodObject<{
|
|
|
67936
68093
|
}, {
|
|
67937
68094
|
name: string;
|
|
67938
68095
|
}>, "many">;
|
|
67939
|
-
export declare const zRetrieveEventCountsForAProjectData: z.ZodObject<{
|
|
67940
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
67941
|
-
path: z.ZodObject<{
|
|
67942
|
-
organization_id_or_slug: z.ZodString;
|
|
67943
|
-
project_id_or_slug: z.ZodString;
|
|
67944
|
-
}, "strip", z.ZodTypeAny, {
|
|
67945
|
-
organization_id_or_slug: string;
|
|
67946
|
-
project_id_or_slug: string;
|
|
67947
|
-
}, {
|
|
67948
|
-
organization_id_or_slug: string;
|
|
67949
|
-
project_id_or_slug: string;
|
|
67950
|
-
}>;
|
|
67951
|
-
query: z.ZodOptional<z.ZodObject<{
|
|
67952
|
-
stat: z.ZodOptional<z.ZodEnum<["received", "rejected", "blacklisted", "generated"]>>;
|
|
67953
|
-
since: z.ZodOptional<z.ZodString>;
|
|
67954
|
-
until: z.ZodOptional<z.ZodString>;
|
|
67955
|
-
resolution: z.ZodOptional<z.ZodEnum<["10s", "1h", "1d"]>>;
|
|
67956
|
-
}, "strip", z.ZodTypeAny, {
|
|
67957
|
-
stat?: "received" | "rejected" | "blacklisted" | "generated" | undefined;
|
|
67958
|
-
since?: string | undefined;
|
|
67959
|
-
until?: string | undefined;
|
|
67960
|
-
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
67961
|
-
}, {
|
|
67962
|
-
stat?: "received" | "rejected" | "blacklisted" | "generated" | undefined;
|
|
67963
|
-
since?: string | undefined;
|
|
67964
|
-
until?: string | undefined;
|
|
67965
|
-
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
67966
|
-
}>>;
|
|
67967
|
-
}, "strip", z.ZodTypeAny, {
|
|
67968
|
-
path: {
|
|
67969
|
-
organization_id_or_slug: string;
|
|
67970
|
-
project_id_or_slug: string;
|
|
67971
|
-
};
|
|
67972
|
-
query?: {
|
|
67973
|
-
stat?: "received" | "rejected" | "blacklisted" | "generated" | undefined;
|
|
67974
|
-
since?: string | undefined;
|
|
67975
|
-
until?: string | undefined;
|
|
67976
|
-
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
67977
|
-
} | undefined;
|
|
67978
|
-
body?: undefined;
|
|
67979
|
-
}, {
|
|
67980
|
-
path: {
|
|
67981
|
-
organization_id_or_slug: string;
|
|
67982
|
-
project_id_or_slug: string;
|
|
67983
|
-
};
|
|
67984
|
-
query?: {
|
|
67985
|
-
stat?: "received" | "rejected" | "blacklisted" | "generated" | undefined;
|
|
67986
|
-
since?: string | undefined;
|
|
67987
|
-
until?: string | undefined;
|
|
67988
|
-
resolution?: "1d" | "1h" | "10s" | undefined;
|
|
67989
|
-
} | undefined;
|
|
67990
|
-
body?: undefined;
|
|
67991
|
-
}>;
|
|
67992
|
-
/**
|
|
67993
|
-
* Success
|
|
67994
|
-
*/
|
|
67995
|
-
export declare const zRetrieveEventCountsForAProjectResponse: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
|
|
67996
68096
|
export declare const zListAProjectSuserFeedbackData: z.ZodObject<{
|
|
67997
68097
|
body: z.ZodOptional<z.ZodNever>;
|
|
67998
68098
|
path: z.ZodObject<{
|