cloudflare/cloudflare-typescript

Public

mirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dff22c0d60c46292be06ba3061c6433db22d6b27

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

scripts/detect-breaking-changes

769lines · modeblame

bd975b1cstainless-app[bot]11 months ago1#!/usr/bin/env bash
2
3set -e
4
5cd "$(dirname "$0")/.."
6
7echo "==> Detecting breaking changes"
8
9TEST_PATHS=(
10tests/api-resources/accounts/accounts.test.ts
11tests/api-resources/accounts/members.test.ts
12tests/api-resources/accounts/roles.test.ts
13tests/api-resources/accounts/subscriptions.test.ts
14tests/api-resources/accounts/tokens/tokens.test.ts
15tests/api-resources/accounts/tokens/permission-groups.test.ts
16tests/api-resources/accounts/tokens/value.test.ts
17tests/api-resources/accounts/logs/logs.test.ts
18tests/api-resources/accounts/logs/audit.test.ts
19tests/api-resources/origin-ca-certificates.test.ts
20tests/api-resources/ips.test.ts
21tests/api-resources/memberships.test.ts
22tests/api-resources/user/user.test.ts
23tests/api-resources/user/audit-logs.test.ts
24tests/api-resources/user/billing/billing.test.ts
25tests/api-resources/user/billing/history.test.ts
26tests/api-resources/user/billing/profile.test.ts
27tests/api-resources/user/invites.test.ts
28tests/api-resources/user/organizations.test.ts
29tests/api-resources/user/subscriptions.test.ts
30tests/api-resources/user/tokens/tokens.test.ts
31tests/api-resources/user/tokens/permission-groups.test.ts
32tests/api-resources/user/tokens/value.test.ts
33tests/api-resources/zones/zones.test.ts
34tests/api-resources/zones/activation-check.test.ts
35tests/api-resources/zones/settings.test.ts
36tests/api-resources/zones/custom-nameservers.test.ts
37tests/api-resources/zones/holds.test.ts
38tests/api-resources/zones/subscriptions.test.ts
39tests/api-resources/zones/plans.test.ts
40tests/api-resources/zones/rate-plans.test.ts
41tests/api-resources/load-balancers/load-balancers.test.ts
42tests/api-resources/load-balancers/monitors/monitors.test.ts
43tests/api-resources/load-balancers/monitors/previews.test.ts
44tests/api-resources/load-balancers/monitors/references.test.ts
5764b602stainless-app[bot]9 months ago45tests/api-resources/load-balancers/monitor-groups.test.ts
bd975b1cstainless-app[bot]11 months ago46tests/api-resources/load-balancers/pools/pools.test.ts
47tests/api-resources/load-balancers/pools/health.test.ts
48tests/api-resources/load-balancers/pools/references.test.ts
49tests/api-resources/load-balancers/previews.test.ts
50tests/api-resources/load-balancers/regions.test.ts
51tests/api-resources/load-balancers/searches.test.ts
52tests/api-resources/cache/cache.test.ts
ceb49a54stainless-app[bot]9 months ago53tests/api-resources/cache/cache-reserve.test.ts
54tests/api-resources/cache/smart-tiered-cache.test.ts
55tests/api-resources/cache/variants.test.ts
56tests/api-resources/cache/regional-tiered-cache.test.ts
bd975b1cstainless-app[bot]11 months ago57tests/api-resources/ssl/ssl.test.ts
58tests/api-resources/ssl/analyze.test.ts
59tests/api-resources/ssl/certificate-packs/certificate-packs.test.ts
60tests/api-resources/ssl/certificate-packs/quota.test.ts
61tests/api-resources/ssl/recommendations.test.ts
62tests/api-resources/ssl/universal/universal.test.ts
63tests/api-resources/ssl/universal/settings.test.ts
64tests/api-resources/ssl/verification.test.ts
65tests/api-resources/acm/acm.test.ts
66tests/api-resources/acm/total-tls.test.ts
67tests/api-resources/argo/argo.test.ts
68tests/api-resources/argo/smart-routing.test.ts
ceb49a54stainless-app[bot]9 months ago69tests/api-resources/argo/tiered-caching.test.ts
bd975b1cstainless-app[bot]11 months ago70tests/api-resources/certificate-authorities/certificate-authorities.test.ts
71tests/api-resources/certificate-authorities/hostname-associations.test.ts
72tests/api-resources/client-certificates.test.ts
73tests/api-resources/custom-certificates/custom-certificates.test.ts
74tests/api-resources/custom-certificates/prioritize.test.ts
75tests/api-resources/custom-hostnames/custom-hostnames.test.ts
76tests/api-resources/custom-hostnames/fallback-origin.test.ts
77tests/api-resources/custom-hostnames/certificate-pack/certificate-pack.test.ts
78tests/api-resources/custom-hostnames/certificate-pack/certificates.test.ts
79tests/api-resources/custom-nameservers.test.ts
80tests/api-resources/dns-firewall/dns-firewall.test.ts
81tests/api-resources/dns-firewall/analytics/analytics.test.ts
82tests/api-resources/dns-firewall/analytics/reports/reports.test.ts
83tests/api-resources/dns-firewall/analytics/reports/bytimes.test.ts
84tests/api-resources/dns-firewall/reverse-dns.test.ts
85tests/api-resources/dns/dns.test.ts
86tests/api-resources/dns/dnssec.test.ts
87tests/api-resources/dns/records.test.ts
88tests/api-resources/dns/settings/settings.test.ts
89tests/api-resources/dns/settings/zone.test.ts
90tests/api-resources/dns/settings/account/account.test.ts
91tests/api-resources/dns/settings/account/views.test.ts
92tests/api-resources/dns/analytics/analytics.test.ts
93tests/api-resources/dns/analytics/reports/reports.test.ts
94tests/api-resources/dns/analytics/reports/bytimes.test.ts
95tests/api-resources/dns/zone-transfers/zone-transfers.test.ts
96tests/api-resources/dns/zone-transfers/force-axfr.test.ts
97tests/api-resources/dns/zone-transfers/incoming.test.ts
98tests/api-resources/dns/zone-transfers/outgoing/outgoing.test.ts
99tests/api-resources/dns/zone-transfers/outgoing/status.test.ts
100tests/api-resources/dns/zone-transfers/acls.test.ts
101tests/api-resources/dns/zone-transfers/peers.test.ts
102tests/api-resources/dns/zone-transfers/tsigs.test.ts
103tests/api-resources/email-security/email-security.test.ts
104tests/api-resources/email-security/investigate/investigate.test.ts
105tests/api-resources/email-security/investigate/detections.test.ts
106tests/api-resources/email-security/investigate/preview.test.ts
107tests/api-resources/email-security/investigate/raw.test.ts
108tests/api-resources/email-security/investigate/trace.test.ts
109tests/api-resources/email-security/investigate/move.test.ts
110tests/api-resources/email-security/investigate/reclassify.test.ts
111tests/api-resources/email-security/investigate/release.test.ts
112tests/api-resources/email-security/settings/settings.test.ts
113tests/api-resources/email-security/settings/allow-policies.test.ts
114tests/api-resources/email-security/settings/block-senders.test.ts
115tests/api-resources/email-security/settings/domains.test.ts
116tests/api-resources/email-security/settings/impersonation-registry.test.ts
117tests/api-resources/email-security/settings/trusted-domains.test.ts
118tests/api-resources/email-security/submissions.test.ts
119tests/api-resources/email-routing/email-routing.test.ts
120tests/api-resources/email-routing/dns.test.ts
121tests/api-resources/email-routing/rules/rules.test.ts
122tests/api-resources/email-routing/rules/catch-alls.test.ts
123tests/api-resources/email-routing/addresses.test.ts
124tests/api-resources/filters.test.ts
125tests/api-resources/firewall/firewall.test.ts
126tests/api-resources/firewall/lockdowns.test.ts
127tests/api-resources/firewall/rules.test.ts
128tests/api-resources/firewall/access-rules.test.ts
129tests/api-resources/firewall/ua-rules.test.ts
130tests/api-resources/firewall/waf/waf.test.ts
131tests/api-resources/firewall/waf/overrides.test.ts
132tests/api-resources/firewall/waf/packages/packages.test.ts
133tests/api-resources/firewall/waf/packages/groups.test.ts
134tests/api-resources/firewall/waf/packages/rules.test.ts
135tests/api-resources/healthchecks/healthchecks.test.ts
136tests/api-resources/healthchecks/previews.test.ts
137tests/api-resources/keyless-certificates.test.ts
138tests/api-resources/logpush/logpush.test.ts
139tests/api-resources/logpush/datasets/datasets.test.ts
140tests/api-resources/logpush/datasets/fields.test.ts
141tests/api-resources/logpush/datasets/jobs.test.ts
505ed05cstainless-app[bot]10 months ago142tests/api-resources/logpush/edge.test.ts
bd975b1cstainless-app[bot]11 months ago143tests/api-resources/logpush/jobs.test.ts
144tests/api-resources/logpush/ownership.test.ts
145tests/api-resources/logpush/validate.test.ts
298d367cstainless-app[bot]11 months ago146tests/api-resources/logs/logs.test.ts
147tests/api-resources/logs/control/control.test.ts
148tests/api-resources/logs/control/retention.test.ts
149tests/api-resources/logs/control/cmb/cmb.test.ts
150tests/api-resources/logs/control/cmb/config.test.ts
151tests/api-resources/logs/rayid.test.ts
152tests/api-resources/logs/received/received.test.ts
153tests/api-resources/logs/received/fields.test.ts
bd975b1cstainless-app[bot]11 months ago154tests/api-resources/origin-tls-client-auth/origin-tls-client-auth.test.ts
155tests/api-resources/origin-tls-client-auth/hostnames/hostnames.test.ts
156tests/api-resources/origin-tls-client-auth/hostnames/certificates.test.ts
157tests/api-resources/origin-tls-client-auth/settings.test.ts
158tests/api-resources/page-rules.test.ts
159tests/api-resources/rate-limits.test.ts
160tests/api-resources/waiting-rooms/waiting-rooms.test.ts
161tests/api-resources/waiting-rooms/page.test.ts
162tests/api-resources/waiting-rooms/events/events.test.ts
163tests/api-resources/waiting-rooms/events/details.test.ts
164tests/api-resources/waiting-rooms/rules.test.ts
165tests/api-resources/waiting-rooms/statuses.test.ts
166tests/api-resources/waiting-rooms/settings.test.ts
167tests/api-resources/web3/web3.test.ts
168tests/api-resources/web3/hostnames/hostnames.test.ts
169tests/api-resources/web3/hostnames/ipfs-universal-paths/ipfs-universal-paths.test.ts
170tests/api-resources/web3/hostnames/ipfs-universal-paths/content-lists/content-lists.test.ts
171tests/api-resources/web3/hostnames/ipfs-universal-paths/content-lists/entries.test.ts
172tests/api-resources/workers/workers.test.ts
0bef9190stainless-app[bot]10 months ago173tests/api-resources/workers/beta/beta.test.ts
174tests/api-resources/workers/beta/workers/workers.test.ts
175tests/api-resources/workers/beta/workers/versions.test.ts
bd975b1cstainless-app[bot]11 months ago176tests/api-resources/workers/routes.test.ts
177tests/api-resources/workers/assets/assets.test.ts
178tests/api-resources/workers/assets/upload.test.ts
179tests/api-resources/workers/scripts/scripts.test.ts
180tests/api-resources/workers/scripts/assets/assets.test.ts
181tests/api-resources/workers/scripts/assets/upload.test.ts
182tests/api-resources/workers/scripts/subdomain.test.ts
183tests/api-resources/workers/scripts/schedules.test.ts
184tests/api-resources/workers/scripts/tail.test.ts
185tests/api-resources/workers/scripts/content.test.ts
186tests/api-resources/workers/scripts/settings.test.ts
187tests/api-resources/workers/scripts/deployments.test.ts
188tests/api-resources/workers/scripts/versions.test.ts
189tests/api-resources/workers/scripts/secrets.test.ts
190tests/api-resources/workers/scripts/script-and-version-settings.test.ts
191tests/api-resources/workers/account-settings.test.ts
192tests/api-resources/workers/domains.test.ts
193tests/api-resources/workers/subdomains.test.ts
298d367cstainless-app[bot]11 months ago194tests/api-resources/workers/observability/observability.test.ts
195tests/api-resources/workers/observability/telemetry.test.ts
bd975b1cstainless-app[bot]11 months ago196tests/api-resources/kv/kv.test.ts
197tests/api-resources/kv/namespaces/namespaces.test.ts
198tests/api-resources/kv/namespaces/keys.test.ts
199tests/api-resources/kv/namespaces/metadata.test.ts
200tests/api-resources/kv/namespaces/values.test.ts
201tests/api-resources/durable-objects/durable-objects.test.ts
202tests/api-resources/durable-objects/namespaces/namespaces.test.ts
203tests/api-resources/durable-objects/namespaces/objects.test.ts
204tests/api-resources/queues/queues.test.ts
205tests/api-resources/queues/messages.test.ts
206tests/api-resources/queues/purge.test.ts
9f68a338stainless-app[bot]10 months ago207tests/api-resources/queues/consumers.test.ts
208tests/api-resources/queues/subscriptions.test.ts
bd975b1cstainless-app[bot]11 months ago209tests/api-resources/api-gateway/api-gateway.test.ts
210tests/api-resources/api-gateway/configurations.test.ts
211tests/api-resources/api-gateway/discovery/discovery.test.ts
212tests/api-resources/api-gateway/discovery/operations.test.ts
213tests/api-resources/api-gateway/operations/operations.test.ts
214tests/api-resources/api-gateway/operations/schema-validation.test.ts
215tests/api-resources/api-gateway/schemas.test.ts
216tests/api-resources/api-gateway/settings/settings.test.ts
217tests/api-resources/api-gateway/settings/schema-validation.test.ts
218tests/api-resources/api-gateway/user-schemas/user-schemas.test.ts
219tests/api-resources/api-gateway/user-schemas/operations.test.ts
220tests/api-resources/api-gateway/user-schemas/hosts.test.ts
221tests/api-resources/api-gateway/expression-template/expression-template.test.ts
222tests/api-resources/api-gateway/expression-template/fallthrough.test.ts
223tests/api-resources/managed-transforms.test.ts
224tests/api-resources/page-shield/page-shield.test.ts
225tests/api-resources/page-shield/policies.test.ts
226tests/api-resources/page-shield/connections.test.ts
227tests/api-resources/page-shield/scripts.test.ts
228tests/api-resources/page-shield/cookies.test.ts
229tests/api-resources/rulesets/rulesets.test.ts
230tests/api-resources/rulesets/phases/phases.test.ts
231tests/api-resources/rulesets/phases/versions.test.ts
232tests/api-resources/rulesets/rules.test.ts
233tests/api-resources/rulesets/versions.test.ts
234tests/api-resources/url-normalization.test.ts
235tests/api-resources/spectrum/spectrum.test.ts
236tests/api-resources/spectrum/analytics/analytics.test.ts
237tests/api-resources/spectrum/analytics/aggregates/aggregates.test.ts
238tests/api-resources/spectrum/analytics/aggregates/currents.test.ts
239tests/api-resources/spectrum/analytics/events/events.test.ts
240tests/api-resources/spectrum/analytics/events/bytimes.test.ts
241tests/api-resources/spectrum/analytics/events/summaries.test.ts
242tests/api-resources/spectrum/apps.test.ts
243tests/api-resources/addressing/addressing.test.ts
244tests/api-resources/addressing/regional-hostnames/regional-hostnames.test.ts
245tests/api-resources/addressing/regional-hostnames/regions.test.ts
246tests/api-resources/addressing/services.test.ts
247tests/api-resources/addressing/address-maps/address-maps.test.ts
248tests/api-resources/addressing/address-maps/accounts.test.ts
249tests/api-resources/addressing/address-maps/ips.test.ts
250tests/api-resources/addressing/address-maps/zones.test.ts
251tests/api-resources/addressing/loa-documents.test.ts
252tests/api-resources/addressing/prefixes/prefixes.test.ts
253tests/api-resources/addressing/prefixes/service-bindings.test.ts
254tests/api-resources/addressing/prefixes/bgp-prefixes.test.ts
255tests/api-resources/addressing/prefixes/advertisement-status.test.ts
256tests/api-resources/addressing/prefixes/delegations.test.ts
257tests/api-resources/audit-logs.test.ts
258tests/api-resources/billing/billing.test.ts
259tests/api-resources/billing/profiles.test.ts
260tests/api-resources/brand-protection/brand-protection.test.ts
d07e22f7stainless-app[bot]11 months ago261tests/api-resources/brand-protection/queries.test.ts
262tests/api-resources/brand-protection/matches.test.ts
263tests/api-resources/brand-protection/logos.test.ts
264tests/api-resources/brand-protection/logo-matches.test.ts
bd975b1cstainless-app[bot]11 months ago265tests/api-resources/diagnostics/diagnostics.test.ts
266tests/api-resources/diagnostics/traceroutes.test.ts
fbfaa98astainless-app[bot]11 months ago267tests/api-resources/diagnostics/endpoint-healthchecks.test.ts
bd975b1cstainless-app[bot]11 months ago268tests/api-resources/images/images.test.ts
269tests/api-resources/images/v1/v1.test.ts
270tests/api-resources/images/v1/keys.test.ts
271tests/api-resources/images/v1/stats.test.ts
272tests/api-resources/images/v1/variants.test.ts
273tests/api-resources/images/v1/blobs.test.ts
274tests/api-resources/images/v2/v2.test.ts
275tests/api-resources/images/v2/direct-uploads.test.ts
276tests/api-resources/intel/intel.test.ts
277tests/api-resources/intel/asn/asn.test.ts
278tests/api-resources/intel/asn/subnets.test.ts
279tests/api-resources/intel/dns.test.ts
280tests/api-resources/intel/domains/domains.test.ts
281tests/api-resources/intel/domains/bulks.test.ts
282tests/api-resources/intel/domain-history.test.ts
283tests/api-resources/intel/ips.test.ts
284tests/api-resources/intel/ip-lists.test.ts
285tests/api-resources/intel/miscategorizations.test.ts
286tests/api-resources/intel/whois.test.ts
287tests/api-resources/intel/indicator-feeds/indicator-feeds.test.ts
288tests/api-resources/intel/indicator-feeds/snapshots.test.ts
289tests/api-resources/intel/indicator-feeds/permissions.test.ts
290tests/api-resources/intel/sinkholes.test.ts
291tests/api-resources/intel/attack-surface-report/attack-surface-report.test.ts
292tests/api-resources/intel/attack-surface-report/issue-types.test.ts
293tests/api-resources/intel/attack-surface-report/issues.test.ts
294tests/api-resources/magic-transit/magic-transit.test.ts
295tests/api-resources/magic-transit/apps.test.ts
296tests/api-resources/magic-transit/cf-interconnects.test.ts
297tests/api-resources/magic-transit/gre-tunnels.test.ts
298tests/api-resources/magic-transit/ipsec-tunnels.test.ts
299tests/api-resources/magic-transit/routes.test.ts
300tests/api-resources/magic-transit/sites/sites.test.ts
301tests/api-resources/magic-transit/sites/acls.test.ts
302tests/api-resources/magic-transit/sites/lans.test.ts
303tests/api-resources/magic-transit/sites/wans.test.ts
304tests/api-resources/magic-transit/connectors/connectors.test.ts
305tests/api-resources/magic-transit/connectors/events/events.test.ts
306tests/api-resources/magic-transit/connectors/events/latest.test.ts
307tests/api-resources/magic-transit/connectors/snapshots/snapshots.test.ts
308tests/api-resources/magic-transit/connectors/snapshots/latest.test.ts
309tests/api-resources/magic-transit/pcaps/pcaps.test.ts
310tests/api-resources/magic-transit/pcaps/ownership.test.ts
311tests/api-resources/magic-transit/pcaps/download.test.ts
312tests/api-resources/magic-network-monitoring/magic-network-monitoring.test.ts
313tests/api-resources/magic-network-monitoring/vpc-flows/vpc-flows.test.ts
314tests/api-resources/magic-network-monitoring/vpc-flows/tokens.test.ts
315tests/api-resources/magic-network-monitoring/configs/configs.test.ts
316tests/api-resources/magic-network-monitoring/configs/full.test.ts
317tests/api-resources/magic-network-monitoring/rules/rules.test.ts
318tests/api-resources/magic-network-monitoring/rules/advertisements.test.ts
319tests/api-resources/magic-cloud-networking/magic-cloud-networking.test.ts
320tests/api-resources/magic-cloud-networking/catalog-syncs/catalog-syncs.test.ts
321tests/api-resources/magic-cloud-networking/catalog-syncs/prebuilt-policies.test.ts
322tests/api-resources/magic-cloud-networking/on-ramps/on-ramps.test.ts
323tests/api-resources/magic-cloud-networking/on-ramps/address-spaces.test.ts
324tests/api-resources/magic-cloud-networking/cloud-integrations.test.ts
325tests/api-resources/magic-cloud-networking/resources.test.ts
326tests/api-resources/network-interconnects/network-interconnects.test.ts
327tests/api-resources/network-interconnects/cnis.test.ts
328tests/api-resources/network-interconnects/interconnects.test.ts
329tests/api-resources/network-interconnects/settings.test.ts
330tests/api-resources/network-interconnects/slots.test.ts
331tests/api-resources/mtls-certificates/mtls-certificates.test.ts
332tests/api-resources/mtls-certificates/associations.test.ts
04d593f1stainless-app[bot]9 months ago333tests/api-resources/pages/pages.test.ts
334tests/api-resources/pages/projects/projects.test.ts
335tests/api-resources/pages/projects/deployments/deployments.test.ts
336tests/api-resources/pages/projects/deployments/history/history.test.ts
337tests/api-resources/pages/projects/deployments/history/logs.test.ts
338tests/api-resources/pages/projects/domains.test.ts
bd975b1cstainless-app[bot]11 months ago339tests/api-resources/registrar/registrar.test.ts
340tests/api-resources/registrar/domains.test.ts
341tests/api-resources/request-tracers/request-tracers.test.ts
342tests/api-resources/request-tracers/traces.test.ts
343tests/api-resources/rules/rules.test.ts
344tests/api-resources/rules/lists/lists.test.ts
345tests/api-resources/rules/lists/bulk-operations.test.ts
346tests/api-resources/rules/lists/items.test.ts
347tests/api-resources/stream/stream.test.ts
348tests/api-resources/stream/audio-tracks.test.ts
349tests/api-resources/stream/videos.test.ts
350tests/api-resources/stream/clip.test.ts
351tests/api-resources/stream/copy.test.ts
352tests/api-resources/stream/direct-upload.test.ts
353tests/api-resources/stream/keys.test.ts
354tests/api-resources/stream/live-inputs/live-inputs.test.ts
355tests/api-resources/stream/live-inputs/outputs.test.ts
356tests/api-resources/stream/watermarks.test.ts
357tests/api-resources/stream/webhooks.test.ts
358tests/api-resources/stream/captions/captions.test.ts
359tests/api-resources/stream/captions/language/language.test.ts
360tests/api-resources/stream/captions/language/vtt.test.ts
361tests/api-resources/stream/downloads.test.ts
362tests/api-resources/stream/embed.test.ts
363tests/api-resources/stream/token.test.ts
364tests/api-resources/alerting/alerting.test.ts
365tests/api-resources/alerting/available-alerts.test.ts
366tests/api-resources/alerting/destinations/destinations.test.ts
367tests/api-resources/alerting/destinations/eligible.test.ts
368tests/api-resources/alerting/destinations/pagerduty.test.ts
369tests/api-resources/alerting/destinations/webhooks.test.ts
370tests/api-resources/alerting/history.test.ts
371tests/api-resources/alerting/policies.test.ts
372tests/api-resources/d1/d1.test.ts
373tests/api-resources/d1/database.test.ts
374tests/api-resources/r2/r2.test.ts
375tests/api-resources/r2/buckets/buckets.test.ts
376tests/api-resources/r2/buckets/lifecycle.test.ts
377tests/api-resources/r2/buckets/cors.test.ts
378tests/api-resources/r2/buckets/domains/domains.test.ts
379tests/api-resources/r2/buckets/domains/custom.test.ts
380tests/api-resources/r2/buckets/domains/managed.test.ts
381tests/api-resources/r2/buckets/event-notifications.test.ts
382tests/api-resources/r2/buckets/locks.test.ts
383tests/api-resources/r2/buckets/metrics.test.ts
384tests/api-resources/r2/buckets/sippy.test.ts
385tests/api-resources/r2/temporary-credentials.test.ts
386tests/api-resources/r2/super-slurper/super-slurper.test.ts
387tests/api-resources/r2/super-slurper/jobs/jobs.test.ts
388tests/api-resources/r2/super-slurper/jobs/logs.test.ts
389tests/api-resources/r2/super-slurper/connectivity-precheck.test.ts
390tests/api-resources/workers-for-platforms/workers-for-platforms.test.ts
391tests/api-resources/workers-for-platforms/dispatch/dispatch.test.ts
392tests/api-resources/workers-for-platforms/dispatch/namespaces/namespaces.test.ts
393tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/scripts.test.ts
394tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/asset-upload.test.ts
395tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/content.test.ts
396tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/settings.test.ts
397tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/bindings.test.ts
398tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/secrets.test.ts
399tests/api-resources/workers-for-platforms/dispatch/namespaces/scripts/tags.test.ts
400tests/api-resources/zero-trust/zero-trust.test.ts
401tests/api-resources/zero-trust/devices/devices.test.ts
402tests/api-resources/zero-trust/devices/devices_.test.ts
403tests/api-resources/zero-trust/devices/resilience/resilience.test.ts
404tests/api-resources/zero-trust/devices/resilience/global-warp-override.test.ts
405tests/api-resources/zero-trust/devices/registrations.test.ts
406tests/api-resources/zero-trust/devices/dex-tests.test.ts
407tests/api-resources/zero-trust/devices/networks.test.ts
408tests/api-resources/zero-trust/devices/fleet-status.test.ts
409tests/api-resources/zero-trust/devices/policies/policies.test.ts
410tests/api-resources/zero-trust/devices/policies/default/default.test.ts
411tests/api-resources/zero-trust/devices/policies/default/excludes.test.ts
412tests/api-resources/zero-trust/devices/policies/default/includes.test.ts
413tests/api-resources/zero-trust/devices/policies/default/fallback-domains.test.ts
414tests/api-resources/zero-trust/devices/policies/default/certificates.test.ts
415tests/api-resources/zero-trust/devices/policies/custom/custom.test.ts
416tests/api-resources/zero-trust/devices/policies/custom/excludes.test.ts
417tests/api-resources/zero-trust/devices/policies/custom/includes.test.ts
418tests/api-resources/zero-trust/devices/policies/custom/fallback-domains.test.ts
419tests/api-resources/zero-trust/devices/posture/posture.test.ts
420tests/api-resources/zero-trust/devices/posture/integrations.test.ts
421tests/api-resources/zero-trust/devices/revoke.test.ts
422tests/api-resources/zero-trust/devices/settings.test.ts
423tests/api-resources/zero-trust/devices/unrevoke.test.ts
424tests/api-resources/zero-trust/devices/override-codes.test.ts
425tests/api-resources/zero-trust/identity-providers/identity-providers.test.ts
426tests/api-resources/zero-trust/identity-providers/scim/scim.test.ts
427tests/api-resources/zero-trust/identity-providers/scim/groups.test.ts
428tests/api-resources/zero-trust/identity-providers/scim/users.test.ts
429tests/api-resources/zero-trust/organizations/organizations.test.ts
430tests/api-resources/zero-trust/organizations/doh.test.ts
431tests/api-resources/zero-trust/seats.test.ts
432tests/api-resources/zero-trust/access/access.test.ts
433tests/api-resources/zero-trust/access/gateway-ca.test.ts
434tests/api-resources/zero-trust/access/infrastructure/infrastructure.test.ts
435tests/api-resources/zero-trust/access/infrastructure/targets.test.ts
436tests/api-resources/zero-trust/access/applications/applications.test.ts
437tests/api-resources/zero-trust/access/applications/cas.test.ts
438tests/api-resources/zero-trust/access/applications/user-policy-checks.test.ts
439tests/api-resources/zero-trust/access/applications/policies.test.ts
440tests/api-resources/zero-trust/access/applications/policy-tests/policy-tests.test.ts
441tests/api-resources/zero-trust/access/applications/policy-tests/users.test.ts
442tests/api-resources/zero-trust/access/applications/settings.test.ts
443tests/api-resources/zero-trust/access/certificates/certificates.test.ts
444tests/api-resources/zero-trust/access/certificates/settings.test.ts
445tests/api-resources/zero-trust/access/groups.test.ts
446tests/api-resources/zero-trust/access/service-tokens.test.ts
447tests/api-resources/zero-trust/access/bookmarks.test.ts
448tests/api-resources/zero-trust/access/keys.test.ts
449tests/api-resources/zero-trust/access/logs/logs.test.ts
450tests/api-resources/zero-trust/access/logs/access-requests.test.ts
451tests/api-resources/zero-trust/access/logs/scim/scim.test.ts
452tests/api-resources/zero-trust/access/logs/scim/updates.test.ts
453tests/api-resources/zero-trust/access/users/users.test.ts
454tests/api-resources/zero-trust/access/users/active-sessions.test.ts
455tests/api-resources/zero-trust/access/users/last-seen-identity.test.ts
456tests/api-resources/zero-trust/access/users/failed-logins.test.ts
457tests/api-resources/zero-trust/access/custom-pages.test.ts
458tests/api-resources/zero-trust/access/tags.test.ts
459tests/api-resources/zero-trust/access/policies.test.ts
460tests/api-resources/zero-trust/dex/dex.test.ts
461tests/api-resources/zero-trust/dex/warp-change-events.test.ts
462tests/api-resources/zero-trust/dex/commands/commands.test.ts
463tests/api-resources/zero-trust/dex/commands/devices.test.ts
464tests/api-resources/zero-trust/dex/commands/downloads.test.ts
465tests/api-resources/zero-trust/dex/commands/quota.test.ts
466tests/api-resources/zero-trust/dex/colos.test.ts
467tests/api-resources/zero-trust/dex/fleet-status/fleet-status.test.ts
468tests/api-resources/zero-trust/dex/fleet-status/devices.test.ts
469tests/api-resources/zero-trust/dex/http-tests/http-tests.test.ts
470tests/api-resources/zero-trust/dex/http-tests/percentiles.test.ts
471tests/api-resources/zero-trust/dex/tests/tests.test.ts
472tests/api-resources/zero-trust/dex/tests/unique-devices.test.ts
473tests/api-resources/zero-trust/dex/traceroute-test-results/traceroute-test-results.test.ts
474tests/api-resources/zero-trust/dex/traceroute-test-results/network-path.test.ts
475tests/api-resources/zero-trust/dex/traceroute-tests.test.ts
476tests/api-resources/zero-trust/tunnels/tunnels.test.ts
477tests/api-resources/zero-trust/tunnels/cloudflared/cloudflared.test.ts
478tests/api-resources/zero-trust/tunnels/cloudflared/configurations.test.ts
479tests/api-resources/zero-trust/tunnels/cloudflared/connections.test.ts
480tests/api-resources/zero-trust/tunnels/cloudflared/token.test.ts
481tests/api-resources/zero-trust/tunnels/cloudflared/connectors.test.ts
482tests/api-resources/zero-trust/tunnels/cloudflared/management.test.ts
483tests/api-resources/zero-trust/tunnels/warp-connector/warp-connector.test.ts
484tests/api-resources/zero-trust/tunnels/warp-connector/token.test.ts
485tests/api-resources/zero-trust/connectivity-settings.test.ts
486tests/api-resources/zero-trust/dlp/dlp.test.ts
487tests/api-resources/zero-trust/dlp/datasets/datasets.test.ts
488tests/api-resources/zero-trust/dlp/datasets/upload.test.ts
489tests/api-resources/zero-trust/dlp/datasets/versions/versions.test.ts
490tests/api-resources/zero-trust/dlp/datasets/versions/entries.test.ts
491tests/api-resources/zero-trust/dlp/patterns.test.ts
492tests/api-resources/zero-trust/dlp/payload-logs.test.ts
493tests/api-resources/zero-trust/dlp/email/email.test.ts
494tests/api-resources/zero-trust/dlp/email/account-mapping.test.ts
495tests/api-resources/zero-trust/dlp/email/rules.test.ts
496tests/api-resources/zero-trust/dlp/profiles/profiles.test.ts
497tests/api-resources/zero-trust/dlp/profiles/custom.test.ts
498tests/api-resources/zero-trust/dlp/profiles/predefined.test.ts
499tests/api-resources/zero-trust/dlp/limits.test.ts
500tests/api-resources/zero-trust/dlp/entries/entries.test.ts
501tests/api-resources/zero-trust/dlp/entries/custom.test.ts
502tests/api-resources/zero-trust/dlp/entries/predefined.test.ts
503tests/api-resources/zero-trust/dlp/entries/integration.test.ts
504tests/api-resources/zero-trust/gateway/gateway.test.ts
505tests/api-resources/zero-trust/gateway/audit-ssh-settings.test.ts
506tests/api-resources/zero-trust/gateway/categories.test.ts
507tests/api-resources/zero-trust/gateway/app-types.test.ts
508tests/api-resources/zero-trust/gateway/configurations/configurations.test.ts
509tests/api-resources/zero-trust/gateway/configurations/custom-certificate.test.ts
510tests/api-resources/zero-trust/gateway/lists/lists.test.ts
511tests/api-resources/zero-trust/gateway/lists/items.test.ts
512tests/api-resources/zero-trust/gateway/locations.test.ts
513tests/api-resources/zero-trust/gateway/logging.test.ts
514tests/api-resources/zero-trust/gateway/proxy-endpoints.test.ts
515tests/api-resources/zero-trust/gateway/rules.test.ts
516tests/api-resources/zero-trust/gateway/certificates.test.ts
517tests/api-resources/zero-trust/networks/networks.test.ts
518tests/api-resources/zero-trust/networks/routes/routes.test.ts
519tests/api-resources/zero-trust/networks/routes/ips.test.ts
520tests/api-resources/zero-trust/networks/routes/networks.test.ts
521tests/api-resources/zero-trust/networks/virtual-networks.test.ts
522tests/api-resources/zero-trust/networks/subnets/subnets.test.ts
523tests/api-resources/zero-trust/networks/subnets/cloudflare-source.test.ts
944d0067stainless-app[bot]9 months ago524tests/api-resources/zero-trust/networks/hostname-routes.test.ts
bd975b1cstainless-app[bot]11 months ago525tests/api-resources/zero-trust/risk-scoring/risk-scoring.test.ts
526tests/api-resources/zero-trust/risk-scoring/behaviours.test.ts
527tests/api-resources/zero-trust/risk-scoring/summary.test.ts
528tests/api-resources/zero-trust/risk-scoring/integrations/integrations.test.ts
529tests/api-resources/zero-trust/risk-scoring/integrations/references.test.ts
530tests/api-resources/turnstile/turnstile.test.ts
531tests/api-resources/turnstile/widgets.test.ts
532tests/api-resources/hyperdrive/hyperdrive.test.ts
533tests/api-resources/hyperdrive/configs.test.ts
534tests/api-resources/rum/rum.test.ts
535tests/api-resources/rum/site-info.test.ts
536tests/api-resources/rum/rules.test.ts
537tests/api-resources/vectorize/vectorize.test.ts
538tests/api-resources/vectorize/indexes/indexes.test.ts
539tests/api-resources/vectorize/indexes/metadata-index.test.ts
540tests/api-resources/url-scanner/url-scanner.test.ts
541tests/api-resources/url-scanner/responses.test.ts
542tests/api-resources/url-scanner/scans.test.ts
543tests/api-resources/radar/radar.test.ts
544tests/api-resources/radar/ai/ai.test.ts
72c43364stainless-app[bot]10 months ago545tests/api-resources/radar/ai/to-markdown.test.ts
bd975b1cstainless-app[bot]11 months ago546tests/api-resources/radar/ai/inference/inference.test.ts
547tests/api-resources/radar/ai/inference/summary.test.ts
548tests/api-resources/radar/ai/inference/timeseries-groups/timeseries-groups.test.ts
549tests/api-resources/radar/ai/inference/timeseries-groups/summary.test.ts
fef43ec4stainless-app[bot]10 months ago550tests/api-resources/radar/ai/bots/bots.test.ts
551tests/api-resources/radar/ai/bots/summary.test.ts
552tests/api-resources/radar/ai/timeseries-groups.test.ts
e6f0bcc6stainless-app[bot]10 months ago553tests/api-resources/radar/ct/ct.test.ts
554tests/api-resources/radar/ct/authorities.test.ts
555tests/api-resources/radar/ct/logs.test.ts
bd975b1cstainless-app[bot]11 months ago556tests/api-resources/radar/annotations/annotations.test.ts
557tests/api-resources/radar/annotations/outages.test.ts
558tests/api-resources/radar/bgp/bgp.test.ts
559tests/api-resources/radar/bgp/leaks/leaks.test.ts
560tests/api-resources/radar/bgp/leaks/events.test.ts
561tests/api-resources/radar/bgp/top/top.test.ts
562tests/api-resources/radar/bgp/top/ases.test.ts
563tests/api-resources/radar/bgp/hijacks/hijacks.test.ts
564tests/api-resources/radar/bgp/hijacks/events.test.ts
565tests/api-resources/radar/bgp/routes.test.ts
566tests/api-resources/radar/bgp/ips.test.ts
567tests/api-resources/radar/bots/bots.test.ts
568tests/api-resources/radar/bots/web-crawlers.test.ts
569tests/api-resources/radar/datasets.test.ts
570tests/api-resources/radar/dns/dns.test.ts
571tests/api-resources/radar/dns/top.test.ts
572tests/api-resources/radar/dns/summary.test.ts
573tests/api-resources/radar/dns/timeseries-groups.test.ts
574tests/api-resources/radar/netflows/netflows.test.ts
575tests/api-resources/radar/netflows/top.test.ts
576tests/api-resources/radar/search.test.ts
577tests/api-resources/radar/verified-bots/verified-bots.test.ts
578tests/api-resources/radar/verified-bots/top.test.ts
579tests/api-resources/radar/as112/as112.test.ts
580tests/api-resources/radar/as112/summary.test.ts
581tests/api-resources/radar/as112/timeseries-groups.test.ts
582tests/api-resources/radar/as112/top.test.ts
583tests/api-resources/radar/email/email.test.ts
584tests/api-resources/radar/email/routing/routing.test.ts
585tests/api-resources/radar/email/routing/summary.test.ts
586tests/api-resources/radar/email/routing/timeseries-groups.test.ts
587tests/api-resources/radar/email/security/security.test.ts
588tests/api-resources/radar/email/security/top/top.test.ts
589tests/api-resources/radar/email/security/top/tlds/tlds.test.ts
590tests/api-resources/radar/email/security/top/tlds/malicious.test.ts
591tests/api-resources/radar/email/security/top/tlds/spam.test.ts
592tests/api-resources/radar/email/security/top/tlds/spoof.test.ts
593tests/api-resources/radar/email/security/summary.test.ts
594tests/api-resources/radar/email/security/timeseries-groups.test.ts
595tests/api-resources/radar/attacks/attacks.test.ts
596tests/api-resources/radar/attacks/layer3/layer3.test.ts
597tests/api-resources/radar/attacks/layer3/summary.test.ts
598tests/api-resources/radar/attacks/layer3/timeseries-groups.test.ts
599tests/api-resources/radar/attacks/layer3/top/top.test.ts
600tests/api-resources/radar/attacks/layer3/top/locations.test.ts
601tests/api-resources/radar/attacks/layer7/layer7.test.ts
602tests/api-resources/radar/attacks/layer7/summary.test.ts
603tests/api-resources/radar/attacks/layer7/timeseries-groups.test.ts
604tests/api-resources/radar/attacks/layer7/top/top.test.ts
605tests/api-resources/radar/attacks/layer7/top/locations.test.ts
606tests/api-resources/radar/attacks/layer7/top/ases.test.ts
607tests/api-resources/radar/entities/entities.test.ts
608tests/api-resources/radar/entities/asns.test.ts
609tests/api-resources/radar/entities/locations.test.ts
610tests/api-resources/radar/http/http.test.ts
611tests/api-resources/radar/http/locations/locations.test.ts
612tests/api-resources/radar/http/locations/bot-class.test.ts
613tests/api-resources/radar/http/locations/device-type.test.ts
614tests/api-resources/radar/http/locations/http-protocol.test.ts
615tests/api-resources/radar/http/locations/http-method.test.ts
616tests/api-resources/radar/http/locations/ip-version.test.ts
617tests/api-resources/radar/http/locations/os.test.ts
618tests/api-resources/radar/http/locations/tls-version.test.ts
619tests/api-resources/radar/http/locations/browser-family.test.ts
620tests/api-resources/radar/http/ases/ases.test.ts
621tests/api-resources/radar/http/ases/bot-class.test.ts
622tests/api-resources/radar/http/ases/device-type.test.ts
623tests/api-resources/radar/http/ases/http-protocol.test.ts
624tests/api-resources/radar/http/ases/http-method.test.ts
625tests/api-resources/radar/http/ases/ip-version.test.ts
626tests/api-resources/radar/http/ases/os.test.ts
627tests/api-resources/radar/http/ases/tls-version.test.ts
628tests/api-resources/radar/http/ases/browser-family.test.ts
629tests/api-resources/radar/http/summary.test.ts
630tests/api-resources/radar/http/timeseries-groups.test.ts
631tests/api-resources/radar/http/top.test.ts
632tests/api-resources/radar/quality/quality.test.ts
633tests/api-resources/radar/quality/iqi.test.ts
634tests/api-resources/radar/quality/speed/speed.test.ts
635tests/api-resources/radar/quality/speed/top.test.ts
636tests/api-resources/radar/ranking/ranking.test.ts
637tests/api-resources/radar/ranking/domain.test.ts
638tests/api-resources/radar/ranking/internet-services.test.ts
639tests/api-resources/radar/traffic-anomalies/traffic-anomalies.test.ts
640tests/api-resources/radar/traffic-anomalies/locations.test.ts
641tests/api-resources/radar/tcp-resets-timeouts.test.ts
642tests/api-resources/radar/robots-txt/robots-txt.test.ts
643tests/api-resources/radar/robots-txt/top/top.test.ts
644tests/api-resources/radar/robots-txt/top/user-agents.test.ts
645tests/api-resources/radar/leaked-credentials/leaked-credentials.test.ts
646tests/api-resources/radar/leaked-credentials/summary.test.ts
647tests/api-resources/radar/leaked-credentials/timeseries-groups.test.ts
648tests/api-resources/bot-management.test.ts
ceb49a54stainless-app[bot]9 months ago649tests/api-resources/origin-post-quantum-encryption.test.ts
bd975b1cstainless-app[bot]11 months ago650tests/api-resources/zaraz/zaraz.test.ts
651tests/api-resources/zaraz/config.test.ts
652tests/api-resources/zaraz/default.test.ts
653tests/api-resources/zaraz/export.test.ts
654tests/api-resources/zaraz/history/history.test.ts
655tests/api-resources/zaraz/history/configs.test.ts
656tests/api-resources/zaraz/publish.test.ts
657tests/api-resources/zaraz/workflow.test.ts
658tests/api-resources/speed/speed.test.ts
659tests/api-resources/speed/schedule.test.ts
660tests/api-resources/speed/availabilities.test.ts
661tests/api-resources/speed/pages/pages.test.ts
662tests/api-resources/speed/pages/tests.test.ts
663tests/api-resources/dcv-delegation.test.ts
664tests/api-resources/hostnames/hostnames.test.ts
665tests/api-resources/hostnames/settings/settings.test.ts
666tests/api-resources/hostnames/settings/tls.test.ts
667tests/api-resources/snippets/snippets.test.ts
668tests/api-resources/snippets/content.test.ts
669tests/api-resources/snippets/rules.test.ts
670tests/api-resources/calls/calls.test.ts
671tests/api-resources/calls/sfu.test.ts
672tests/api-resources/calls/turn.test.ts
673tests/api-resources/cloudforce-one/cloudforce-one.test.ts
674tests/api-resources/cloudforce-one/scans/scans.test.ts
675tests/api-resources/cloudforce-one/scans/results.test.ts
676tests/api-resources/cloudforce-one/scans/config.test.ts
452be6b9stainless-app[bot]11 months ago677tests/api-resources/cloudforce-one/binary-storage.test.ts
bd975b1cstainless-app[bot]11 months ago678tests/api-resources/cloudforce-one/requests/requests.test.ts
679tests/api-resources/cloudforce-one/requests/message.test.ts
680tests/api-resources/cloudforce-one/requests/priority.test.ts
681tests/api-resources/cloudforce-one/requests/assets.test.ts
682tests/api-resources/cloudforce-one/threat-events/threat-events.test.ts
683tests/api-resources/cloudforce-one/threat-events/attackers.test.ts
684tests/api-resources/cloudforce-one/threat-events/categories.test.ts
685tests/api-resources/cloudforce-one/threat-events/countries.test.ts
686tests/api-resources/cloudforce-one/threat-events/datasets/datasets.test.ts
687tests/api-resources/cloudforce-one/threat-events/indicator-types.test.ts
688tests/api-resources/cloudforce-one/threat-events/raw.test.ts
689tests/api-resources/cloudforce-one/threat-events/relate.test.ts
690tests/api-resources/cloudforce-one/threat-events/tags.test.ts
691tests/api-resources/cloudforce-one/threat-events/event-tags.test.ts
692tests/api-resources/cloudforce-one/threat-events/target-industries.test.ts
693tests/api-resources/ai-gateway/ai-gateway.test.ts
694tests/api-resources/ai-gateway/evaluation-types.test.ts
695tests/api-resources/ai-gateway/logs.test.ts
696tests/api-resources/ai-gateway/datasets.test.ts
697tests/api-resources/ai-gateway/evaluations.test.ts
698tests/api-resources/ai-gateway/urls.test.ts
699tests/api-resources/iam/iam.test.ts
700tests/api-resources/iam/permission-groups.test.ts
701tests/api-resources/iam/resource-groups.test.ts
702tests/api-resources/iam/user-groups/user-groups.test.ts
703tests/api-resources/iam/user-groups/members.test.ts
704tests/api-resources/cloud-connector/cloud-connector.test.ts
705tests/api-resources/cloud-connector/rules.test.ts
706tests/api-resources/botnet-feed/botnet-feed.test.ts
707tests/api-resources/botnet-feed/asn.test.ts
708tests/api-resources/botnet-feed/configs/configs.test.ts
709tests/api-resources/botnet-feed/configs/asn.test.ts
710tests/api-resources/security-txt.test.ts
298d367cstainless-app[bot]11 months ago711tests/api-resources/workflows/workflows.test.ts
712tests/api-resources/workflows/instances/instances.test.ts
713tests/api-resources/workflows/instances/status.test.ts
714tests/api-resources/workflows/instances/events.test.ts
715tests/api-resources/workflows/versions.test.ts
bd975b1cstainless-app[bot]11 months ago716tests/api-resources/resource-sharing/resource-sharing.test.ts
717tests/api-resources/resource-sharing/recipients.test.ts
718tests/api-resources/resource-sharing/resources.test.ts
d35bbfb0stainless-app[bot]9 months ago719tests/api-resources/leaked-credential-checks/leaked-credential-checks.test.ts
720tests/api-resources/leaked-credential-checks/detections.test.ts
32045759stainless-app[bot]9 months ago721tests/api-resources/content-scanning/content-scanning.test.ts
722tests/api-resources/content-scanning/payloads.test.ts
723tests/api-resources/content-scanning/settings.test.ts
bd975b1cstainless-app[bot]11 months ago724tests/api-resources/abuse-reports.test.ts
725tests/api-resources/ai/ai.test.ts
726tests/api-resources/ai/finetunes/finetunes.test.ts
727tests/api-resources/ai/finetunes/assets.test.ts
728tests/api-resources/ai/finetunes/public.test.ts
729tests/api-resources/ai/authors.test.ts
730tests/api-resources/ai/tasks.test.ts
731tests/api-resources/ai/models/models.test.ts
732tests/api-resources/ai/models/schema.test.ts
770500fastainless-app[bot]9 months ago733tests/api-resources/ai/to-markdown.test.ts
bd975b1cstainless-app[bot]11 months ago734tests/api-resources/security-center/security-center.test.ts
735tests/api-resources/security-center/insights/insights.test.ts
736tests/api-resources/security-center/insights/class.test.ts
737tests/api-resources/security-center/insights/severity.test.ts
738tests/api-resources/security-center/insights/type.test.ts
739tests/api-resources/browser-rendering/browser-rendering.test.ts
740tests/api-resources/browser-rendering/content.test.ts
741tests/api-resources/browser-rendering/pdf.test.ts
742tests/api-resources/browser-rendering/scrape.test.ts
743tests/api-resources/browser-rendering/screenshot.test.ts
744tests/api-resources/browser-rendering/snapshot.test.ts
745tests/api-resources/browser-rendering/json.test.ts
746tests/api-resources/browser-rendering/links.test.ts
747tests/api-resources/browser-rendering/markdown.test.ts
748tests/api-resources/custom-pages.test.ts
749tests/api-resources/secrets-store/secrets-store.test.ts
750tests/api-resources/secrets-store/stores/stores.test.ts
751tests/api-resources/secrets-store/stores/secrets.test.ts
752tests/api-resources/secrets-store/quota.test.ts
753tests/api-resources/pipelines.test.ts
754tests/api-resources/schema-validation/schema-validation.test.ts
755tests/api-resources/schema-validation/schemas.test.ts
756tests/api-resources/schema-validation/settings/settings.test.ts
757tests/api-resources/schema-validation/settings/operations.test.ts
758tests/index.test.ts
759)
760
761for PATHSPEC in "${TEST_PATHS[@]}"; do
762# Try to check out previous versions of the test files
763# with the current SDK.
764git checkout "$1" -- "${PATHSPEC}" 2>/dev/null || true
765done
766
767# Instead of running the tests, use the linter to check if an
768# older test is no longer compatible with the latest SDK.
769./scripts/lint