@sentry/api 0.151.0 → 0.153.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 +2 -2
- package/dist/index.js +0 -68
- package/dist/pagination.gen.d.ts +1 -17
- package/dist/sdk.gen.d.ts +1 -43
- package/dist/types.gen.d.ts +0 -795
- package/dist/zod.gen.d.ts +34 -1344
- package/dist/zod.js +0 -430
- package/package.json +1 -1
package/dist/zod.js
CHANGED
|
@@ -75,28 +75,6 @@ var zBaseTeam = z.object({
|
|
|
75
75
|
]).optional()
|
|
76
76
|
})
|
|
77
77
|
});
|
|
78
|
-
var zBranchNode = z.object({
|
|
79
|
-
name: z.string()
|
|
80
|
-
});
|
|
81
|
-
var zBranches = z.object({
|
|
82
|
-
defaultBranch: z.string(),
|
|
83
|
-
results: z.array(z.object({
|
|
84
|
-
name: z.string()
|
|
85
|
-
})),
|
|
86
|
-
pageInfo: z.object({
|
|
87
|
-
endCursor: z.union([
|
|
88
|
-
z.string(),
|
|
89
|
-
z.null()
|
|
90
|
-
]),
|
|
91
|
-
startCursor: z.union([
|
|
92
|
-
z.string(),
|
|
93
|
-
z.null()
|
|
94
|
-
]),
|
|
95
|
-
hasPreviousPage: z.boolean(),
|
|
96
|
-
hasNextPage: z.boolean()
|
|
97
|
-
}),
|
|
98
|
-
totalCount: z.number().int()
|
|
99
|
-
});
|
|
100
78
|
var zBulkUpdateAlerts = z.object({
|
|
101
79
|
enabled: z.boolean()
|
|
102
80
|
});
|
|
@@ -7277,18 +7255,6 @@ var zOutcomesResponse = z.object({
|
|
|
7277
7255
|
}))
|
|
7278
7256
|
});
|
|
7279
7257
|
var zOutgoingNotificationAction = z.record(z.unknown());
|
|
7280
|
-
var zPageInfo = z.object({
|
|
7281
|
-
endCursor: z.union([
|
|
7282
|
-
z.string(),
|
|
7283
|
-
z.null()
|
|
7284
|
-
]),
|
|
7285
|
-
startCursor: z.union([
|
|
7286
|
-
z.string(),
|
|
7287
|
-
z.null()
|
|
7288
|
-
]),
|
|
7289
|
-
hasPreviousPage: z.boolean(),
|
|
7290
|
-
hasNextPage: z.boolean()
|
|
7291
|
-
});
|
|
7292
7258
|
var zProjectAdmin = z.object({
|
|
7293
7259
|
isBookmarked: z.boolean().optional(),
|
|
7294
7260
|
name: z.string().max(200).optional(),
|
|
@@ -8031,66 +7997,6 @@ var zReplayDeletionJobCreateData = z.object({
|
|
|
8031
7997
|
z.null()
|
|
8032
7998
|
])
|
|
8033
7999
|
});
|
|
8034
|
-
var zRepositories = z.object({
|
|
8035
|
-
results: z.array(z.object({
|
|
8036
|
-
name: z.string(),
|
|
8037
|
-
updatedAt: z.string().datetime(),
|
|
8038
|
-
latestCommitAt: z.string().datetime(),
|
|
8039
|
-
defaultBranch: z.string()
|
|
8040
|
-
})),
|
|
8041
|
-
pageInfo: z.object({
|
|
8042
|
-
endCursor: z.union([
|
|
8043
|
-
z.string(),
|
|
8044
|
-
z.null()
|
|
8045
|
-
]),
|
|
8046
|
-
startCursor: z.union([
|
|
8047
|
-
z.string(),
|
|
8048
|
-
z.null()
|
|
8049
|
-
]),
|
|
8050
|
-
hasPreviousPage: z.boolean(),
|
|
8051
|
-
hasNextPage: z.boolean()
|
|
8052
|
-
}),
|
|
8053
|
-
totalCount: z.number().int()
|
|
8054
|
-
});
|
|
8055
|
-
var zRepository = z.object({
|
|
8056
|
-
uploadToken: z.union([
|
|
8057
|
-
z.string(),
|
|
8058
|
-
z.null()
|
|
8059
|
-
]),
|
|
8060
|
-
testAnalyticsEnabled: z.boolean()
|
|
8061
|
-
});
|
|
8062
|
-
var zRepositoryNode = z.object({
|
|
8063
|
-
name: z.string(),
|
|
8064
|
-
updatedAt: z.string().datetime(),
|
|
8065
|
-
latestCommitAt: z.string().datetime(),
|
|
8066
|
-
defaultBranch: z.string()
|
|
8067
|
-
});
|
|
8068
|
-
var zRepositoryTokenNode = z.object({
|
|
8069
|
-
name: z.string(),
|
|
8070
|
-
token: z.string()
|
|
8071
|
-
});
|
|
8072
|
-
var zRepositoryTokenRegenerate = z.object({
|
|
8073
|
-
token: z.string()
|
|
8074
|
-
});
|
|
8075
|
-
var zRepositoryTokens = z.object({
|
|
8076
|
-
results: z.array(z.object({
|
|
8077
|
-
name: z.string(),
|
|
8078
|
-
token: z.string()
|
|
8079
|
-
})),
|
|
8080
|
-
pageInfo: z.object({
|
|
8081
|
-
endCursor: z.union([
|
|
8082
|
-
z.string(),
|
|
8083
|
-
z.null()
|
|
8084
|
-
]),
|
|
8085
|
-
startCursor: z.union([
|
|
8086
|
-
z.string(),
|
|
8087
|
-
z.null()
|
|
8088
|
-
]),
|
|
8089
|
-
hasPreviousPage: z.boolean(),
|
|
8090
|
-
hasNextPage: z.boolean()
|
|
8091
|
-
}),
|
|
8092
|
-
totalCount: z.number().int()
|
|
8093
|
-
});
|
|
8094
8000
|
var zScimListResponseEnvelopeScimMemberIndexResponse = z.object({
|
|
8095
8001
|
schemas: z.array(z.string()),
|
|
8096
8002
|
totalResults: z.number().int(),
|
|
@@ -9179,9 +9085,6 @@ var zStatusDetailsValidator = z.object({
|
|
|
9179
9085
|
ignoreUserCount: z.number().int(),
|
|
9180
9086
|
ignoreUserWindow: z.number().int().lte(10080)
|
|
9181
9087
|
});
|
|
9182
|
-
var zSyncRepos = z.object({
|
|
9183
|
-
isSyncing: z.boolean()
|
|
9184
|
-
});
|
|
9185
9088
|
var zTagKeyDetailsDict = z.object({
|
|
9186
9089
|
uniqueValues: z.union([
|
|
9187
9090
|
z.number().int(),
|
|
@@ -9414,67 +9317,6 @@ var zTeamScim = z.object({
|
|
|
9414
9317
|
display: z.string()
|
|
9415
9318
|
})).optional()
|
|
9416
9319
|
});
|
|
9417
|
-
var zTestResult = z.object({
|
|
9418
|
-
defaultBranch: z.string(),
|
|
9419
|
-
results: z.array(z.object({
|
|
9420
|
-
updatedAt: z.string(),
|
|
9421
|
-
avgDuration: z.number(),
|
|
9422
|
-
totalDuration: z.number(),
|
|
9423
|
-
name: z.string(),
|
|
9424
|
-
failureRate: z.number(),
|
|
9425
|
-
flakeRate: z.number(),
|
|
9426
|
-
totalFailCount: z.number().int(),
|
|
9427
|
-
totalFlakyFailCount: z.number().int(),
|
|
9428
|
-
totalSkipCount: z.number().int(),
|
|
9429
|
-
totalPassCount: z.number().int(),
|
|
9430
|
-
lastDuration: z.number()
|
|
9431
|
-
})),
|
|
9432
|
-
pageInfo: z.object({
|
|
9433
|
-
endCursor: z.union([
|
|
9434
|
-
z.string(),
|
|
9435
|
-
z.null()
|
|
9436
|
-
]),
|
|
9437
|
-
startCursor: z.union([
|
|
9438
|
-
z.string(),
|
|
9439
|
-
z.null()
|
|
9440
|
-
]),
|
|
9441
|
-
hasPreviousPage: z.boolean(),
|
|
9442
|
-
hasNextPage: z.boolean()
|
|
9443
|
-
}),
|
|
9444
|
-
totalCount: z.number().int()
|
|
9445
|
-
});
|
|
9446
|
-
var zTestResultAggregates = z.object({
|
|
9447
|
-
totalDuration: z.number(),
|
|
9448
|
-
totalDurationPercentChange: z.number(),
|
|
9449
|
-
slowestTestsDuration: z.number(),
|
|
9450
|
-
slowestTestsDurationPercentChange: z.number(),
|
|
9451
|
-
totalSlowTests: z.number().int(),
|
|
9452
|
-
totalSlowTestsPercentChange: z.number(),
|
|
9453
|
-
totalFails: z.number().int(),
|
|
9454
|
-
totalFailsPercentChange: z.number(),
|
|
9455
|
-
totalSkips: z.number().int(),
|
|
9456
|
-
totalSkipsPercentChange: z.number(),
|
|
9457
|
-
flakeCount: z.number().int(),
|
|
9458
|
-
flakeCountPercentChange: z.number(),
|
|
9459
|
-
flakeRate: z.number(),
|
|
9460
|
-
flakeRatePercentChange: z.number()
|
|
9461
|
-
});
|
|
9462
|
-
var zTestResultNode = z.object({
|
|
9463
|
-
updatedAt: z.string(),
|
|
9464
|
-
avgDuration: z.number(),
|
|
9465
|
-
totalDuration: z.number(),
|
|
9466
|
-
name: z.string(),
|
|
9467
|
-
failureRate: z.number(),
|
|
9468
|
-
flakeRate: z.number(),
|
|
9469
|
-
totalFailCount: z.number().int(),
|
|
9470
|
-
totalFlakyFailCount: z.number().int(),
|
|
9471
|
-
totalSkipCount: z.number().int(),
|
|
9472
|
-
totalPassCount: z.number().int(),
|
|
9473
|
-
lastDuration: z.number()
|
|
9474
|
-
});
|
|
9475
|
-
var zTestSuite = z.object({
|
|
9476
|
-
testSuites: z.array(z.string())
|
|
9477
|
-
});
|
|
9478
9320
|
var zUpdateClientKey = z.object({
|
|
9479
9321
|
name: z.string().optional(),
|
|
9480
9322
|
isActive: z.boolean().optional(),
|
|
@@ -16288,244 +16130,6 @@ var zRetrieveLatestBaseSnapshotResponse = z.object({
|
|
|
16288
16130
|
]).optional()
|
|
16289
16131
|
}).optional()
|
|
16290
16132
|
});
|
|
16291
|
-
var zRetrievesListOfRepositoriesForAGivenOwnerData = z.object({
|
|
16292
|
-
body: z.never().optional(),
|
|
16293
|
-
path: z.object({
|
|
16294
|
-
organization_id_or_slug: z.string(),
|
|
16295
|
-
owner: z.string()
|
|
16296
|
-
}),
|
|
16297
|
-
query: z.object({
|
|
16298
|
-
limit: z.number().int().optional(),
|
|
16299
|
-
navigation: z.string().optional(),
|
|
16300
|
-
cursor: z.string().optional(),
|
|
16301
|
-
term: z.string().optional()
|
|
16302
|
-
}).optional()
|
|
16303
|
-
});
|
|
16304
|
-
var zRetrievesListOfRepositoriesForAGivenOwnerResponse = z.object({
|
|
16305
|
-
results: z.array(z.object({
|
|
16306
|
-
name: z.string(),
|
|
16307
|
-
updatedAt: z.string().datetime(),
|
|
16308
|
-
latestCommitAt: z.string().datetime(),
|
|
16309
|
-
defaultBranch: z.string()
|
|
16310
|
-
})),
|
|
16311
|
-
pageInfo: z.object({
|
|
16312
|
-
endCursor: z.union([
|
|
16313
|
-
z.string(),
|
|
16314
|
-
z.null()
|
|
16315
|
-
]),
|
|
16316
|
-
startCursor: z.union([
|
|
16317
|
-
z.string(),
|
|
16318
|
-
z.null()
|
|
16319
|
-
]),
|
|
16320
|
-
hasPreviousPage: z.boolean(),
|
|
16321
|
-
hasNextPage: z.boolean()
|
|
16322
|
-
}),
|
|
16323
|
-
totalCount: z.number().int()
|
|
16324
|
-
});
|
|
16325
|
-
var zGetsSyncingStatusForRepositoriesForAnIntegratedOrgData = z.object({
|
|
16326
|
-
body: z.never().optional(),
|
|
16327
|
-
path: z.object({
|
|
16328
|
-
organization_id_or_slug: z.string(),
|
|
16329
|
-
owner: z.string()
|
|
16330
|
-
}),
|
|
16331
|
-
query: z.never().optional()
|
|
16332
|
-
});
|
|
16333
|
-
var zGetsSyncingStatusForRepositoriesForAnIntegratedOrgResponse = z.object({
|
|
16334
|
-
isSyncing: z.boolean()
|
|
16335
|
-
});
|
|
16336
|
-
var zSyncsRepositoriesFromAnIntegratedOrgWithGitHubData = z.object({
|
|
16337
|
-
body: z.never().optional(),
|
|
16338
|
-
path: z.object({
|
|
16339
|
-
organization_id_or_slug: z.string(),
|
|
16340
|
-
owner: z.string()
|
|
16341
|
-
}),
|
|
16342
|
-
query: z.never().optional()
|
|
16343
|
-
});
|
|
16344
|
-
var zSyncsRepositoriesFromAnIntegratedOrgWithGitHubResponse = z.object({
|
|
16345
|
-
isSyncing: z.boolean()
|
|
16346
|
-
});
|
|
16347
|
-
var zRetrievesAPaginatedListOfRepositoryTokensForAGivenOwnerData = z.object({
|
|
16348
|
-
body: z.never().optional(),
|
|
16349
|
-
path: z.object({
|
|
16350
|
-
organization_id_or_slug: z.string(),
|
|
16351
|
-
owner: z.string()
|
|
16352
|
-
}),
|
|
16353
|
-
query: z.object({
|
|
16354
|
-
limit: z.number().int().optional(),
|
|
16355
|
-
navigation: z.string().optional(),
|
|
16356
|
-
cursor: z.string().optional(),
|
|
16357
|
-
sortBy: z.string().optional()
|
|
16358
|
-
}).optional()
|
|
16359
|
-
});
|
|
16360
|
-
var zRetrievesAPaginatedListOfRepositoryTokensForAGivenOwnerResponse = z.object({
|
|
16361
|
-
results: z.array(z.object({
|
|
16362
|
-
name: z.string(),
|
|
16363
|
-
token: z.string()
|
|
16364
|
-
})),
|
|
16365
|
-
pageInfo: z.object({
|
|
16366
|
-
endCursor: z.union([
|
|
16367
|
-
z.string(),
|
|
16368
|
-
z.null()
|
|
16369
|
-
]),
|
|
16370
|
-
startCursor: z.union([
|
|
16371
|
-
z.string(),
|
|
16372
|
-
z.null()
|
|
16373
|
-
]),
|
|
16374
|
-
hasPreviousPage: z.boolean(),
|
|
16375
|
-
hasNextPage: z.boolean()
|
|
16376
|
-
}),
|
|
16377
|
-
totalCount: z.number().int()
|
|
16378
|
-
});
|
|
16379
|
-
var zRetrievesASingleRepositoryForAGivenOwnerData = z.object({
|
|
16380
|
-
body: z.never().optional(),
|
|
16381
|
-
path: z.object({
|
|
16382
|
-
organization_id_or_slug: z.string(),
|
|
16383
|
-
owner: z.string(),
|
|
16384
|
-
repository: z.string()
|
|
16385
|
-
}),
|
|
16386
|
-
query: z.never().optional()
|
|
16387
|
-
});
|
|
16388
|
-
var zRetrievesASingleRepositoryForAGivenOwnerResponse = z.object({
|
|
16389
|
-
uploadToken: z.union([
|
|
16390
|
-
z.string(),
|
|
16391
|
-
z.null()
|
|
16392
|
-
]),
|
|
16393
|
-
testAnalyticsEnabled: z.boolean()
|
|
16394
|
-
});
|
|
16395
|
-
var zRetrievesListOfBranchesForAGivenOwnerAndRepositoryData = z.object({
|
|
16396
|
-
body: z.never().optional(),
|
|
16397
|
-
path: z.object({
|
|
16398
|
-
organization_id_or_slug: z.string(),
|
|
16399
|
-
owner: z.string(),
|
|
16400
|
-
repository: z.string()
|
|
16401
|
-
}),
|
|
16402
|
-
query: z.object({
|
|
16403
|
-
limit: z.number().int().optional(),
|
|
16404
|
-
navigation: z.string().optional(),
|
|
16405
|
-
cursor: z.string().optional(),
|
|
16406
|
-
term: z.string().optional()
|
|
16407
|
-
}).optional()
|
|
16408
|
-
});
|
|
16409
|
-
var zRetrievesListOfBranchesForAGivenOwnerAndRepositoryResponse = z.object({
|
|
16410
|
-
defaultBranch: z.string(),
|
|
16411
|
-
results: z.array(z.object({
|
|
16412
|
-
name: z.string()
|
|
16413
|
-
})),
|
|
16414
|
-
pageInfo: z.object({
|
|
16415
|
-
endCursor: z.union([
|
|
16416
|
-
z.string(),
|
|
16417
|
-
z.null()
|
|
16418
|
-
]),
|
|
16419
|
-
startCursor: z.union([
|
|
16420
|
-
z.string(),
|
|
16421
|
-
z.null()
|
|
16422
|
-
]),
|
|
16423
|
-
hasPreviousPage: z.boolean(),
|
|
16424
|
-
hasNextPage: z.boolean()
|
|
16425
|
-
}),
|
|
16426
|
-
totalCount: z.number().int()
|
|
16427
|
-
});
|
|
16428
|
-
var zRetrievePaginatedListOfTestResultsForRepositoryOwnerAndOrganizationData = z.object({
|
|
16429
|
-
body: z.never().optional(),
|
|
16430
|
-
path: z.object({
|
|
16431
|
-
organization_id_or_slug: z.string(),
|
|
16432
|
-
owner: z.string(),
|
|
16433
|
-
repository: z.string()
|
|
16434
|
-
}),
|
|
16435
|
-
query: z.object({
|
|
16436
|
-
sortBy: z.string().optional(),
|
|
16437
|
-
filterBy: z.string().optional(),
|
|
16438
|
-
interval: z.string().optional(),
|
|
16439
|
-
branch: z.string().optional(),
|
|
16440
|
-
limit: z.number().int().optional(),
|
|
16441
|
-
navigation: z.string().optional(),
|
|
16442
|
-
cursor: z.string().optional(),
|
|
16443
|
-
term: z.string().optional()
|
|
16444
|
-
}).optional()
|
|
16445
|
-
});
|
|
16446
|
-
var zRetrievePaginatedListOfTestResultsForRepositoryOwnerAndOrganizationResponse = z.object({
|
|
16447
|
-
defaultBranch: z.string(),
|
|
16448
|
-
results: z.array(z.object({
|
|
16449
|
-
updatedAt: z.string(),
|
|
16450
|
-
avgDuration: z.number(),
|
|
16451
|
-
totalDuration: z.number(),
|
|
16452
|
-
name: z.string(),
|
|
16453
|
-
failureRate: z.number(),
|
|
16454
|
-
flakeRate: z.number(),
|
|
16455
|
-
totalFailCount: z.number().int(),
|
|
16456
|
-
totalFlakyFailCount: z.number().int(),
|
|
16457
|
-
totalSkipCount: z.number().int(),
|
|
16458
|
-
totalPassCount: z.number().int(),
|
|
16459
|
-
lastDuration: z.number()
|
|
16460
|
-
})),
|
|
16461
|
-
pageInfo: z.object({
|
|
16462
|
-
endCursor: z.union([
|
|
16463
|
-
z.string(),
|
|
16464
|
-
z.null()
|
|
16465
|
-
]),
|
|
16466
|
-
startCursor: z.union([
|
|
16467
|
-
z.string(),
|
|
16468
|
-
z.null()
|
|
16469
|
-
]),
|
|
16470
|
-
hasPreviousPage: z.boolean(),
|
|
16471
|
-
hasNextPage: z.boolean()
|
|
16472
|
-
}),
|
|
16473
|
-
totalCount: z.number().int()
|
|
16474
|
-
});
|
|
16475
|
-
var zRetrieveAggregatedTestResultMetricsForRepositoryOwnerAndOrganizationData = z.object({
|
|
16476
|
-
body: z.never().optional(),
|
|
16477
|
-
path: z.object({
|
|
16478
|
-
organization_id_or_slug: z.string(),
|
|
16479
|
-
owner: z.string(),
|
|
16480
|
-
repository: z.string()
|
|
16481
|
-
}),
|
|
16482
|
-
query: z.object({
|
|
16483
|
-
interval: z.string().optional(),
|
|
16484
|
-
branch: z.string().optional()
|
|
16485
|
-
}).optional()
|
|
16486
|
-
});
|
|
16487
|
-
var zRetrieveAggregatedTestResultMetricsForRepositoryOwnerAndOrganizationResponse = z.object({
|
|
16488
|
-
totalDuration: z.number(),
|
|
16489
|
-
totalDurationPercentChange: z.number(),
|
|
16490
|
-
slowestTestsDuration: z.number(),
|
|
16491
|
-
slowestTestsDurationPercentChange: z.number(),
|
|
16492
|
-
totalSlowTests: z.number().int(),
|
|
16493
|
-
totalSlowTestsPercentChange: z.number(),
|
|
16494
|
-
totalFails: z.number().int(),
|
|
16495
|
-
totalFailsPercentChange: z.number(),
|
|
16496
|
-
totalSkips: z.number().int(),
|
|
16497
|
-
totalSkipsPercentChange: z.number(),
|
|
16498
|
-
flakeCount: z.number().int(),
|
|
16499
|
-
flakeCountPercentChange: z.number(),
|
|
16500
|
-
flakeRate: z.number(),
|
|
16501
|
-
flakeRatePercentChange: z.number()
|
|
16502
|
-
});
|
|
16503
|
-
var zRetrieveTestSuitesBelongingToARepositorySTestResultsData = z.object({
|
|
16504
|
-
body: z.never().optional(),
|
|
16505
|
-
path: z.object({
|
|
16506
|
-
organization_id_or_slug: z.string(),
|
|
16507
|
-
owner: z.string(),
|
|
16508
|
-
repository: z.string()
|
|
16509
|
-
}),
|
|
16510
|
-
query: z.object({
|
|
16511
|
-
term: z.string().optional()
|
|
16512
|
-
}).optional()
|
|
16513
|
-
});
|
|
16514
|
-
var zRetrieveTestSuitesBelongingToARepositorySTestResultsResponse = z.object({
|
|
16515
|
-
testSuites: z.array(z.string())
|
|
16516
|
-
});
|
|
16517
|
-
var zRegeneratesARepositoryUploadTokenAndReturnsTheNewTokenData = z.object({
|
|
16518
|
-
body: z.never().optional(),
|
|
16519
|
-
path: z.object({
|
|
16520
|
-
organization_id_or_slug: z.string(),
|
|
16521
|
-
owner: z.string(),
|
|
16522
|
-
repository: z.string()
|
|
16523
|
-
}),
|
|
16524
|
-
query: z.never().optional()
|
|
16525
|
-
});
|
|
16526
|
-
var zRegeneratesARepositoryUploadTokenAndReturnsTheNewTokenResponse = z.object({
|
|
16527
|
-
token: z.string()
|
|
16528
|
-
});
|
|
16529
16133
|
var zListAnOrganizationSClientKeysData = z.object({
|
|
16530
16134
|
body: z.never().optional(),
|
|
16531
16135
|
path: z.object({
|
|
@@ -26751,19 +26355,12 @@ export {
|
|
|
26751
26355
|
zUpdateADataForwarderForAnOrganizationData,
|
|
26752
26356
|
zUpdateAClientKeyResponse,
|
|
26753
26357
|
zUpdateAClientKeyData,
|
|
26754
|
-
zTestSuite,
|
|
26755
|
-
zTestResultNode,
|
|
26756
|
-
zTestResultAggregates,
|
|
26757
|
-
zTestResult,
|
|
26758
26358
|
zTeamScim,
|
|
26759
26359
|
zTeamPost,
|
|
26760
26360
|
zTeamDetails,
|
|
26761
26361
|
zTeam,
|
|
26762
26362
|
zTagKeyValuesDict,
|
|
26763
26363
|
zTagKeyDetailsDict,
|
|
26764
|
-
zSyncsRepositoriesFromAnIntegratedOrgWithGitHubResponse,
|
|
26765
|
-
zSyncsRepositoriesFromAnIntegratedOrgWithGitHubData,
|
|
26766
|
-
zSyncRepos,
|
|
26767
26364
|
zSubmitUserFeedbackResponse,
|
|
26768
26365
|
zSubmitUserFeedbackData,
|
|
26769
26366
|
zStatusDetailsValidator,
|
|
@@ -26788,18 +26385,8 @@ export {
|
|
|
26788
26385
|
zScimMemberProvision,
|
|
26789
26386
|
zScimListResponseEnvelopeScimTeamIndexResponse,
|
|
26790
26387
|
zScimListResponseEnvelopeScimMemberIndexResponse,
|
|
26791
|
-
zRetrievesListOfRepositoriesForAGivenOwnerResponse,
|
|
26792
|
-
zRetrievesListOfRepositoriesForAGivenOwnerData,
|
|
26793
|
-
zRetrievesListOfBranchesForAGivenOwnerAndRepositoryResponse,
|
|
26794
|
-
zRetrievesListOfBranchesForAGivenOwnerAndRepositoryData,
|
|
26795
|
-
zRetrievesASingleRepositoryForAGivenOwnerResponse,
|
|
26796
|
-
zRetrievesASingleRepositoryForAGivenOwnerData,
|
|
26797
|
-
zRetrievesAPaginatedListOfRepositoryTokensForAGivenOwnerResponse,
|
|
26798
|
-
zRetrievesAPaginatedListOfRepositoryTokensForAGivenOwnerData,
|
|
26799
26388
|
zRetrieveTheCustomIntegrationsCreatedByAnOrganizationResponse,
|
|
26800
26389
|
zRetrieveTheCustomIntegrationsCreatedByAnOrganizationData,
|
|
26801
|
-
zRetrieveTestSuitesBelongingToARepositorySTestResultsResponse,
|
|
26802
|
-
zRetrieveTestSuitesBelongingToARepositorySTestResultsData,
|
|
26803
26390
|
zRetrieveTagDetailsResponse,
|
|
26804
26391
|
zRetrieveTagDetailsData,
|
|
26805
26392
|
zRetrieveStatusesOfReleaseThresholdsAlphaResponse,
|
|
@@ -26818,8 +26405,6 @@ export {
|
|
|
26818
26405
|
zRetrieveSeerIssueFixStateData,
|
|
26819
26406
|
zRetrieveReleaseHealthSessionStatisticsResponse,
|
|
26820
26407
|
zRetrieveReleaseHealthSessionStatisticsData,
|
|
26821
|
-
zRetrievePaginatedListOfTestResultsForRepositoryOwnerAndOrganizationResponse,
|
|
26822
|
-
zRetrievePaginatedListOfTestResultsForRepositoryOwnerAndOrganizationData,
|
|
26823
26408
|
zRetrieveOwnershipConfigurationForAProjectResponse,
|
|
26824
26409
|
zRetrieveOwnershipConfigurationForAProjectData,
|
|
26825
26410
|
zRetrieveMonitorsForAnOrganizationResponse,
|
|
@@ -26863,8 +26448,6 @@ export {
|
|
|
26863
26448
|
zRetrieveAnIntegrationForAnOrganizationData,
|
|
26864
26449
|
zRetrieveAnEventForAProjectResponse,
|
|
26865
26450
|
zRetrieveAnEventForAProjectData,
|
|
26866
|
-
zRetrieveAggregatedTestResultMetricsForRepositoryOwnerAndOrganizationResponse,
|
|
26867
|
-
zRetrieveAggregatedTestResultMetricsForRepositoryOwnerAndOrganizationData,
|
|
26868
26451
|
zRetrieveATeamResponse,
|
|
26869
26452
|
zRetrieveATeamData,
|
|
26870
26453
|
zRetrieveASpikeProtectionNotificationActionResponse,
|
|
@@ -26899,12 +26482,6 @@ export {
|
|
|
26899
26482
|
zResolveAnEventIdData,
|
|
26900
26483
|
zResolveAShortIdResponse,
|
|
26901
26484
|
zResolveAShortIdData,
|
|
26902
|
-
zRepositoryTokens,
|
|
26903
|
-
zRepositoryTokenRegenerate,
|
|
26904
|
-
zRepositoryTokenNode,
|
|
26905
|
-
zRepositoryNode,
|
|
26906
|
-
zRepository,
|
|
26907
|
-
zRepositories,
|
|
26908
26485
|
zReplayDeletionJobCreateData,
|
|
26909
26486
|
zReplayDeletionJobCreate,
|
|
26910
26487
|
zReplayCounts,
|
|
@@ -26915,8 +26492,6 @@ export {
|
|
|
26915
26492
|
zReleaseHeadCommit,
|
|
26916
26493
|
zRegisterANewServiceHookResponse,
|
|
26917
26494
|
zRegisterANewServiceHookData,
|
|
26918
|
-
zRegeneratesARepositoryUploadTokenAndReturnsTheNewTokenResponse,
|
|
26919
|
-
zRegeneratesARepositoryUploadTokenAndReturnsTheNewTokenData,
|
|
26920
26495
|
zRateLimit,
|
|
26921
26496
|
zQueryExploreEventsInTimeseriesFormatResponse,
|
|
26922
26497
|
zQueryExploreEventsInTimeseriesFormatData,
|
|
@@ -26946,7 +26521,6 @@ export {
|
|
|
26946
26521
|
zProjectEventsResponseDict,
|
|
26947
26522
|
zProjectEventDetailsResponse,
|
|
26948
26523
|
zProjectAdmin,
|
|
26949
|
-
zPageInfo,
|
|
26950
26524
|
zOutgoingNotificationAction,
|
|
26951
26525
|
zOutcomesResponse,
|
|
26952
26526
|
zOrganizationWithProjectsAndTeams,
|
|
@@ -27110,8 +26684,6 @@ export {
|
|
|
27110
26684
|
zGroupExternalIssueResponse,
|
|
27111
26685
|
zGroupEventsResponseDict,
|
|
27112
26686
|
zGroupDetailsResponse,
|
|
27113
|
-
zGetsSyncingStatusForRepositoriesForAnIntegratedOrgResponse,
|
|
27114
|
-
zGetsSyncingStatusForRepositoriesForAnIntegratedOrgData,
|
|
27115
26687
|
zGetTheLatestInstallableBuildForAProjectResponse,
|
|
27116
26688
|
zGetTheLatestInstallableBuildForAProjectData,
|
|
27117
26689
|
zGetReplayViewedBy,
|
|
@@ -27270,8 +26842,6 @@ export {
|
|
|
27270
26842
|
zBulkDeleteMonitorsData,
|
|
27271
26843
|
zBulkDeleteAlertsResponse,
|
|
27272
26844
|
zBulkDeleteAlertsData,
|
|
27273
|
-
zBranches,
|
|
27274
|
-
zBranchNode,
|
|
27275
26845
|
zBaseTeam,
|
|
27276
26846
|
zBaseDetectorTypeValidator,
|
|
27277
26847
|
zBaseDataConditionGroupValidator,
|